Home
last modified time | relevance | path

Searched refs:opcode (Results 1 – 25 of 49) sorted by relevance

12

/trusted-services/components/service/common/provider/
A Dservice_provider.c13 uint32_t opcode) in find_handler() argument
17 if ((opcode >= sp->opcode_range_lo) && (opcode <= sp->opcode_range_hi)) { in find_handler()
21 if (service_handler_get_opcode(&sp->handlers[index]) == opcode) { in find_handler()
43 uint32_t opcode = service_handler_get_opcode(&sp->handlers[index]); in set_opcode_range() local
45 if (opcode < lo) lo = opcode; in set_opcode_range()
46 if (opcode > hi) hi = opcode; in set_opcode_range()
61 handler = find_handler(sp, req->opcode); in receive()
A Dservice_provider.h24 uint32_t opcode; member
36 return handler->opcode; in service_handler_get_opcode()
/trusted-services/components/rpc/mm_communicate/caller/linux/
A Dmm_communicate_serializer.c15 uint8_t *buf, uint32_t opcode);
50 uint32_t opcode);
106 uint32_t opcode, in mm_communicate_serializer_header_encode() argument
114 serializer->header_encode(serializer, hdr->Data, opcode); in mm_communicate_serializer_header_encode()
142 uint32_t opcode) in smm_variable_header_encode() argument
145 hdr->Function = opcode; in smm_variable_header_encode()
A Dmm_communicate_serializer.h61 uint32_t opcode,
/trusted-services/components/rpc/common/test/
A Drpc_request_comparator.h35 (req1->opcode == req2->opcode) && in isEqual()
57 req->source_id, req->interface_id, req->opcode, in valueToString()
/trusted-services/components/rpc/common/logging/
A Dlogging_caller.c12 static rpc_status_t call_invoke(void *context, rpc_call_handle handle, uint32_t opcode,
71 static rpc_status_t call_invoke(void *context, rpc_call_handle handle, uint32_t opcode, in call_invoke() argument
81 handle, opcode, opstatus, in call_invoke()
85 fprintf(this_instance->log_file, "opcode: %d\n", opcode); in call_invoke()
/trusted-services/components/rpc/common/caller/
A Drpc_caller.c54 rpc_status_t rpc_caller_call(struct rpc_caller_interface *caller, uint16_t opcode, in rpc_caller_call() argument
61 return caller->call(caller->context, opcode, shared_memory, request_length, in rpc_caller_call()
A Drpc_caller.h52 rpc_status_t (*call)(void *context, uint16_t opcode,
78 rpc_status_t rpc_caller_call(struct rpc_caller_interface *caller, uint16_t opcode,
A Drpc_caller_session.h130 rpc_status_t rpc_caller_session_invoke(rpc_call_handle handle, uint32_t opcode,
/trusted-services/protocols/rpc/common/packed-c/
A Dheader.h38 uint16_t opcode; member
/trusted-services/components/service/fwu/test/fwu_client/remote/
A Dremote_fwu_client.h49 int invoke_no_param(unsigned int opcode);
63 rpc_status_t fwu_caller_session_invoke(rpc_call_handle handle, uint32_t opcode,
/trusted-services/docs/developer/uml/
A DTSRPCCall.puml64 service_caller -> rpc_session: invoke(opcode)
66 rpc_session -> rpc_caller: call(opcode, shared_memory, request_length)
68 rpc_caller -> endpoint: service_call(interface_id, opcode, memory_handle, request_length)
70 endpoint -> service: service_call(opcode, request)
A DRpcSessionClassDiagram.puml11 {abstract}int call(opcode, param_buf, result_buf)
/trusted-services/components/rpc/http/caller/
A Dhttp_caller.c30 static rpc_status_t call_invoke(void *context, rpc_call_handle handle, uint32_t opcode,
142 static void prepare_call_url(const struct http_caller *s, unsigned int opcode, char *url_buf, in prepare_call_url() argument
160 size_t opcode_len = snprintf(&url_buf[base_url_len], remaining_space, "%u", opcode); in prepare_call_url()
264 static rpc_status_t call_invoke(void *context, const rpc_call_handle handle, uint32_t opcode, in call_invoke() argument
279 rpc_hdr->opcode = opcode; in call_invoke()
286 prepare_call_url(s, opcode, call_url, sizeof(call_url)); in call_invoke()
/trusted-services/components/rpc/direct/
A Ddirect_caller.c74 static rpc_status_t call(void *context, uint16_t opcode, in call() argument
83 rpc_request.opcode = opcode; in call()
/trusted-services/components/rpc/rse_comms/caller/sp/
A Drse_comms_caller.h21 rpc_status_t rse_comms_caller_invoke(rse_comms_call_handle handle, uint32_t opcode,
A Drse_comms_caller.c46 rpc_status_t call(void *context, uint16_t opcode, struct rpc_caller_shared_memory *shared_memory, in call() argument
52 rpc_status_t rse_comms_caller_invoke(rse_comms_call_handle handle, uint32_t opcode, in rse_comms_caller_invoke() argument
/trusted-services/components/rpc/psa_ipc/caller/sp/
A Dpsa_ipc_caller.h23 rpc_status_t psa_ipc_caller_invoke(psa_ipc_call_handle handle, uint32_t opcode,
/trusted-services/components/rpc/common/endpoint/
A Drpc_service_interface.h47 uint16_t opcode; /** Opcode of the required function */ member
/trusted-services/components/service/crypto/client/caller/packed-c/
A Dcrypto_caller_verify_hash.h24 uint32_t opcode, in crypto_caller_asym_verify_common() argument
68 rpc_caller_session_invoke(call_handle, opcode, &resp_buf, &resp_len, in crypto_caller_asym_verify_common()
A Dcrypto_caller_sign_hash.h24 uint32_t opcode, in crypto_caller_asym_sign_commom() argument
64 rpc_caller_session_invoke(call_handle, opcode, &resp_buf, &resp_len, in crypto_caller_asym_sign_commom()
/trusted-services/components/service/common/provider/test/
A Dservice_framework_tests.cpp111 handlers[0].opcode = SOME_ARBITRARY_OPCODE; in TEST()
113 handlers[1].opcode = ANOTHER_ARBITRARY_OPCODE; in TEST()
187 base_handlers[0].opcode = 100; in TEST()
195 sub0_handlers[0].opcode = 200; in TEST()
204 sub1_handlers[0].opcode = 300; in TEST()
/trusted-services/components/rpc/dummy/
A Ddummy_caller.c76 static rpc_status_t call(void *context, uint16_t opcode, in call() argument
82 (void)opcode; in call()
/trusted-services/protocols/test_api/
A Dfw-test-api.yaml50 /services/{servicename}/call/{opcode}:
60 - name: opcode
/trusted-services/components/service/uefi/smm_variable/frontend/mm_communicate/test/
A Dtest_smm_variable_mm_service.cpp102 rpc_req.opcode = header->Function; in TEST()
143 rpc_req.opcode = header->Function; in TEST()
184 rpc_req.opcode = header->Function; in TEST()
226 rpc_req.opcode = header->Function; in TEST()
283 rpc_req.opcode = header->Function; in TEST()

Completed in 878 milliseconds

12