Searched refs:MPOOL (Results 1 - 3 of 3) sorted by relevance

/netbsd-6-1-5-RELEASE/include/
H A Dmpool.h45 * pool is handed an opaque MPOOL cookie which stores all of this information.
62 typedef struct MPOOL { struct
87 } MPOOL; typedef in typeref:struct:MPOOL
90 MPOOL *mpool_open(void *, int, pgno_t, pgno_t);
91 void mpool_filter(MPOOL *, void (*)(void *, pgno_t, void *),
93 void *mpool_new(MPOOL *, pgno_t *);
94 void *mpool_get(MPOOL *, pgno_t, unsigned int);
95 int mpool_put(MPOOL *, void *, unsigned int);
96 int mpool_sync(MPOOL *);
97 int mpool_close(MPOOL *);
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/db/mpool/
H A Dmpool.c64 static BKT *mpool_bkt(MPOOL *);
65 static BKT *mpool_look(MPOOL *, pgno_t);
66 static int mpool_write(MPOOL *, BKT *);
73 MPOOL *
77 MPOOL *mp;
93 /* Allocate and initialize the MPOOL cookie. */
94 if ((mp = (MPOOL *)calloc(1, sizeof(MPOOL))) == NULL)
111 mpool_filter(MPOOL *mp, void (*pgin)(void *, pgno_t, void *),
124 mpool_new( MPOOL *m
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/db/btree/
H A Dbtree.h355 MPOOL *bt_mp; /* memory pool cookie */

Completed in 52 milliseconds