Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/os/inc/
Dseos_priv.h71 uint8_t subbedEvtListSz; member
/device/google/contexthub/firmware/os/core/
Dseos.c748 task->subbedEvtListSz = MAX_EMBEDDED_EVT_SUBS; in osStartApp()
1067 if (task->subbedEvtListSz == task->subbedEvtCount) { /* enlarge the list */ in osInternalEvtHandle()
1068 uint32_t newSz = (task->subbedEvtListSz * 3 + 1) / 2; in osInternalEvtHandle()
1071 … memcpy(newList, task->subbedEvents, sizeof(uint32_t[task->subbedEvtListSz])); in osInternalEvtHandle()
1075 task->subbedEvtListSz = newSz; in osInternalEvtHandle()
1078 if (task->subbedEvtListSz > task->subbedEvtCount) { /* have space ? */ in osInternalEvtHandle()