Searched refs:eventsInCache (Results 1 - 1 of 1) sorted by relevance

/frameworks/opt/net/wifi/service/tools/halutil/
H A Dhalutil.cpp255 int eventsInCache = 0; variable
261 if (eventsInCache + 1 < MAX_EVENTS_IN_CACHE) {
262 eventCache[eventsInCache].type = type;
263 strcpy(eventCache[eventsInCache].buf, msg);
264 eventsInCache++;
266 //printf("put new event in cache; size = %d\n", eventsInCache);
276 if (eventsInCache > 0) {
277 //printf("found an event in cache; size = %d\n", eventsInCache);
280 eventsInCache--;
281 memmove(&eventCache[0], &eventCache[1], sizeof(EventInfo) * eventsInCache);
[all...]

Completed in 58 milliseconds