Home
last modified time | relevance | path

Searched refs:TAILQ_FIRST (Results 1 – 19 of 19) sorted by relevance

/external/ipsec-tools/src/include-glibc/sys/
Dqueue.h340 #define TAILQ_FIRST(head) ((head)->tqh_first) macro
343 for ((var) = TAILQ_FIRST((head)); \
353 TAILQ_FIRST((head)) = NULL; \
354 (head)->tqh_last = &TAILQ_FIRST((head)); \
375 if ((TAILQ_NEXT((elm), field) = TAILQ_FIRST((head))) != NULL) \
376 TAILQ_FIRST((head))->field.tqe_prev = \
380 TAILQ_FIRST((head)) = (elm); \
381 (elm)->field.tqe_prev = &TAILQ_FIRST((head)); \
/external/ipsec-tools/src/racoon/
Dschedule.c58 for (elm = TAILQ_FIRST(head); elm; elm = TAILQ_NEXT(elm, field))
88 for (p = TAILQ_FIRST(&sctree); p; p = next) { in schedular()
110 p = TAILQ_FIRST(&sctree); in schedular()
255 p = TAILQ_FIRST(&sctree);
Dpolicy.c74 for (p = TAILQ_FIRST(&sptree); p; p = TAILQ_NEXT(p, chain)) {
95 for (p = TAILQ_FIRST(&sptree); p; p = TAILQ_NEXT(p, chain)) {
154 for (p = TAILQ_FIRST(&sptree); p; p = TAILQ_NEXT(p, chain)) {
169 for (p = TAILQ_FIRST(&sptree); p; p = TAILQ_NEXT(p, chain)) {
412 for (p = TAILQ_FIRST(&sptree); p; p = next) { in flushsp()
Devt.c129 if ((evt = TAILQ_FIRST(&evtlist)) == NULL) in evt_pop()
Dgenlist.c87 p = TAILQ_FIRST(head); in genlist_next()
Dnattraversal.c340 for (ka = TAILQ_FIRST(&ka_tree); ka; ka = next) { in natt_keepalive_send()
434 for (ka = TAILQ_FIRST(&ka_tree); ka; ka = next) { in natt_keepalive_remove()
Dremoteconf.c386 for (p = TAILQ_FIRST(&rmtree); p; p = next) { in flushrmconf()
Disakmp_agg.c514 while ((natd = TAILQ_FIRST(&natd_tree)) != NULL) {
/external/openssh/openbsd-compat/
Dsys-queue.h89 #undef TAILQ_FIRST
425 #define TAILQ_FIRST(head) ((head)->tqh_first) macro
434 (TAILQ_FIRST(head) == TAILQ_END(head))
437 for((var) = TAILQ_FIRST(head); \
442 for ((var) = TAILQ_FIRST(head); \
/external/openssh/
Dsshconnect2.c1284 for (id = TAILQ_FIRST(&agent); id; id = TAILQ_FIRST(&agent)) { in pubkey_prepare()
1291 for (id = TAILQ_FIRST(&files); id; id = TAILQ_FIRST(&files)) { in pubkey_prepare()
1308 for (id = TAILQ_FIRST(&authctxt->keys); id; in pubkey_cleanup()
1309 id = TAILQ_FIRST(&authctxt->keys)) { in pubkey_cleanup()
1324 while ((id = TAILQ_FIRST(&authctxt->keys))) { in userauth_pubkey()
Dssh_api.c143 while ((k = TAILQ_FIRST(&ssh->public_keys)) != NULL) { in ssh_free()
149 while ((k = TAILQ_FIRST(&ssh->private_keys)) != NULL) { in ssh_free()
Dssh-agent.c495 for (id = TAILQ_FIRST(&tab->idlist); id; in process_remove_all_identities()
496 id = TAILQ_FIRST(&tab->idlist)) { in process_remove_all_identities()
519 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) { in reaper()
783 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) { in process_remove_smartcard_key()
Dssh-keyscan.c564 c = TAILQ_FIRST(&tq); in conloop()
597 c = TAILQ_FIRST(&tq); in conloop()
Dssh-pkcs11-helper.c78 for (ki = TAILQ_FIRST(&pkcs11_keylist); ki; ki = nxt) { in del_keys_by_name()
Dsftp-client.c1292 for (req = TAILQ_FIRST(&requests); in do_download()
1378 if (TAILQ_FIRST(&requests) != NULL) in do_download()
1691 } else if (TAILQ_FIRST(&acks) == NULL) in do_upload()
1718 for (ack = TAILQ_FIRST(&acks); in do_upload()
Dssh-pkcs11.c137 while ((p = TAILQ_FIRST(&pkcs11_providers)) != NULL) { in pkcs11_terminate()
Dchannels.c432 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) { in channel_free()
2716 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
Dclientloop.c546 if ((gc = TAILQ_FIRST(&global_confirms)) == NULL) in client_global_request_reply()
Dpacket.c1241 while ((p = TAILQ_FIRST(&state->outgoing))) { in ssh_packet_send2()