Home | History | Annotate | Download | only in android

Lines Matching full: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 != 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 *pcode = eventList_findCodeByName( list, p, q-p );
204 /* returns the list of valid event code string aliases for a given event type */
208 EventList list = eventList_findByType(type);
210 return eventList_getCount(list);
216 EventList list = eventList_findByType(type);
218 return eventList_bufprintCode(list, code_index, buff, end);