Home
last modified time | relevance | path

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

12345

/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-security/trusted-services/corstone1000/
H A D0005-plat-corstone1000-Use-the-stateless-platform-service.patch25 static rpc_status_t event_handler(uint32_t opcode, struct rpc_caller_interface *caller)
36 - handle = psa_connect(caller, TFM_SP_PLATFORM_IOCTL_SID,
43 - psa_call(caller,handle, PSA_IPC_CALL,
44 + psa_call(caller,TFM_PLATFORM_SERVICE_HANDLE, TFM_PLATFORM_API_ID_IOCTL,
46 - set_fmp_image_info(caller, handle);
47 + set_fmp_image_info(caller);
53 - handle = psa_connect(caller, TFM_SP_PLATFORM_IOCTL_SID,
60 - psa_call(caller,handle, PSA_IPC_CALL,
62 + psa_call(caller,TFM_PLATFORM_SERVICE_HANDLE, TFM_PLATFORM_API_ID_IOCTL,
64 - set_fmp_image_info(caller, handle);
[all …]
H A D0007-plat-corstone1000-add-client_id-for-FMP-service.patch29 @@ -91,7 +92,7 @@ static psa_status_t protected_storage_set(struct rpc_caller_interface *caller,
33 - psa_status = psa_call(caller, TFM_PROTECTED_STORAGE_SERVICE_HANDLE, TFM_PS_ITS_SET,
34 + psa_status = psa_call_client_id(caller, TFM_PROTECTED_STORAGE_SERVICE_HANDLE, SMM_GW_SP_ID,TFM_PS…
38 @@ -114,7 +115,7 @@ static psa_status_t protected_storage_get(struct rpc_caller_interface *caller,
42 - psa_status = psa_call(caller, TFM_PROTECTED_STORAGE_SERVICE_HANDLE,
43 + psa_status = psa_call_client_id(caller, TFM_PROTECTED_STORAGE_SERVICE_HANDLE, SMM_GW_SP_ID,
H A D0003-FMP-Support-in-Corstone1000.patch40 + provision_fmp_variables_metadata(context->client.session->caller);
47 psa_call(caller,handle, PSA_IPC_CALL,
49 + set_fmp_image_info(caller, handle);
55 psa_call(caller,handle, PSA_IPC_CALL,
57 + set_fmp_image_info(caller, handle);
158 +static psa_status_t protected_storage_set(struct rpc_caller_interface *caller,
170 + psa_status = psa_call(caller, TFM_PROTECTED_STORAGE_SERVICE_HANDLE, TFM_PS_ITS_SET,
178 +static psa_status_t protected_storage_get(struct rpc_caller_interface *caller,
193 + psa_status = psa_call(caller, TFM_PROTECTED_STORAGE_SERVICE_HANDLE,
244 +void provision_fmp_variables_metadata(struct rpc_caller_interface *caller)
[all …]
H A D0001-Add-stub-capsule-update-service-components.patch130 +static rpc_status_t event_handler(uint32_t opcode, struct rpc_caller_interface *caller)
140 + if(!caller) {
151 + handle = psa_connect(caller, TFM_SP_PLATFORM_IOCTL_SID,
158 + psa_call(caller,handle, PSA_IPC_CALL,
165 + handle = psa_connect(caller, TFM_SP_PLATFORM_IOCTL_SID,
172 + psa_call(caller,handle, PSA_IPC_CALL,
187 + struct rpc_caller_interface *caller = this_instance->client.session->caller;
191 + rpc_status = event_handler(opcode, caller);
198 + struct rpc_caller_interface *caller = this_instance->client.session->caller;
202 + rpc_status = event_handler(opcode, caller);
H A D0002-Fix-in-AEAD-for-psa-arch-test-254.patch17 .../crypto/client/caller/packed-c/crypto_caller_aead.h | 1 +
25 …t a/components/service/crypto/client/caller/packed-c/crypto_caller_aead.h b/components/service/cry…
27 --- a/components/service/crypto/client/caller/packed-c/crypto_caller_aead.h
28 +++ b/components/service/crypto/client/caller/packed-c/crypto_caller_aead.h
/openbmc/u-boot/lib/
H A Dtrace.c60 void *caller, ulong flags) in add_ftrace() argument
70 rec->caller = func_ptr_to_num(caller); in add_ftrace()
82 rec->caller = 0; in add_textbase()
98 void *func_ptr, void *caller) in __cyg_profile_func_enter() argument
103 add_ftrace(func_ptr, caller, FUNCF_ENTRY); in __cyg_profile_func_enter()
126 void *func_ptr, void *caller) in __cyg_profile_func_exit() argument
129 add_ftrace(func_ptr, caller, FUNCF_EXIT); in __cyg_profile_func_exit()
214 out->caller = call->caller * FUNC_SITE_SIZE; in trace_list_calls()
/openbmc/u-boot/drivers/misc/
H A Dmxc_ocotp.c169 int assert, const char *caller) in prepare_access() argument
176 printf("mxc_ocotp %s(): Invalid argument\n", caller); in prepare_access()
183 printf("mxc_ocotp %s(): Invalid argument\n", caller); in prepare_access()
196 static int finish_access(struct ocotp_regs *regs, const char *caller) in finish_access() argument
208 printf("mxc_ocotp %s(): Access protect error\n", caller); in finish_access()
216 const char *caller) in prepare_read() argument
218 return prepare_access(regs, bank, word, val != NULL, caller); in prepare_read()
349 const char *caller) in prepare_write() argument
368 return prepare_access(regs, bank, word, true, caller); in prepare_write()
H A Dfsl_iim.c101 const char *caller) in prepare_access() argument
108 printf("fsl_iim %s(): Invalid argument\n", caller); in prepare_access()
129 const char *caller) in prepare_read() argument
133 ret = prepare_access(regs, bank, word, val != NULL, caller); in prepare_read()
229 const char *caller) in prepare_write() argument
231 return prepare_access(regs, bank, word, !(val & ~0xff), caller); in prepare_write()
/openbmc/qemu/util/
H A Dqemu-coroutine.c237 co->caller = NULL; in coroutine_delete()
280 if (to->caller) { in qemu_aio_coroutine_enter()
285 to->caller = from; in qemu_aio_coroutine_enter()
329 Coroutine *to = self->caller; in qemu_coroutine_yield()
338 self->caller = NULL; in qemu_coroutine_yield()
344 return co->caller; in qemu_coroutine_entered()
H A Dcoroutine-windows.c68 qemu_coroutine_switch(co, co->caller, COROUTINE_TERMINATE); in coroutine_trampoline()
108 return current && current->caller; in qemu_in_coroutine()
H A Dcoroutine-ucontext.c134 bool caller) in start_switch_fiber_tsan() argument
137 void *new_fiber = caller ? in start_switch_fiber_tsan()
176 qemu_coroutine_switch(co, co->caller, COROUTINE_TERMINATE); in coroutine_trampoline()
358 return self && self->caller; in qemu_in_coroutine()
H A Dcoroutine-wasm.c54 qemu_coroutine_switch(co, co->caller, COROUTINE_TERMINATE); in coroutine_trampoline()
126 return self && self->caller; in qemu_in_coroutine()
H A Dcoroutine-sigaltstack.c105 qemu_coroutine_switch(co, co->caller, COROUTINE_TERMINATE); in coroutine_bootstrap()
301 return s && s->current->caller; in qemu_in_coroutine()
/openbmc/sdbusplus/docs/
H A Dasio.md13 translated into a matching [error code][2] that can be consumed by the caller,
19 org.freedesktop.DBus.Error.InvalidArgs error will be returned to the caller.
36 returned to the D-Bus caller.
47 The first argument is the new value requested to be set by the D-Bus caller.
56 org.freedesktop.DBus.Error.InvalidArgs error will be returned to the caller.
/openbmc/openbmc/poky/meta/recipes-devtools/perl/files/
H A Dperl-dynloader.patch23 my ($caller, $modlibname) = caller();
24 my $module = $caller;
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/yajl/yajl/
H A DCVE-2022-24795.patch8 the allocated heap buffer in yajl_buf_append(), the only caller of
15 failures to a caller. But then the caller yajl_buf_append() skips
/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Ddecorators.py41 caller = os.path.basename(sys.argv[0])
43 logfile = os.path.join(os.getcwd(),'results-'+caller+'.'+timestamp+'.log')
44 linkfile = os.path.join(os.getcwd(),'results-'+caller+'.log')
88 local_log = logging.getLogger(caller)
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dprogress.py255 for stage_weight, caller in zip(stage_weights, self._callers):
256 if caller:
257 out.append('Up to %s:%d: %d' % (caller[1], caller[2], stage_weight))
/openbmc/qemu/include/qemu/
H A Dcoroutine_int.h47 Coroutine *caller; member
/openbmc/u-boot/include/
H A Dtrace.h76 uint32_t caller; /* Caller function offset */ member
/openbmc/openbmc-test-automation/lib/
H A Dvalid.tcl44 set caller [get_stack_proc_name -2]
45 if { $caller == "valid_list" } {
/openbmc/qemu/target/ppc/
H A Dmisc_helper.c90 const char *caller, uint32_t cause, in raise_hv_fu_exception() argument
94 bit, caller); in raise_hv_fu_exception()
116 const char *caller, uint32_t cause) in helper_hfscr_facility_check() argument
121 raise_hv_fu_exception(env, bit, caller, cause, GETPC()); in helper_hfscr_facility_check()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/lockdev/lockdev/
H A Dcross_compile.patch8 # overwritten by caller (e.g.: debian/rules)
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A D__init__.py274 caller = None
276 caller = sys._getframe(1)
279 if caller:
280 globals = caller.f_globals
281 line_number = caller.f_lineno
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/nginx/files/
H A Dnginx-fix-pidfile.patch82 + /* retain the return value for passing back to caller */
95 + /* let caller do the exit() */

12345