Searched defs:nxt (Results 1 - 24 of 24) sorted by relevance

/external/openssh/
H A Dssh-pkcs11-helper.c76 struct pkcs11_keyinfo *ki, *nxt; local
78 for (ki = TAILQ_FIRST(&pkcs11_keylist); ki; ki = nxt) {
79 nxt = TAILQ_NEXT(ki, next);
H A Dssh-agent.c532 Identity *id, *nxt; local
538 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) {
539 nxt = TAILQ_NEXT(id, next);
826 Identity *id, *nxt; local
843 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) {
844 nxt = TAILQ_NEXT(id, next);
/external/tcpdump/
H A Dprint-atalk.c561 struct hnamemem *nxt; member in struct:hnamemem
598 tp->nxt; tp = tp->nxt)
601 tp->nxt = newhnamemem(ndo);
610 for (tp = &hnametable[i & (HASHNAMESIZE-1)]; tp->nxt; tp = tp->nxt)
616 for (tp2 = &hnametable[i & (HASHNAMESIZE-1)]; tp2->nxt; tp2 = tp2->nxt)
619 tp->nxt = newhnamemem(ndo);
630 tp->nxt
[all...]
H A Dprint-tcp.c77 struct tcp_seq_hash *nxt; member in struct:tcp_seq_hash
90 struct tcp_seq_hash6 *nxt; member in struct:tcp_seq_hash6
278 th->nxt; th = th->nxt)
283 if (!th->nxt || (flags & TH_SYN)) {
285 if (th->nxt == NULL) {
286 th->nxt = (struct tcp_seq_hash6 *)
288 if (th->nxt == NULL)
329 th->nxt; th = th->nxt)
845 uint8_t nxt; local
[all...]
H A Daddrtoname.c84 struct hnamemem *nxt; member in struct:hnamemem
137 struct h6namemem *nxt; member in struct:h6namemem
229 for (; p->nxt; p = p->nxt) {
234 p->nxt = newhnamemem(ndo);
289 for (; p->nxt; p = p->nxt) {
294 p->nxt = newh6namemem(ndo);
598 for (tp = &eprototable[i & (HASHNAMESIZE-1)]; tp->nxt; tp = tp->nxt)
[all...]
/external/curl/lib/
H A Deasy.c488 struct socketmonitor *nxt = m->next; local
491 prev->next = nxt;
493 ev->list = nxt;
495 m = nxt;
/external/libpng/mips/
H A Dfilter_msa_intrinsics.c463 png_bytep nxt = row + 4; local
491 ST_UB(dst0, nxt);
492 nxt += 16;
502 png_bytep nxt = row + 3; local
534 SD(out0, nxt);
535 nxt += 8;
536 SW(out1, nxt);
537 nxt += 4;
546 png_bytep nxt = row; local
562 SW(out0, nxt);
597 png_bytep nxt = row; local
658 png_bytep nxt; local
729 png_bytep nxt; local
[all...]
/external/iptables/libxtables/
H A Dxtoptions.c1112 char *cur, *nxt; local
1128 id = strtoul(cur, &nxt, strncmp(cur, "0x", 2) == 0 ? 16 : 10);
1129 if (nxt == cur || errno != 0)
1135 cur = nxt;
1143 nxt = cur;
1144 while (*nxt != '\0' && !isspace(*nxt))
1145 ++nxt;
1146 if (nxt == cur)
1148 *nxt
[all...]
/external/valgrind/coregrind/
H A Dm_xtree.c266 XTree* nxt; local
270 nxt = xt->alloc_fn(xt->cc, sizeof(struct _XTree) );
272 *nxt = *xt;
273 addRef_XT_shared(nxt->shared);
274 nxt->tmp_data = nxt->alloc_fn(nxt->cc, nxt->dataSzB);
275 nxt->data = VG_(cloneXA)(nxt
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Deloop.c443 int nxt = 0; local
454 pollfds[nxt].fd = fd;
455 pollfds[nxt].events = POLLIN;
456 pollfds[nxt].revents = 0;
457 pollfds_map[fd] = &(pollfds[nxt]);
458 nxt++;
472 pfd = &(pollfds[nxt]);
477 nxt++;
498 pfd = &(pollfds[nxt]);
503 nxt
[all...]
/external/wpa_supplicant_8/src/utils/
H A Deloop.c443 int nxt = 0; local
454 pollfds[nxt].fd = fd;
455 pollfds[nxt].events = POLLIN;
456 pollfds[nxt].revents = 0;
457 pollfds_map[fd] = &(pollfds[nxt]);
458 nxt++;
472 pfd = &(pollfds[nxt]);
477 nxt++;
498 pfd = &(pollfds[nxt]);
503 nxt
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Deloop.c443 int nxt = 0; local
454 pollfds[nxt].fd = fd;
455 pollfds[nxt].events = POLLIN;
456 pollfds[nxt].revents = 0;
457 pollfds_map[fd] = &(pollfds[nxt]);
458 nxt++;
472 pfd = &(pollfds[nxt]);
477 nxt++;
498 pfd = &(pollfds[nxt]);
503 nxt
[all...]
/external/libxml2/
H A Dparser.c1435 const xmlChar *cur = lang, *nxt; local
1454 nxt = cur;
1455 while (((nxt[0] >= 'A') && (nxt[0] <= 'Z')) ||
1456 ((nxt[0] >= 'a') && (nxt[0] <= 'z')))
1457 nxt++;
1458 if (nxt - cur >= 4) {
1462 if ((nxt - cur > 8) || (nxt[
[all...]
/external/expat/lib/
H A Dxmlparse.c4670 const char *nxt = (quant == XML_CQUANT_NONE local
4678 el = getElementType(parser, enc, s, nxt);
/external/python/cpython2/Modules/expat/
H A Dxmlparse.c4634 const char *nxt = (quant == XML_CQUANT_NONE local
4642 el = getElementType(parser, enc, s, nxt);
/external/caliper/lib/
H A Dgson-2.2.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/stream/ ...
/external/robolectric/v3/libs/
H A Dvtd-xml-2.11.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ximpleware/ com/ximpleware/extended/ com/ximpleware/extended/parser/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 1544 milliseconds