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

/macosx-10.10.1/Libc-1044.1.2/include/
H A Dmpool.h47 * pool is handed an opaque MPOOL cookie which stores all of this information.
64 typedef struct MPOOL { struct
89 } MPOOL; typedef in typeref:struct:MPOOL
92 MPOOL *mpool_open(void *, int, pgno_t, pgno_t);
93 void mpool_filter(MPOOL *, void (*)(void *, pgno_t, void *),
95 void *mpool_new(MPOOL *, pgno_t *);
96 void *mpool_get(MPOOL *, pgno_t, unsigned int);
97 int mpool_put(MPOOL *, void *, unsigned int);
98 int mpool_sync(MPOOL *);
99 int mpool_close(MPOOL *);
[all...]
/macosx-10.10.1/Libc-1044.1.2/db/mpool/FreeBSD/
H A Dmpool.c53 static BKT *mpool_bkt(MPOOL *);
54 static BKT *mpool_look(MPOOL *, pgno_t);
55 static int mpool_write(MPOOL *, BKT *);
62 MPOOL *
66 MPOOL *mp;
82 /* Allocate and initialize the MPOOL cookie. */
83 if ((mp = (MPOOL *)calloc(1, sizeof(MPOOL))) == NULL)
100 mpool_filter(MPOOL *mp, void (*pgin) (void *, pgno_t, void *),
114 MPOOL *m
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/examples_c/
H A Dex_mpool.c29 #define MPOOL "mpool" /* File. */ macro
93 if ((ret = init(MPOOL, pagesize, npages, progname)) != 0)
205 dbenv->err(dbenv, ret, "DB_ENV->memp_fcreate: %s", MPOOL);
208 if ((ret = mfp->open(mfp, MPOOL, 0, 0, pagesize)) != 0) {
209 dbenv->err(dbenv, ret, "DB_MPOOLFILE->open: %s", MPOOL);
/macosx-10.10.1/BerkeleyDB-21/db/examples_cxx/
H A DMpoolExample.cpp26 #define MPOOL "mpool" macro
81 if ((ret = init(MPOOL, pagesize, npages)) != 0)
182 mfp->open(MPOOL, 0, 0, pagesize);
/macosx-10.10.1/BerkeleyDB-21/db/dbinc/
H A Dmp.h21 struct __mpool; typedef struct __mpool MPOOL; typedef in typeref:struct:__mpool
105 MUTEX_LOCK(env, ((MPOOL *) \
108 MUTEX_UNLOCK(env, ((MPOOL *) \
113 MUTEX_LOCK(env, ((MPOOL *)(infop)->primary)->mtx_region)
115 MUTEX_UNLOCK(env, ((MPOOL *)(infop)->primary)->mtx_region)
118 * MPOOL --
238 * bits set. We XOR in the MPOOL offset of the MPOOLFILE that backs the
283 MPOOL *__t_mp; \
300 MPOOL *__t_mp; \
501 SH_TAILQ_ENTRY hq; /* MPOOL has
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/mp/
H A Dmp_method.c73 MPOOL *mp;
194 MPOOL *mp;
233 MPOOL *mp;
267 MPOOL *mp;
300 MPOOL *mp;
332 MPOOL *mp;
370 MPOOL *mp;
404 MPOOL *mp;
438 MPOOL *mp;
477 MPOOL *m
[all...]
H A Dmp_resize.c37 MPOOL *c_mp, *mp;
122 MPOOL *mp, *new_mp, *old_mp;
312 MPOOL *mp;
341 MPOOL *mp;
379 MPOOL *mp;
401 MPOOL *mp;
429 MPOOL *mp;
476 MPOOL *mp;
518 MPOOL *mp;
H A Dmp_trickle.c53 MPOOL *c_mp, *mp;
H A Dmp_region.c14 static int __memp_init_config __P((ENV *, MPOOL *));
30 MPOOL *mp;
168 * Initialize a MPOOL structure in shared memory.
184 MPOOL *mp, *main_mp;
194 if ((ret = __env_alloc(infop, sizeof(MPOOL), &infop->primary)) != 0)
420 MPOOL *mp;
456 MPOOL *mp, *c_mp;
H A Dmp_sync.c32 * PUBLIC: int __memp_walk_files __P((ENV *, MPOOL *,
39 MPOOL *mp;
117 MPOOL *mp;
260 MPOOL *c_mp, *mp;
779 MPOOL *mp;
841 MPOOL *mp;
H A Dmp_fput.c72 MPOOL *c_mp;
273 MPOOL *c_mp;
H A Dmp_stat.c28 __P((ENV *, REGINFO *, MPOOL *, DB_MPOOL_STAT *, u_int32_t));
85 MPOOL *c_mp, *mp;
549 MPOOL *mp;
563 __db_msg(env, "MPOOL structure:");
565 env, "MPOOL region mutex", mp->mtx_region, flags);
702 MPOOL *c_mp;
814 MPOOL *mp;
880 * PUBLIC: void __memp_stat_hash __P((REGINFO *, MPOOL *, u_int32_t *));
885 MPOOL *mp;
H A Dmp_mvcc.c159 MPOOL *c_mp;
397 MPOOL *c_mp;
H A Dmp_alloc.c38 MPOOL *c_mp;
H A Dmp_fopen.c105 MPOOL *mp;
954 MPOOL *mp;
1040 MPOOL *mp;
H A Dmp_bh.c536 MPOOL *c_mp;
546 * Assumes the hash bucket is locked and the MPOOL is not.
H A Dmp_fget.c116 MPOOL *c_mp;
/macosx-10.10.1/BerkeleyDB-21/db/dbinc_auto/
H A Dmp_ext.h80 void __memp_stat_hash __P((REGINFO *, MPOOL *, u_int32_t *));
81 int __memp_walk_files __P((ENV *, MPOOL *, int (*) __P((ENV *, MPOOLFILE *, void *, u_int32_t *, u_int32_t)), void *, u_int32_t *, u_int32_t));
/macosx-10.10.1/Libc-1044.1.2/db/btree/FreeBSD/
H A Dbtree.h302 MPOOL *bt_mp; /* memory pool cookie */

Completed in 113 milliseconds