Searched refs:bt_pinned (Results 1 – 13 of 13) sorted by relevance
/freebsd/lib/libc/db/btree/ |
H A D | bt_close.c | 68 if (t->bt_pinned != NULL) { in __bt_close() 69 mpool_put(t->bt_mp, t->bt_pinned, 0); in __bt_close() 70 t->bt_pinned = NULL; in __bt_close() 122 if (t->bt_pinned != NULL) { in __bt_sync() 123 mpool_put(t->bt_mp, t->bt_pinned, 0); in __bt_sync() 124 t->bt_pinned = NULL; in __bt_sync()
|
H A D | bt_get.c | 66 if (t->bt_pinned != NULL) { in __bt_get() 67 mpool_put(t->bt_mp, t->bt_pinned, 0); in __bt_get() 68 t->bt_pinned = NULL; in __bt_get() 93 t->bt_pinned = e->page; in __bt_get()
|
H A D | bt_seq.c | 80 if (t->bt_pinned != NULL) { in __bt_seq() 81 mpool_put(t->bt_mp, t->bt_pinned, 0); in __bt_seq() 82 t->bt_pinned = NULL; in __bt_seq() 121 t->bt_pinned = e.page; in __bt_seq()
|
H A D | bt_put.c | 76 if (t->bt_pinned != NULL) { in __bt_put() 77 mpool_put(t->bt_mp, t->bt_pinned, 0); in __bt_put() 78 t->bt_pinned = NULL; in __bt_put()
|
H A D | bt_open.c | 433 if (t->bt_pinned != NULL) { in __bt_fd() 434 mpool_put(t->bt_mp, t->bt_pinned, 0); in __bt_fd() 435 t->bt_pinned = NULL; in __bt_fd()
|
H A D | bt_delete.c | 67 if (t->bt_pinned != NULL) { in __bt_delete() 68 mpool_put(t->bt_mp, t->bt_pinned, 0); in __bt_delete() 69 t->bt_pinned = NULL; in __bt_delete()
|
H A D | btree.h | 306 PAGE *bt_pinned; /* page pinned across calls */ member
|
/freebsd/lib/libc/db/recno/ |
H A D | rec_close.c | 64 if (t->bt_pinned != NULL) { in __rec_close() 65 mpool_put(t->bt_mp, t->bt_pinned, 0); in __rec_close() 66 t->bt_pinned = NULL; in __rec_close() 115 if (t->bt_pinned != NULL) { in __rec_sync() 116 mpool_put(t->bt_mp, t->bt_pinned, 0); in __rec_sync() 117 t->bt_pinned = NULL; in __rec_sync()
|
H A D | rec_seq.c | 65 if (t->bt_pinned != NULL) { in __rec_seq() 66 mpool_put(t->bt_mp, t->bt_pinned, 0); in __rec_seq() 67 t->bt_pinned = NULL; in __rec_seq() 120 t->bt_pinned = e->page; in __rec_seq()
|
H A D | rec_delete.c | 67 if (t->bt_pinned != NULL) { in __rec_delete() 68 mpool_put(t->bt_mp, t->bt_pinned, 0); in __rec_delete() 69 t->bt_pinned = NULL; in __rec_delete()
|
H A D | rec_get.c | 67 if (t->bt_pinned != NULL) { in __rec_get() 68 mpool_put(t->bt_mp, t->bt_pinned, 0); in __rec_get() 69 t->bt_pinned = NULL; in __rec_get() 97 t->bt_pinned = e->page; in __rec_get()
|
H A D | rec_open.c | 223 if (t->bt_pinned != NULL) { in __rec_fd() 224 mpool_put(t->bt_mp, t->bt_pinned, 0); in __rec_fd() 225 t->bt_pinned = NULL; in __rec_fd()
|
H A D | rec_put.c | 66 if (t->bt_pinned != NULL) { in __rec_put() 67 mpool_put(t->bt_mp, t->bt_pinned, 0); in __rec_put() 68 t->bt_pinned = NULL; in __rec_put()
|