Home
last modified time | relevance | path

Searched refs:interface (Results 1 – 25 of 104) sorted by relevance

12345

/trusted-services/components/service/fwu/installer/
A Dinstaller.c23 assert(interface); in installer_init()
29 installer->interface = interface; in installer_init()
40 assert(installer->interface); in installer_begin()
41 assert(installer->interface->begin); in installer_begin()
52 assert(installer->interface); in installer_finalize()
63 assert(installer->interface); in installer_abort()
74 assert(installer->interface); in installer_open()
75 assert(installer->interface->open); in installer_open()
88 assert(installer->interface); in installer_commit()
102 assert(installer->interface); in installer_write()
[all …]
A Dinstaller.h138 const struct installer_interface *interface; member
170 const struct installer_interface *interface);
/trusted-services/components/service/fwu/common/
A Dupdate_agent_interface.c12 if (!update_agent->interface->discover) in update_agent_discover()
22 if (!update_agent->interface->begin_staging) in update_agent_begin_staging()
31 if (!update_agent->interface->end_staging) in update_agent_end_staging()
34 return update_agent->interface->end_staging(update_agent->context); in update_agent_end_staging()
39 if (!update_agent->interface->cancel_staging) in update_agent_cancel_staging()
48 if (!update_agent->interface->open) in update_agent_open()
57 if (!update_agent->interface->write_stream) in update_agent_write_stream()
66 if (!update_agent->interface->read_stream) in update_agent_read_stream()
76 if (!update_agent->interface->commit) in update_agent_commit()
86 if (!update_agent->interface->accept_image) in update_agent_accept_image()
[all …]
/trusted-services/components/service/block_storage/block_store/
A Dblock_store.c16 assert(block_store->interface); in block_store_get_partition_info()
29 assert(block_store->interface); in block_store_open()
31 return block_store->interface->open(block_store->context, in block_store_open()
42 assert(block_store->interface); in block_store_close()
44 return block_store->interface->close(block_store->context, in block_store_close()
59 assert(block_store->interface); in block_store_read()
61 return block_store->interface->read(block_store->context, in block_store_read()
81 assert(block_store->interface); in block_store_write()
83 return block_store->interface->write(block_store->context, in block_store_write()
100 assert(block_store->interface); in block_store_erase()
[all …]
/trusted-services/components/service/log/backend/uart/
A Duart_backend.c23 static const struct log_backend_interface interface = { uart_puts }; in uart_backend_init() local
31 backend.interface = &interface; in uart_backend_init()
/trusted-services/components/service/secure_storage/frontend/psa/ps/
A Dps_frontend.c31 return instance.backend->interface->set( in psa_ps_set()
46 return instance.backend->interface->get( in psa_ps_get()
59 return instance.backend->interface->get_info( in psa_ps_get_info()
68 return instance.backend->interface->remove( in psa_ps_remove()
78 return instance.backend->interface->create( in psa_ps_create()
91 return instance.backend->interface->set_extended( in psa_ps_set_extended()
102 return instance.backend->interface->get_support( in psa_ps_get_support()
/trusted-services/docs/uml/
A Dstyle-component.puml13 !define NS_IFC interface COLOR_GREY2
15 !define S_IFC interface COLOR_BLUE1
22 skinparam interface {
/trusted-services/components/service/secure_storage/frontend/psa/its/
A Dits_frontend.c31 return instance.backend->interface->set( in psa_its_set()
46 return instance.backend->interface->get( in psa_its_get()
59 return instance.backend->interface->get_info( in psa_its_get_info()
68 return instance.backend->interface->remove( in psa_its_remove()
/trusted-services/deployments/libts/
A Dlibts.cmake10 # different environments. libts provides a client interface for locating
42 "components/rpc/common/interface"
44 "components/service/locator/interface"
52 # Enable exporting interface symbols for library public interface
64 # Export the library and the corresponding public interface header files
/trusted-services/components/service/rpmb/backend/
A Drpmb_backend.c12 return instance->interface->get_dev_info(instance->context, dev_id, dev_info); in rpmb_backend_get_dev_info()
20 return instance->interface->data_request(instance->context, dev_id, request_frames, in rpmb_backend_data_request()
/trusted-services/components/service/log/client/
A Dlog_client.c33 log_status = log_backend->interface->puts(log_backend->context, str); in log_client_trace_puts()
102 static const struct log_backend_interface interface = { log_client_puts }; in log_client_init() local
105 context->backend.interface = &interface; in log_client_init()
/trusted-services/components/service/secure_storage/backend/null_store/
A Dnull_store.c115 static const struct storage_backend_interface interface = in null_store_init() local
127 context->backend.interface = &interface; in null_store_init()
135 context->backend.interface = NULL; in null_store_deinit()
/trusted-services/components/service/rpmb/frontend/platform/mock/test/
A Dtest_rpmb_platform_mock.cpp40 LONGS_EQUAL(PSA_SUCCESS, platform->interface->derive_key(platform, data, sizeof(data), in TEST()
53 LONGS_EQUAL(PSA_SUCCESS, platform->interface->get_nonce(platform, nonce, sizeof(nonce))); in TEST()
70 LONGS_EQUAL(PSA_SUCCESS, platform->interface->calculate_mac(platform, key, sizeof(key), in TEST()
/trusted-services/components/service/secure_storage/frontend/secure_storage_provider/
A Dsecure_storage_provider.c32 req->service_status = this_context->backend->interface->set( in set_handler()
54 req->service_status = this_context->backend->interface->get( in get_handler()
81 req->service_status = this_context->backend->interface->get_info( in get_info_handler()
105 req->service_status = this_context->backend->interface->remove( in remove_handler()
122 req->service_status = this_context->backend->interface->create( in create_handler()
149 req->service_status = this_context->backend->interface->set_extended( in set_extended_handler()
168 feature_map = this_context->backend->interface->get_support(this_context->backend->context, in get_support_handler()
/trusted-services/components/service/rpmb/backend/mock/
A Drpmb_backend_mock.cpp73 static const struct rpmb_backend_interface interface = { in rpmb_backend_mock_init() local
82 context->backend.interface = &interface; in rpmb_backend_mock_init()
/trusted-services/components/service/log/backend/
A Dlog_backend.h48 const struct log_backend_interface *interface; member
/trusted-services/tools/cmake/compiler/
A Dconfig_iface.cmake8 # This provides a common interface for injecting definitions and include paths
11 # their own cmake based configuration interface, not all do. This file gets
/trusted-services/components/service/rpmb/frontend/platform/default/
A Drpmb_platform_default.c98 static struct rpmb_platform_interface interface = { in rpmb_platform_default_init() local
112 context->platform.interface = &interface; in rpmb_platform_default_init()
/trusted-services/components/service/rpmb/frontend/platform/mock/
A Drpmb_platform_mock.cpp83 static struct rpmb_platform_interface interface = { in rpmb_platform_mock_init() local
93 context->platform.interface = &interface; in rpmb_platform_mock_init()
/trusted-services/
A D.cppcheck19 -I components/rpc/common/interface
20 -I components/service/locator/interface
/trusted-services/docs/developer/
A Dservice-access-protocols.rst5 public interface exposed by a service. This section is concerned with interface conventions and pr…
11 concrete serializers may provide implementations of the interface.
20 * Service client interface: This component provides the interface to a given service for a user app…
21 Crypto, Internal Trusted Storage, etc. interface.
24 a transparent interface between the caller and endpoint side.
29 …tied to the opened service interface of the endpoint. Each service call can use the simple begin/i…
62 …UUIDs and interface IDs can be queried by an RPC call. The lifetime of the interface ID is the sam…
63 service. The `0xff` interface ID is used for the management interface.
159 ``[7:0]`` Queried service interface ID
166 - Service interface ID
[all …]
/trusted-services/platform/drivers/arm/juno_trng/
A Ddriver.cmake9 # trng interface.
/trusted-services/components/rpc/common/
A Dtests.cmake17 ${UNIT_TEST_PROJECT_PATH}/components/rpc/common/interface
/trusted-services/platform/drivers/arm/uart/
A Ddriver.cmake9 # uart interface.
/trusted-services/deployments/libpsats/
A Dlibpsats.cmake10 # environments. libpsats provides an interface for accessing PSA API-s.
72 # Enable exporting interface symbols for library public interface
82 # Export the library and the corresponding public interface header files

Completed in 76 milliseconds

12345