Home
last modified time | relevance | path

Searched refs:SyscallTable (Results 1 – 4 of 4) sorted by relevance

/device/google/contexthub/firmware/os/core/
Dsyscall.c22 static uint32_t mTableStore[(sizeof(struct SyscallTable) + sizeof(union SyscallTableEntry[1 << SYSC…
24 static struct SyscallTable *mTable = (struct SyscallTable*)mTableStore;
33 bool syscallAddTable(uint32_t path, uint32_t level, struct SyscallTable *table) in syscallAddTable()
35 struct SyscallTable** tabP = &mTable; in syscallAddTable()
59 struct SyscallTable* tab = mTable; in syscallFindHandlerLoc()
DosApi.c482 static const struct SyscallTable osMainEvtqTable = { in osApiExport()
494 static const struct SyscallTable osMainLogTable = { in osApiExport()
501 static const struct SyscallTable osMainSensorsTable = { in osApiExport()
519 static const struct SyscallTable osMainTimerTable = { in osApiExport()
528 static const struct SyscallTable osMainHeapTable = { in osApiExport()
536 static const struct SyscallTable osMainSlabTable = { in osApiExport()
546 static const struct SyscallTable osMainHostTable = { in osApiExport()
553 static const struct SyscallTable osMainRtcTable = { in osApiExport()
560 static const struct SyscallTable osMainTable = { in osApiExport()
563 [SYSCALL_OS_MAIN_EVENTQ] = { .subtable = (struct SyscallTable*)&osMainEvtqTable, }, in osApiExport()
[all …]
Dnanohub_chre.c409 static const struct SyscallTable chreMainApiTable = {
433 static const struct SyscallTable chreMainTable = {
436 [SYSCALL_CHRE_MAIN_API] = { .subtable = (struct SyscallTable*)&chreMainApiTable, },
440 static const struct SyscallTable chreTable = {
443 [SYSCALL_CHRE_MAIN] = { .subtable = (struct SyscallTable*)&chreMainTable, },
449 … if (!syscallAddTable(SYSCALL_NO(SYSCALL_DOMAIN_CHRE,0,0,0), 1, (struct SyscallTable*)&chreTable)) in osChreApiExport()
/device/google/contexthub/firmware/os/inc/
Dsyscall.h60 struct SyscallTable { struct
63 struct SyscallTable *subtable; argument
72 bool syscallAddTable(uint32_t path, uint32_t level, struct SyscallTable *table); argument