Home
last modified time | relevance | path

Searched refs:toTid (Results 1 – 6 of 6) sorted by relevance

/device/google/contexthub/firmware/os/inc/
Dseos_priv.h87 uint32_t toTid; member
108 uint16_t toTid; member
Dseos.h167 bool osEnqueuePrivateEvt(uint32_t evtType, void *evtData, EventFreeF evtFreeF, uint32_t toTid);
168 bool osEnqueuePrivateEvtAsApp(uint32_t evtType, void *evtData, uint32_t toTid);
171 uint32_t toTid);
DsyscallDo.h65 …ueuePrivateEvt(uint32_t evtType, void *evtData, uint32_t tidOfWhoWillFreeThisEvent, uint32_t toTid) in eOsEnqueuePrivateEvt() argument
67 …EVENTQ, SYSCALL_OS_MAIN_EVTQ_ENQUEUE_PRIVATE), evtType, evtData, tidOfWhoWillFreeThisEvent, toTid); in eOsEnqueuePrivateEvt()
/device/google/contexthub/firmware/os/core/
Dseos.c1117 task = osTaskFindByTid(da->privateEvt.toTid); in osInternalEvtHandle()
1364 … bool osEnqueuePrivateEvtEx(uint32_t evtType, void *evtData, TaggedPtr evtFreeInfo, uint32_t toTid) in osEnqueuePrivateEvtEx() argument
1380 act->privateEvt.toTid = toTid; in osEnqueuePrivateEvtEx()
1391 uint32_t toTid) in osEnqueuePrivateEvtNew() argument
1394 taggedPtrMakeFromPtr(evtFreeCallback), toTid)) { in osEnqueuePrivateEvtNew()
1401 bool osEnqueuePrivateEvt(uint32_t evtType, void *evtData, EventFreeF evtFreeF, uint32_t toTid) in osEnqueuePrivateEvt() argument
1403 … return osEnqueuePrivateEvtEx(evtType & EVT_MASK, evtData, taggedPtrMakeFromPtr(evtFreeF), toTid); in osEnqueuePrivateEvt()
1406 bool osEnqueuePrivateEvtAsApp(uint32_t evtType, void *evtData, uint32_t toTid) in osEnqueuePrivateEvtAsApp() argument
1408 …sEnqueuePrivateEvtEx(evtType & EVT_MASK, evtData, taggedPtrMakeFromUint(osGetCurrentTid()), toTid); in osEnqueuePrivateEvtAsApp()
Dnanohub_chre.c190 uint32_t toTid) in osChreSendEvent() argument
202 return osEnqueuePrivateEvtNew(evtType, evtData, evtFreeCallback, toTid); in osChreSendEvent()
484 uint32_t toTid = va_arg(args, uint32_t); in osChreEventSendEvent() local
485 *retValP = osChreSendEvent(evtType, evtData, freeCallback, toTid); in osChreEventSendEvent()
DosApi.c66 uint32_t toTid = va_arg(args, uint32_t); in osExpApiEvtqEnqueuePrivate() local
68 *retValP = osEnqueuePrivateEvtAsApp(evtType, evtData, toTid); in osExpApiEvtqEnqueuePrivate()
291 thing->i2cAppCbkInfo.toTid = osGetCurrentTid(); in osExpApiI2cCbkInfoAlloc()
308 tid = thing->i2cAppCbkInfo.toTid; in osExpApiI2cInternalCbk()