Home
last modified time | relevance | path

Searched refs:retValP (Results 1 – 2 of 2) sorted by relevance

/device/google/contexthub/firmware/src/
DosApi.c33 static void osExpApiEvtqSubscribe(uintptr_t *retValP, va_list args) in osExpApiEvtqSubscribe() argument
38 *retValP = osEventSubscribe(0, evtType); in osExpApiEvtqSubscribe()
41 static void osExpApiEvtqUnsubscribe(uintptr_t *retValP, va_list args) in osExpApiEvtqUnsubscribe() argument
46 *retValP = osEventUnsubscribe(0, evtType); in osExpApiEvtqUnsubscribe()
49 static void osExpApiEvtqEnqueue(uintptr_t *retValP, va_list args) in osExpApiEvtqEnqueue() argument
55 *retValP = osEnqueueEvtAsApp(evtType, evtData, 0); in osExpApiEvtqEnqueue()
58 static void osExpApiEvtqEnqueuePrivate(uintptr_t *retValP, va_list args) in osExpApiEvtqEnqueuePrivate() argument
65 *retValP = osEnqueuePrivateEvtAsApp(evtType, evtData, 0, toTid); in osExpApiEvtqEnqueuePrivate()
68 static void osExpApiEvtqRetainEvt(uintptr_t *retValP, va_list args) in osExpApiEvtqRetainEvt() argument
72 *retValP = osRetainCurrentEvent(evtFreeingInfoP); in osExpApiEvtqRetainEvt()
[all …]
/device/google/contexthub/firmware/inc/
Dsyscall.h58 typedef void (*SyscallFunc)(uintptr_t *retValP, va_list args); /* you better know what args you nee…