HomeSort by relevance Sort by last modified time
    Searched defs:match_list (Results 1 - 2 of 2) sorted by null

  /external/libedit/src/
filecomplete.c 284 char **match_list = NULL, *retstr, *prevstr; local
296 nmatch_list = el_realloc(match_list,
299 el_free(match_list);
302 match_list = nmatch_list;
305 match_list[++matches] = retstr;
308 if (!match_list)
311 /* find least denominator and insert it to match_list[0] */
313 prevstr = match_list[1];
317 prevstr[i] == match_list[which][i]; i++)
324 el_free(match_list);
    [all...]
  /art/runtime/jdwp/
jdwp_event.cc 408 void JdwpState::CleanupMatchList(const std::vector<JdwpEvent*>& match_list) {
409 for (JdwpEvent* pEvent : match_list) {
528 * Found events are appended to "match_list" so this may be called multiple times for grouped
535 std::vector<JdwpEvent*>* match_list) {
538 match_list->push_back(pEvent);
548 * Found events are appended to "match_list" so this may be called multiple
555 std::vector<JdwpEvent*>* match_list) {
557 match_list->reserve(event_list_size_);
558 FindMatchingEventsLocked(event_kind, basket, match_list);
559 return !match_list->empty()
866 std::vector<JdwpEvent*> match_list; local
945 std::vector<JdwpEvent*> match_list; local
1038 std::vector<JdwpEvent*> match_list; local
1129 std::vector<JdwpEvent*> match_list; local
1202 std::vector<JdwpEvent*> match_list; local
    [all...]

Completed in 146 milliseconds