- t2ex
- bsd_source/lib/libc/src_bsd/search/hcreate.c - 5.7KB - 186 lines
167: while (ie != NULL) {
168: if (strcmp(ie->ent.key, item.key) == 0)
169: break;
- bsd_source/lib/libc/src_bsd/stdio/citrus_ctype.c - 2.3KB - 62 lines
50: {
51: if (!strcmp(encname, "NONE")) {
52: *rcc = &_citrus_ctype_none;
- More results from citrus_ctype.c
- bsd_source/lib/libc/src_bsd/stdlib/realpath.c - 8.9KB - 212 lines
122: continue;
123: else if (strcmp(next_token, ".") == 0)
124: continue;
- More results from realpath.c
- bsd_source/lib/libc/src_bsd/string/strcoll.c - 1.9KB - 44 lines
42: /* LC_COLLATE is unimplemented, hence always "C" */
43: return (strcmp(s1, s2));
44: }
- bsd_source/lib/libc/src_bsd/time/strftime.c - 33.3KB - 791 lines
693: lbuf = locale_buf;
694: if (lbuf != NULL && strcmp(name, lbuf) == 0) {
695: p = lbuf;
- bsd_source/t2ex/network/net/src_bsd/kern/subr_pool.c - 105.3KB - 3,534 lines
1133: TAILQ_FOREACH(pp1, &pool_head, pr_poollist) {
1134: if (strcmp(pp1->pr_wchan, pp->pr_wchan) > 0)
1135: break;
- More results from subr_pool.c
- bsd_source/t2ex/network/net/src_bsd/kern/uipc_accf.c - 12.6KB - 401 lines
126: LIST_FOREACH(p, &accept_filtlsthd, accf_next) {
127: if (strcmp(p->accf_name, filt->accf_name) == 0) {
128: rw_exit(&accept_filter_lock);
- More results from uipc_accf.c
- bsd_source/t2ex/network/net/src_bsd/net/bpf.c - 56.1KB - 2,015 lines
1146: if (ifp == 0 ||
1147: strcmp(ifp->if_xname, ifr->ifr_name) != 0)
1148: continue;
- bsd_source/t2ex/network/net/src_bsd/net/if.c - 61.4KB - 2,117 lines
1548: continue;
1549: if (strcmp(ifp->if_xname, name) == 0)
1550: return ifp;
- bsd_source/t2ex/network/net/src_bsd/netinet/tcp_congctl.c - 25.6KB - 776 lines
274: TAILQ_FOREACH(tccp, &tcp_congctlhd, congctl_ent) {
275: if (!strcmp(name, tccp->congctl_name))
276: rtccp = tccp;
- More results from tcp_congctl.c