/external/openssh/ |
match.h | 22 char *match_list(const char *, const char *, u_int *);
|
kex.c | 288 char *name = match_list(client, server, NULL); 305 char *name = match_list(client, server, NULL); 322 char *name = match_list(client, server, NULL); 340 k->name = match_list(client, server, NULL); 368 char *hostkeyalg = match_list(client, server, NULL); 425 roaming = match_list(KEX_RESUME, peer[PROPOSAL_KEX_ALGS], NULL);
|
match.c | 241 match_list(const char *client, const char *server, u_int *next) function
|
roaming_client.c | 186 || (str = match_list(KEX_RESUME, kexlist, NULL)) == NULL) {
|
auth2-pubkey.c | 189 if ((result = match_list(cert->principals[i],
|
sshconnect2.c | [all...] |
/art/runtime/jdwp/ |
jdwp_event.cc | 330 void JdwpState::CleanupMatchList(JdwpEvent** match_list, int match_count) { 331 JdwpEvent** ppEvent = match_list; 348 delete[] match_list; 451 * Found events are appended to "match_list", and "*pMatchCount" is advanced, 458 JdwpEvent** match_list, int* pMatchCount) { 460 match_list += *pMatchCount; 465 *match_list++ = pEvent; 477 static JdwpSuspendPolicy scanSuspendPolicy(JdwpEvent** match_list, int match_count) { 481 if ((*match_list)->suspend_policy > policy) { 482 policy = (*match_list)->suspend_policy 755 JdwpEvent** match_list = NULL; local 831 JdwpEvent** match_list = AllocMatchList(event_list_size_); local 913 JdwpEvent** match_list = NULL; local 985 JdwpEvent** match_list = AllocMatchList(event_list_size_); local [all...] |
jdwp.h | 278 void CleanupMatchList(JdwpEvent** match_list, 285 JdwpEvent** match_list,
|
/external/chromium_org/chrome/test/functional/ |
search_engines.py | 27 match_list = ([x for x in self.GetSearchEngineInfo() 29 if match_list: 30 return match_list[0]
|
multiprofile.py | 38 match_list = ([x for x in self.GetSearchEngineInfo(windex=windex) 40 if match_list: 41 return match_list[0]
|
/external/chromium/chrome/browser/extensions/ |
extension_cookies_helpers.h | 70 ListValue* match_list);
|
extension_cookies_helpers.cc | 107 ListValue* match_list) { 118 match_list->Append(CreateCookieValue(*it, store_id));
|
/external/chromium_org/chrome/tools/ |
webforms_aggregator.py | 160 match_list = re.findall(r'(?P<quote>[\'\"])(?P<link>(?:https?:)?//.*?)\1', 162 for group_list in match_list:
|