/trusty/user/base/interface/smc/include/interface/smc/ |
D | smc_def.h | 24 #define SMC_NR(entity, fn, fastcall, smc64) \ argument 26 (((entity)&0x3FU) << 24) | ((fn)&0xFFFFU)) 28 #define SMC_FASTCALL_NR(entity, fn) SMC_NR((entity), (fn), 1, 0) argument 29 #define SMC_STDCALL_NR(entity, fn) SMC_NR((entity), (fn), 0, 0) argument 30 #define SMC_FASTCALL64_NR(entity, fn) SMC_NR((entity), (fn), 1, 1) argument 31 #define SMC_STDCALL64_NR(entity, fn) SMC_NR((entity), (fn), 0, 1) argument
|
/trusty/user/base/lib/smc/include/lib/smc/ |
D | smc_test.h | 23 #define SMC_NR(entity, fn, fastcall, smc64) \ argument 25 (((entity)&0x3FU) << 24U) | ((fn)&0xFFFFU)) 27 #define SMC_FASTCALL_NR(entity, fn) SMC_NR((entity), (fn), 1U, 0U) argument 28 #define SMC_FASTCALL64_NR(entity, fn) SMC_NR((entity), (fn), 1U, 1U) argument
|
/trusty/kernel/lib/syscall/ |
D | syscall.c | 48 #define DEF_SYSCALL(nr, fn, rtype, nr_args, ...) rtype sys_##fn(void); argument 54 #define DEF_SYSCALL(nr, fn, rtype, nr_args, ...) \ argument 55 [(nr)] = (unsigned long)(sys_##fn),
|
D | README | 8 DEF_SYSCALL(nr, fn, rtype, nargs, ...) 11 fn : name of the system call. E.g, "read", "write" etc.
|
/trusty/user/base/lib/apploader_package/include/apploader/ |
D | cbor.h | 317 void encodeTag(int64_t tag, Fn fn) { in encodeTag() argument 319 fn(enc); in encodeTag() 326 void encodeArray(Fn fn) { in encodeArray() argument 328 fn(enc); in encodeArray() 335 void encodeMap(Fn fn) { in encodeMap() argument 337 fn(enc); in encodeMap() 345 void encodeKeyValue(int64_t key, Fn fn) { in encodeKeyValue() argument 347 fn(enc); in encodeKeyValue() 502 void encodeTag(int64_t tag, Fn fn) { in encodeTag() argument 504 fn(enc); in encodeTag() [all …]
|
/trusty/kernel/lib/trusty/include/lib/trusty/ |
D | trusty_app.h | 214 void trusty_app_forall(void (*fn)(struct trusty_app* ta, void* data),
|
/trusty/kernel/lib/trusty/ |
D | trusty_app.c | 2097 void trusty_app_forall(void (*fn)(struct trusty_app* ta, void* data), in trusty_app_forall() 2101 if (fn == NULL) in trusty_app_forall() 2106 fn(ta, data); in trusty_app_forall()
|