gonzui


Format: Advanced Search

SearchGoogle itResults 31 - 40 of 46 for funcall:malloc (0.03 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsdlib/libc/net/getservent_r.c - 7.5KB - 263 lines
179:                 sd->maxaliases = 10;
180:                 sd->aliases = malloc(sd->maxaliases * sizeof(char *));
181:                 if (sd->aliases == NULL) {
bsd_source/t2ex/network/net/src_bsdlib/libc/net/if_indextoname.c - 3.9KB - 123 lines
89:         }
90:         buf = malloc(len);
91:         if ((error = getifaddrs(&ifaddrs, buf, len, &len)) < 0) {
bsd_source/t2ex/network/net/src_bsdlib/libc/net/if_nametoindex.c - 3.5KB - 121 lines
88:         }
89:         buf = malloc(len);
90:         if ((error = getifaddrs(&ifaddrs, buf, len, &len)) < 0) {
bsd_source/t2ex/network/net/src_bsdlib/libc/resolv/res_init.c - 36.4KB - 1,026 lines
258:         }
259:         statp->_rnd = malloc(16);
260:         res_rndinit(statp);
More results from res_init.c
bsd_source/t2ex/network/net/src_bsdlib/libc/resolv/res_query.c - 20.3KB - 567 lines
175: #ifdef T2EX
176:         buf = malloc(MAXPACKET);
177:         if ( buf == NULL ) {
More results from res_query.c
bsd_source/t2ex/network/net/src_bsdlib/libc/resolv/res_send.c - 46.1KB - 1,357 lines
291:                 if ( tname == NULL ) {
292:                         tname = malloc(MAXDNAME+1);
293:                         if ( tname == NULL ) {
More results from res_send.c
t2ex_source/kernel/sysmain/src/command.c - 24.4KB - 884 lines
477: 
478:         buf = malloc(fsz + 1);
479:         if (!buf) {
More results from command.c
t2ex_source/kernel/sysmain/src/network_sample/net_show.c - 7.0KB - 223 lines
105:         }
106:         buf = malloc(len);
107:         if (buf == NULL) {
t2ex_source/kernel/sysmain/src/network_sample/net_test.c - 12.1KB - 415 lines
83: 
84:         buf = malloc(HTTP_BUFSIZE);
85:         bzero(buf, HTTP_BUFSIZE);
More results from net_test.c
t2ex_source/lib/libc/src/dirent/opendir.c - 2.6KB - 80 lines
63: 
64:         p = malloc(sizeof(DIR));
65:         if (p == NULL) { er = ENOMEM; goto e2; }