gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 9 of 9 for funcall:kmem_alloc (0.01 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/kern/kern_descrip.c - 60.6KB - 2,238 lines
981:         sz = (n + 2) * sizeof(uintptr_t);
982:         ptr = kmem_alloc((size_t)sz, KM_SLEEP);
983:         ptr[1] = sz;
More results from kern_descrip.c
bsd_source/t2ex/network/net/src_bsd/kern/subr_hash.c - 4.7KB - 132 lines
80: 
81:         p = kmem_alloc(hashsize * esize, (waitok ? KM_SLEEP : KM_NOSLEEP));
82:         if (p == NULL)
bsd_source/t2ex/network/net/src_bsd/kern/sys_descrip.c - 20.6KB - 722 lines
193:         if (size > sizeof(stkbuf)) {
194:                 memp = kmem_alloc(size, KM_SLEEP);
195:                 data = memp;
bsd_source/t2ex/network/net/src_bsd/kern/sys_generic.c - 21.9KB - 726 lines
268:                         }
269:                         iov = kmem_alloc(iovlen, KM_SLEEP);
270:                         if (iov == NULL) {
More results from sys_generic.c
bsd_source/t2ex/network/net/src_bsd/kern/sys_select.c - 30.3KB - 961 lines
286:         if (ni * 6 > sizeof(smallbits)) {
287:                 bits = kmem_alloc(ni * 6, KM_SLEEP);
288:                 if (bits == NULL)
More results from sys_select.c
bsd_source/t2ex/network/net/src_bsd/kern/uipc_accf.c - 12.6KB - 401 lines
354:                 newaf->so_accept_filter_str =
355:                     kmem_alloc(sizeof(afa.af_name), KM_SLEEP);
356: #ifdef T2EX
bsd_source/t2ex/network/net/src_bsd/rump/percpu.c - 2.4KB - 106 lines
88: 
89:         return kmem_alloc(size, KM_SLEEP);
90: }
t2ex_source/t2ex/network/net/src/netmain/tkn_kmem.c - 2.6KB - 96 lines
68: 
69:         p = kmem_alloc(size, kmflags);
70:         if (p != NULL) {
t2ex_source/t2ex/network/net/src/netmain/tkn_mutex.c - 13.2KB - 514 lines
481: 
482:         mo = kmem_alloc(sizeof *mo, KM_SLEEP);
483:         if ( mo == NULL ) {