HomeSort by relevance Sort by last modified time
    Searched defs:evtData (Results 1 - 8 of 8) sorted by null

  /device/google/contexthub/firmware/os/core/
eventQ.c 41 void* evtData;
92 q->forceDiscardCbk(rec->evtType, rec->evtData, rec->evtFreeData);
100 bool evtQueueEnqueue(struct EvtQueue* q, uint32_t evtType, void *evtData,
120 q->forceDiscardCbk(rec->evtType, rec->evtData, rec->evtFreeData);
135 rec->evtData = evtData;
168 if (match(rec->evtType, rec->evtData, context)) {
169 q->forceDiscardCbk(rec->evtType, rec->evtData, rec->evtFreeData);
211 *evtDataP = rec->evtData;
nanohub_chre.c 179 void osChreFreeEvent(uint32_t tid, chreEventCompleteFunction *cbFreeEvt, uint32_t evtType, void * evtData)
184 osTaskInvokeEventFreeCallback(chreTask, cbFreeEvt, evtType, evtData);
188 static bool osChreSendEvent(uint16_t evtType, void *evtData,
199 osChreFreeEvent(osGetCurrentTid(), evtFreeCallback, evtType, evtData);
202 return osEnqueuePrivateEvtNew(evtType, evtData, evtFreeCallback, toTid);
482 void *evtData = va_arg(args, void *);
485 *retValP = osChreSendEvent(evtType, evtData, freeCallback, toTid);
osApi.c 55 void *evtData = va_arg(args, void*);
58 *retValP = osEnqueueEvtAsApp(evtType, evtData, tid ? true : false);
64 void *evtData = va_arg(args, void*);
68 *retValP = osEnqueuePrivateEvtAsApp(evtType, evtData, toTid);
81 void *evtData = va_arg(args, void*);
84 osFreeRetainedEvent(evtType, evtData, evtFreeingInfoP);
hostIntf.c     [all...]
seos.c 338 static inline void osTaskHandle(struct Task *task, uint16_t evtType, uint16_t fromTid, const void* evtData)
343 evtData);
370 void *evtData = act->privateEvt.evtData;
383 evtType & EVT_MASK, evtData);
389 ((EventFreeF)taggedPtrToPtr(evtFreeInfo))(evtData);
394 struct AppEventFreeData fd = {.evtType = evtType, .evtData = evtData};
401 static void handleEventFreeing(uint32_t evtType, void *evtData, TaggedPtr evtFreeData) // watch out, this is synchronous
418 ((EventFreeF)taggedPtrToPtr(evtFreeData))(evtData);
    [all...]
  /device/google/contexthub/firmware/os/inc/
seos_priv.h 105 void *evtData;
122 void osChreTaskHandle(struct Task *task, uint32_t evtType, const void *evtData);
seos.h 54 void (*handle)(uint32_t evtType, const void* evtData);
126 void* evtData;
167 bool osEnqueuePrivateEvt(uint32_t evtType, void *evtData, EventFreeF evtFreeF, uint32_t toTid);
168 bool osEnqueuePrivateEvtAsApp(uint32_t evtType, void *evtData, uint32_t toTid);
169 bool osEnqueuePrivateEvtNew(uint16_t evtType, void *evtData,
173 bool osEnqueueEvt(uint32_t evtType, void *evtData, EventFreeF evtFreeF);
174 bool osEnqueueEvtOrFree(uint32_t evtType, void *evtData, EventFreeF evtFreeF);
175 bool osEnqueueEvtAsApp(uint32_t evtType, void *evtData, bool freeData);
176 void osRemovePendingEvents(bool (*match)(uint32_t evtType, const void *evtData, void *context), void *context);
291 void osFreeRetainedEvent(uint32_t evtType, void *evtData, TaggedPtr *evtFreeingInfoP)
    [all...]
nanohubPacket.h 263 uint8_t evtData[NANOHUB_PACKET_PAYLOAD_MAX - sizeof(__le32)];
272 uint8_t evtData[NANOHUB_PACKET_PAYLOAD_MAX - sizeof(__le32)];

Completed in 120 milliseconds