Home | History | Annotate | Download | only in liblog

Lines Matching defs:EventTag

32 typedef struct EventTag {
35 } EventTag;
46 EventTag* tagArray;
54 static int scanTagLine(char** pData, EventTag* tag, int lineNum);
196 map->tagArray = calloc(1, sizeof(EventTag) * map->numTags);
331 static int scanTagLine(char** pData, EventTag* tag, int lineNum)
393 const EventTag* tag1 = (const EventTag*) v1;
394 const EventTag* tag2 = (const EventTag*) v2;
400 * Sort the EventTag array so we can do fast lookups by tag index. After
409 qsort(map->tagArray, map->numTags, sizeof(EventTag), compareEventTags);