Searched refs:blist (Results 1 - 6 of 6) sorted by relevance

/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Dblist.h8 * blist = blist_create(blocks)
9 * (void) blist_destroy(blist)
10 * blkno = blist_alloc(blist, count)
11 * (void) blist_free(blist, blkno, count)
12 * (void) blist_resize(&blist, count, freeextra)
22 * capable of managing up to (2^31) blocks per blist, though
27 * $FreeBSD: src/sys/sys/blist.h,v 1.2 1999/08/28 00:51:33 peter Exp $
77 typedef struct blist { struct
94 extern void blist_destroy(blist_t blist);
95 extern daddr_t blist_alloc(blist_t blist, daddr_
[all...]
H A Dblist.c32 * Unlike the rlist code, the blist code wires all necessary memory at
35 * on an rlist_free() call. The non-blocking features of the blist code
37 * rlist code uses a little less overall memory then the blist code (but
38 * due to swap interleaving not all that much less), but the blist code
72 #include <sys/blist.h>
99 #include <sys/blist.h>
117 /* #include <sys/blist.h> */
118 #include "blist.h"
154 * blist_create() - create a blist capable of handling up to the specified
159 * The smallest blist consist
[all...]
H A Ddtrace_glue.c969 #include "blist.h"
971 /* By passing around blist *handles*, the underlying blist can be resized as needed. */
973 blist_t blist; member in struct:blist_hdl
993 p->blist = bl = blist_create( size );
1005 blist_t bl = q->blist;
1012 q->blist = bl;
1026 blist_free( p->blist, (daddr_t)(uintptr_t)vaddr, (daddr_t)size );
1034 blist_destroy( p->blist );
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_bio.c3011 struct nfsbuflists blist, commitlist; local
3054 if (!nfs_buf_iterprepare(np, &blist, flags)) {
3055 while ((bp = LIST_FIRST(&blist))) {
3118 nfs_buf_itercomplete(np, &blist, NBI_DIRTY);
3247 struct nfsbuflists blist; local
3296 if (!nfs_buf_iterprepare(np, &blist, NBI_DIRTY)) {
3297 while ((bp = LIST_FIRST(&blist))) {
3312 nfs_buf_itercomplete(np, &blist, NBI_DIRTY);
3364 nfs_buf_itercomplete(np, &blist, NBI_DIRTY);
3466 struct nfsbuflists blist; local
3693 struct nfsbuflists blist; local
[all...]
H A Dnfs_vnops.c4994 struct nfsbuflists blist; local
5067 if (!nfs_buf_iterprepare(dnp, &blist, NBI_CLEAN)) {
5069 while ((bp = LIST_FIRST(&blist))) {
5115 nfs_buf_itercomplete(dnp, &blist, NBI_CLEAN);
5219 struct nfsbuflists blist; local
5262 if (!nfs_buf_iterprepare(dnp, &blist, NBI_CLEAN)) {
5264 while ((bp = LIST_FIRST(&blist))) {
5298 nfs_buf_itercomplete(dnp, &blist, NBI_CLEAN);
/darwin-on-arm/xnu/bsd/conf/
H A Dfiles615 bsd/dev/dtrace/blist.c optional config_dtrace

Completed in 46 milliseconds