Home | History | Annotate | Download | only in liblog

Lines Matching defs:EventTag

31 typedef struct EventTag {
34 } EventTag;
45 EventTag* tagArray;
53 static int scanTagLine(char** pData, EventTag* tag, int lineNum);
188 EventTag* tagArray = NULL;
198 map->tagArray = calloc(1, sizeof(EventTag) * map->numTags);
333 static int scanTagLine(char** pData, EventTag* tag, int lineNum)
395 const EventTag* tag1 = (const EventTag*) v1;
396 const EventTag* tag2 = (const EventTag*) v2;
402 * Sort the EventTag array so we can do fast lookups by tag index. After
411 qsort(map->tagArray, map->numTags, sizeof(EventTag), compareEventTags);
434 const EventTag* tag = &map->tagArray[i];