Searched refs:SyscallTable (Results 1 – 4 of 4) sorted by relevance
/device/google/contexthub/firmware/os/core/ |
D | syscall.c | 22 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()
|
D | osApi.c | 490 static const struct SyscallTable osMainEvtqTable = { in osApiExport() 502 static const struct SyscallTable osMainLogTable = { in osApiExport() 509 static const struct SyscallTable osMainSensorsTable = { in osApiExport() 528 static const struct SyscallTable osMainTimerTable = { in osApiExport() 537 static const struct SyscallTable osMainHeapTable = { in osApiExport() 545 static const struct SyscallTable osMainSlabTable = { in osApiExport() 555 static const struct SyscallTable osMainHostTable = { in osApiExport() 562 static const struct SyscallTable osMainRtcTable = { in osApiExport() 569 static const struct SyscallTable osMainTable = { in osApiExport() 572 [SYSCALL_OS_MAIN_EVENTQ] = { .subtable = (struct SyscallTable*)&osMainEvtqTable, }, in osApiExport() [all …]
|
D | nanohub_chre.c | 648 static const struct SyscallTable chreMainApiTable = { 675 static const struct SyscallTable chreMainEventTable = { 688 static const struct SyscallTable chreMainTable = { 691 [SYSCALL_CHRE_MAIN_API] = { .subtable = (struct SyscallTable*)&chreMainApiTable, }, 692 [SYSCALL_CHRE_MAIN_EVENT] = { .subtable = (struct SyscallTable*)&chreMainEventTable, }, 696 static const struct SyscallTable chreDrvGnssTable = { 708 static const struct SyscallTable chreDrvWifiTable = { 717 static const struct SyscallTable chreDrvWwanTable = { 725 static const struct SyscallTable chreDrvAudioTable = { 734 static const struct SyscallTable chreDriversTable = { [all …]
|
/device/google/contexthub/firmware/os/inc/ |
D | syscall.h | 60 struct SyscallTable { struct 63 struct SyscallTable *subtable; argument 72 bool syscallAddTable(uint32_t path, uint32_t level, struct SyscallTable *table); argument
|