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 415 void JdwpState::CleanupMatchList(JdwpEvent** match_list, size_t match_count) {
416 JdwpEvent** ppEvent = match_list;
434 delete[] match_list;
542 * Found events are appended to "match_list", and "*pMatchCount" is advanced,
549 JdwpEvent** match_list, size_t* pMatchCount) {
551 match_list += *pMatchCount;
555 *match_list++ = pEvent;
565 static JdwpSuspendPolicy scanSuspendPolicy(JdwpEvent** match_list, int match_count) {
569 if ((*match_list)->suspend_policy > policy) {
570 policy = (*match_list)->suspend_policy
875 JdwpEvent** match_list = nullptr; local
959 JdwpEvent** match_list = nullptr; local
1057 JdwpEvent** match_list = nullptr; local
1168 JdwpEvent** match_list = nullptr; local
1252 JdwpEvent** match_list = nullptr; local
    [all...]

Completed in 980 milliseconds