| /openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-security/trusted-services/corstone1000/ |
| H A D | 0005-plat-corstone1000-Use-the-stateless-platform-service.patch | 25 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 D | 0007-plat-corstone1000-add-client_id-for-FMP-service.patch | 29 @@ -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 D | 0003-FMP-Support-in-Corstone1000.patch | 40 + 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 D | 0001-Add-stub-capsule-update-service-components.patch | 130 +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);
|
| /openbmc/libpldm/include/libpldm/ |
| H A D | transport.h | 35 * the caller. 44 * @param[in] pldm_msg - caller owned pointer to PLDM msg. If this is NULL, 60 * caller. 71 * success this function allocates memory, caller to 73 * @param[out] msg_len - caller owned pointer that will be made to point to 87 * returned to the caller once the response is received. 101 * @param[in] pldm_req_msg - caller owned pointer to PLDM request msg or async 109 * success this function allocates memory, caller to 111 * @param[out] resp_msg_len - caller owned pointer that will be made to point to
|
| /openbmc/u-boot/arch/mips/include/asm/ |
| H A D | regdef.h | 27 #define t0 $8 /* caller saved */ 47 #define t8 $24 /* caller saved */ 64 #define v0 $2 /* return value - caller saved */ 70 #define a4 $8 /* arg reg 64 bit; caller saved in 32 bit */ 78 #define t0 $12 /* caller saved */ 90 #define t8 $24 /* caller saved */ 95 #define gp $28 /* global pointer - caller saved for PIC */
|
| /openbmc/sdbusplus/docs/ |
| H A D | asio.md | 13 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-test-automation/bin/plug_ins/FFDC/ |
| H A D | cp_ffdc_check | 68 "The caller wishes to dump FFDC after each boot failure." 72 print_timen("The caller wishes to dump FFDC after each boot test.") 77 print_timen("The caller wishes to dump FFDC.") 85 + " caller wishes to dump FFDC on soft errors." 89 print_timen("The caller does not wish for any FFDC to be collected.")
|
| /openbmc/u-boot/lib/ |
| H A D | trace.c | 60 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() 95 * @param caller Pointer to function which called this function 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() 123 * @param caller Pointer to function which called this function 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/openbmc-test-automation/lib/ |
| H A D | valid.tcl | 26 # Call get_stack_var_level to relieve the caller of the need for declaring the variable as global. 44 set caller [get_stack_proc_name -2] 45 if { $caller == "valid_list" } { 125 # Call get_stack_var_level to relieve the caller of the need for declaring the variable as global. 143 …# We want to do a print_list on the caller's list but we want to put an asterisk by each invalid e… 146 # Make the caller's variable name, contained in $var_name, directly accessible to this procedure. 148 # print_list the caller's list to a string. 150 # Now convert the caller's printed var string to a list for easy manipulation. 164 …# Determine whether the caller passed invalid_values or valid_values in order to create appropriat… 189 # Call get_stack_var_level to relieve the caller of the need for declaring the variable as global. [all …]
|
| H A D | ipmi_client.py | 60 complete list). If the caller does NOT 63 will include them on the caller's behalf 73 # If the caller has specified this particular option, use it in 76 # Delete the value from the caller's options. 79 # The caller hasn't specified this required option so specify it 84 # Include the remainder of the caller's options in the new options
|
| H A D | tools.exp | 32 # If caller has exit_proc defined, call it. Otherwise, just call exit. 56 # If caller has exit_proc defined, call it. Otherwise, just call exit. 67 # Run the expect command for the caller and return the list index of the matching pattern. 77 …# pattern is presumed to be a regex. If the caller wishes to, the… 118 …# Check to see whether the caller has specified a flag (e.g. "-re", "-ex", etc.) at the beginning … 122 # Caller specified a flag. 203 …# It is the caller's responsibility to spawn the appropriate process (ssh,telnet) and to get the p…
|
| /openbmc/openbmc-test-automation/bin/plug_ins/Stop/ |
| H A D | cp_stop_check | 148 "The caller wishes to stop test execution if %s commands are" 173 "The caller wishes to stop test execution based on the presence of" 236 "The caller wishes to stop test execution based on " 249 print_timen("The caller wishes to stop after each boot failure.") 252 print_timen("The caller wishes to stop after each boot test.") 257 print_timen("The caller wishes to stop test execution.") 270 "The caller wishes to stop test execution when the" 275 qprint_timen("The caller does not wish to stop the test run.")
|
| /openbmc/qemu/include/io/ |
| H A D | channel-socket.h | 90 * will run in the foreground so the caller will not regain 109 * will run in the background so the caller will regain 131 * will run in the foreground so the caller will not regain 152 * will run in the background so the caller will regain 176 * This method will run in the foreground so the caller 198 * This method will run in the background so the caller 221 * struct will be returned, which the caller is required to 238 * struct will be returned, which the caller is required to
|
| /openbmc/qemu/block/ |
| H A D | qed-l2-cache.c | 86 * The returned entry has a reference count of 1 and is owned by the caller. 87 * The caller must allocate the actual table field for this entry and it must 124 * caller to satisfy the cache miss. 147 * the process to satisfy a cache miss. A caller would allocate an entry which 155 * N.B. This function steals a reference to the l2_table from the caller so the 156 * caller must obtain a new reference by issuing a call to
|
| /openbmc/qemu/include/migration/ |
| H A D | blocker.h | 31 * On success, the caller must not free @reasonp, except by 51 * On success, the caller must not free @reasonp, except by 75 * On success, the caller must not free @reasonp, except by 93 * On success, the caller must not free *@reasonp before the blocker is removed.
|
| /openbmc/libcper/include/libcper/ |
| H A D | base64.h | 12 * Caller is responsible for freeing the returned buffer. 18 * Caller is responsible for freeing the returned buffer.
|
| /openbmc/u-boot/drivers/clk/sifive/ |
| H A D | wrpll-cln28hpc.c | 128 * on the caller to do so. 130 * Context: Any context. Caller must protect the memory pointed to by 151 * Context: Any context. Caller must protect the memory pointed to by 227 * reprogramming is not glitchless, so the caller should switch any 231 * The caller must pass this function a pre-initialized struct 235 * Context: Any context. Caller must protect the memory pointed to by @c 353 * Context: Any context. Caller must protect the memory pointed to by @c 379 * Return the minimum amount of time (in microseconds) that the caller 384 * Return: the minimum amount of time the caller must wait for the PLL
|
| /openbmc/qemu/include/hw/ |
| H A D | loader-fit.h | 47 * @pfdt is used to tell the caller about the FDT blob. On return, it 48 * has been set to point to the FDT blob, and it is now the caller's 49 * responsibility to free that memory with g_free(). Usually the caller
|
| /openbmc/qemu/rust/qemu-api/src/ |
| H A D | error.rs | 92 let location = panic::Location::caller(); in from() 105 let location = panic::Location::caller(); in from() 118 let location = panic::Location::caller(); in from() 133 let location = panic::Location::caller(); in with_error() 152 // SAFETY: caller guarantees errp is valid in bool_or_propagate() 173 // SAFETY: caller guarantees errp is valid in ptr_or_propagate() 217 // SAFETY: caller guarantees that errp and *errp are valid in propagate() 232 // SAFETY: caller guarantees c_error is valid in err_or_unit() 248 // SAFETY: caller guarantees c_error is valid in err_or_else() 261 // SAFETY: caller guarantees p is valid in free_foreign() [all …]
|
| /openbmc/qemu/util/ |
| H A D | coroutine-ucontext.c | 134 bool caller) in start_switch_fiber_tsan() argument 137 void *new_fiber = caller ? in start_switch_fiber_tsan() 162 /* Initialize longjmp environment and switch back the caller */ in coroutine_trampoline() 168 start_switch_fiber_tsan(&fake_stack_save, self, true); /* true=caller */ in coroutine_trampoline() 176 qemu_coroutine_switch(co, co->caller, COROUTINE_TERMINATE); in coroutine_trampoline() 229 co, false); /* false=not caller */ in qemu_coroutine_new() 328 to, false); /* false=not caller */ in qemu_coroutine_switch() 358 return self && self->caller; in qemu_in_coroutine()
|
| H A D | nvdimm-utils.c | 19 * returned to the caller. 21 * Note: it is the caller's responsibility to free the list to avoid
|
| /openbmc/u-boot/drivers/misc/ |
| H A D | fsl_iim.c | 101 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()
|
| H A D | mxc_ocotp.c | 169 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()
|
| /openbmc/openbmc/poky/meta/recipes-devtools/perl/files/ |
| H A D | perl-dynloader.patch | 23 my ($caller, $modlibname) = caller(); 24 my $module = $caller;
|