Lines Matching refs:q
140 const char* q; in android_event_from_str() local
150 q = strchr(p, ':'); in android_event_from_str()
151 if (q == NULL || q > pend) in android_event_from_str()
152 q = pend; in android_event_from_str()
154 *ptype = eventList_findCodeByName( _ev_types_tab, p, q-p ); in android_event_from_str()
157 if (end != q) in android_event_from_str()
161 if (*q != ':') in android_event_from_str()
164 p = q + 1; in android_event_from_str()
165 q = strchr(p, ':'); in android_event_from_str()
166 if (q == NULL || q > pend) in android_event_from_str()
167 q = pend; in android_event_from_str()
173 *pcode = eventList_findCodeByName( list, p, q-p ); in android_event_from_str()
177 if (end != q) in android_event_from_str()
181 if (*q != ':') in android_event_from_str()
184 p = q + 1; in android_event_from_str()
185 q = strchr(p, ':'); in android_event_from_str()
186 if (q == NULL || q > pend) in android_event_from_str()
187 q = pend; in android_event_from_str()
190 if (end != q) in android_event_from_str()