Home | History | Annotate | Download | only in android

Lines Matching refs:list

88 eventList_getCount( EventList  list )
92 if (list == NULL)
95 for (nn = 0; list[nn].name != NULL; nn++) {
102 eventList_findCodeByName( EventList list,
109 for ( ; list->name != NULL; list += 1 ) {
110 if ( !memcmp(name, list->name, namelen) &&
111 list->name[namelen] == 0 )
113 return list->value;
120 eventList_bufprintCode( EventList list,
125 if (list == NULL)
128 return bufprint(buf, bufend, "%s", list[index].name);
141 EventList list;
169 list = eventList_findByType( *ptype );
170 if (list == NULL) {
173 *pcode = eventList_findCodeByName( list, p, q-p );
208 /* returns the list of valid event code string aliases for a given event type */
212 EventList list = eventList_findByType(type);
214 return eventList_getCount(list);
220 EventList list = eventList_findByType(type);
222 return eventList_bufprintCode(list, code_index, buff, end);