HomeSort by relevance Sort by last modified time
    Searched refs:SyscallFunc (Results 1 - 3 of 3) sorted by null

  /device/google/contexthub/firmware/os/inc/
syscall.h 58 typedef void (*SyscallFunc)(uintptr_t *retValP, va_list args); /* you better know what args you need */
64 SyscallFunc func;
75 bool syscallAddFunc(uint32_t path, SyscallFunc func);
77 SyscallFunc syscallGetHandler(uint32_t path); // NULL if none
  /device/google/contexthub/firmware/os/core/
syscall.c 57 static SyscallFunc* syscallFindHandlerLoc(uint32_t path)
79 bool syscallAddFunc(uint32_t path, SyscallFunc func)
81 SyscallFunc *f = syscallFindHandlerLoc(path);
90 SyscallFunc syscallGetHandler(uint32_t path)
92 SyscallFunc *f = syscallFindHandlerLoc(path);
  /device/google/contexthub/firmware/os/cpu/cortexm4/
cpu.c 233 SyscallFunc handler;

Completed in 101 milliseconds