Home
last modified time | relevance | path

Searched refs:func (Results 1 – 25 of 31) sorted by relevance

12

/optee_os-3.20.0/core/kernel/
A Dpanic.c14 const char *func __maybe_unused, in __do_panic()
23 if (!file && !func && !msg) in __do_panic()
29 func ? "<" : "", func ? func : "", func ? ">" : ""); in __do_panic()
A Dassert.c16 const char *func __maybe_unused) in _assert_log()
20 expr, file, line, func); in _assert_log()
A Dinitcall.c22 ret = call->func(); in call_preinitcalls()
41 ret = call->func(); in call_initcalls()
60 ret = call->func(); in call_finalcalls()
A Dnotif.c206 static TEE_Result notif_rpc(uint32_t func, uint32_t value) in notif_rpc() argument
208 struct thread_param params = THREAD_PARAM_VALUE(IN, func, value, 0); in notif_rpc()
A Dubsan.c99 static void print_loc(const char *func, struct source_location *loc) in print_loc() argument
101 const char *f = func; in print_loc()
/optee_os-3.20.0/ldelf/
A Dsys.c16 const char *func __maybe_unused) in __panic()
18 if (!file && !func) in __panic()
23 func ? "<" : "", func ? func : "", func ? ">" : ""); in __panic()
A Dsys.h28 void __noreturn __panic(const char *file, const int line, const char *func);
/optee_os-3.20.0/core/arch/arm/plat-rcar/
A Dromapi.c58 extern uint32_t __plat_romapi_wrapper(paddr_t func, uint64_t arg1,
61 static uint32_t __plat_romapi_direct(paddr_t func, uint64_t arg1, in __plat_romapi_direct() argument
68 fptr = (typeof(fptr))func; in __plat_romapi_direct()
73 static uint32_t plat_call_romapi(paddr_t func, uint64_t arg1, in plat_call_romapi() argument
76 uint32_t (*fptr)(paddr_t func, uint64_t arg1, uint64_t arg2, in plat_call_romapi()
102 return fptr(func, arg1, arg2, arg3); in plat_call_romapi()
/optee_os-3.20.0/core/include/kernel/
A Dspinlock.h49 static inline void cpu_spin_lock_dldetect(const char *func, const int line, in cpu_spin_lock_dldetect() argument
61 trace_printf(func, line, TRACE_ERROR, true, in cpu_spin_lock_dldetect()
108 static inline uint32_t cpu_spin_lock_xsave_dldetect(const char *func, in cpu_spin_lock_xsave_dldetect() argument
114 cpu_spin_lock_dldetect(func, line, lock); in cpu_spin_lock_xsave_dldetect()
A Dpanic.h18 void __do_panic(const char *file, const int line, const char *func,
/optee_os-3.20.0/lib/libutils/isoc/include/
A Dassert.h13 const char *func);
17 const char *func) in _assert_trap() argument
19 _assert_log(expr_str, file, line, func); in _assert_trap()
/optee_os-3.20.0/lib/libutee/
A Dassert.c16 const char *func __maybe_unused) in _assert_log()
19 expr, file, line, func); in _assert_log()
A Dtee_api_private.h15 TEE_Result __utee_entry(unsigned long func, unsigned long session_id,
A Dtee_api_arith_mpi.c18 static void __noreturn api_panic(const char *func, int line, const char *msg) in api_panic() argument
20 printf("Panic function %s, line %d: %s\n", func, line, msg); in api_panic()
28 static void __noreturn mpi_panic(const char *func, int line, int rc) in mpi_panic() argument
30 printf("Panic function %s, line %d, code %d\n", func, line, rc); in mpi_panic()
317 int (*func)(mbedtls_mpi *X, const mbedtls_mpi *A, in bigint_binary()
340 MPI_CHECK(func(&mpi_dest, pop1, pop2)); in bigint_binary()
352 int (*func)(mbedtls_mpi *X, const mbedtls_mpi *A, in bigint_binary_mod()
383 MPI_CHECK(func(&mpi_t, pop1, pop2)); in bigint_binary_mod()
/optee_os-3.20.0/ta/arch/arm/
A Duser_ta_header.c39 TEE_Result __utee_entry(unsigned long func, unsigned long session_id,
42 void __noreturn _C_FUNCTION(__ta_entry)(unsigned long func,
47 void __noreturn _C_FUNCTION(__ta_entry)(unsigned long func, in _C_FUNCTION()
70 res = __utee_entry(func, session_id, up, cmd_id); in _C_FUNCTION()
/optee_os-3.20.0/core/include/
A Dinitcall.h14 TEE_Result (*func)(void); member
25 { .func = (fn), .level = (lvl), .func_name = #fn, }
30 { .func = (fn), }
A Doptee_msg.h206 uint32_t func; member
/optee_os-3.20.0/core/arch/arm/tee/
A Darch_svc_private.h17 uint32_t tee_svc_do_call(struct thread_svc_regs *regs, syscall_t func);
/optee_os-3.20.0/ta/pkcs11/src/
A Dpkcs11_attributes.h124 enum processing_func func,
153 enum processing_func func,
/optee_os-3.20.0/lib/libutils/ext/include/
A Dtrace.h34 void trace_vprintf(const char *func, int line, int level, bool level_ok,
36 void trace_printf(const char *func, int line, int level, bool level_ok,
A Dfault_mitigation.h444 #define FTMN_CALL_FUNC(res, ftmn, incr, func, ...) \ argument
446 FTMN_PUSH_LINKED_CALL((ftmn), FTMN_FUNC_HASH(#func)); \
447 (res) = func(__VA_ARGS__); \
/optee_os-3.20.0/core/arch/arm/include/sm/
A Doptee_smc.h594 #define OPTEE_SMC_RPC_VAL(func) ((func) | OPTEE_SMC_RETURN_RPC_PREFIX) argument
/optee_os-3.20.0/scripts/
A Dsign_encrypt.py188 def assign_default_value(parsed, attr, func): argument
190 setattr(parsed, attr, func(parsed))
204 parser_sign_enc.set_defaults(func=command_sign_enc)
237 parser_digest.set_defaults(func=command_digest)
251 parser_stitch.set_defaults(func=command_stitch)
265 parser_verify.set_defaults(func=command_verify)
273 parser_display.set_defaults(func=command_display)
279 parser_subkey_uuid.set_defaults(func=command_subkey_uuid)
286 parser_sign_subkey.set_defaults(func=command_sign_subkey)
964 args.func(args)
/optee_os-3.20.0/core/drivers/crypto/caam/include/
A Dcaam_desc_helper.h408 #define MATH(func, src0, src1, dst, len) \ argument
409 (CMD_MATH_TYPE | MATH_FUNC(func) | MATH_SRC0(src0) | MATH_SRC1(src1) | \
416 #define MATHI_OP1(func, src, val, dst, len) \ argument
417 (CMD_MATHI_TYPE | MATH_FUNC(func) | MATHI_SRC(src) | \
A Dcaam_desc_defines.h480 #define MATH_FUNC(func) SHIFT_U32((MATH_FUNC_##func) & 0xF, 20) argument
565 #define PKHA_FUNC(func) SHIFT_U32((PKHA_FUNC_##func) & 0x3F, 0) argument

Completed in 25 milliseconds

12