Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/src/
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.c462 static const struct SyscallTable osMainEvtqTable = { in osApiExport()
474 static const struct SyscallTable osMainLogTable = { in osApiExport()
481 static const struct SyscallTable osMainSensorsTable = { in osApiExport()
498 static const struct SyscallTable osMainTimerTable = { in osApiExport()
507 static const struct SyscallTable osMainHeapTable = { in osApiExport()
515 static const struct SyscallTable osMainSlabTable = { in osApiExport()
525 static const struct SyscallTable osMainTable = { in osApiExport()
528 [SYSCALL_OS_MAIN_EVENTQ] = { .subtable = (struct SyscallTable*)&osMainEvtqTable, }, in osApiExport()
529 [SYSCALL_OS_MAIN_LOGGING] = { .subtable = (struct SyscallTable*)&osMainLogTable, }, in osApiExport()
530 [SYSCALL_OS_MAIN_SENSOR] = { .subtable = (struct SyscallTable*)&osMainSensorsTable, }, in osApiExport()
[all …]
/device/google/contexthub/firmware/inc/
Dsyscall.h60 struct SyscallTable { struct
63 struct SyscallTable *subtable; argument
72 bool syscallAddTable(uint32_t path, uint32_t level, struct SyscallTable *table); argument