gonzui


Format: Advanced Search

SearchGoogle itResults 31 - 40 of 47 for funcall:strlen from t2ex (0.07 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsdlib/libc/resolv/herror.c - 4.8KB - 148 lines
113:                 v->iov_base = t;
114:                 v->iov_len = strlen(t);
115:                 v++;
More results from herror.c
bsd_source/t2ex/network/net/src_bsdlib/libc/resolv/res_data.c - 21.4KB - 784 lines
364:                 res_init();
365:         len_host = strlen(hostname);
366:         len_domain = strlen(_nres.defdname);
More results from res_data.c
bsd_source/t2ex/network/net/src_bsdlib/libc/resolv/res_query.c - 20.3KB - 567 lines
473:                  */
474:                 n = strlen(name);
475:                 if (n >= MAXDNAME) {
More results from res_query.c
t2ex_source/driver/tef_em1d/netdrv/src/misc.c - 10.7KB - 328 lines
286:                 strncpy(inf->di.name, *nm1, L_NETPNAME);
287:                 n = strlen(*nm1);
288:         }
t2ex_source/kernel/sysmain/src/appl_main.c - 3.6KB - 106 lines
84:                 Gets(buf, sizeof(buf));
85:                 for (n = strlen(buf); --n >= 0 && buf[n] <= ' '; ) 
86:                         buf[n] = '\0';
t2ex_source/kernel/sysmain/src/command.c - 24.4KB - 884 lines
399: 
400:         n = strlen(path);
401:         path[n++] = '/';
More results from command.c
t2ex_source/kernel/sysmain/src/network_sample/dhclient.c - 13.2KB - 407 lines
342: 
343:         so_resctl(SO_RES_ADD_DOMAIN, (void*)state->domain_name, strlen(state->domain_name) + 1);
344: }
t2ex_source/kernel/sysmain/src/network_sample/httpclient.c - 3.7KB - 111 lines
92:         sprintf(req, "GET %s HTTP/1.1\r\nhost: %s\r\nConnection: close\r\n\r\n", path, host);
93:         re = so_write(sd, req, strlen(req));
94:         DEBUG_PRINT(("http_get: so_write = %d(%d, %d)\n", re, MERCD(re), SERCD(re)));
t2ex_source/lib/libc/src/stdlib/strercd_r.c - 8.5KB - 195 lines
186:         if (p != NULL) {
187:                 n = strlen( p );
188:                 if (n + 1 > (int)buflen) goto e2;
t2ex_source/lib/libc/src/stdlib/strerror_r.c - 6.3KB - 144 lines
134:                 if (er_tbl[i].er == errnum) {
135:                         n = strlen( er_tbl[i].msg );
136:                         if (n + 1 > (int)buflen) goto e2;