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

  /device/google/contexthub/firmware/os/core/
timer.c 62 static struct Timer *timFindTimerById(uint32_t timId) /* no locks taken. be careful what you do with this */
67 if (mTimers[i].id == timId)
163 uint16_t timId;
172 timId = atomicAdd32bits(&mNextTimerId, 1);
173 } while (!timId || timFindTimerById(timId));
185 t->id = timId;
192 return timId;
nanohub_chre.c 95 uint32_t timId = timTimerSetNew(duration, cookie, oneShot);
97 return timId == 0 ? CHRE_TIMER_INVALID : timId;

Completed in 66 milliseconds