|
struct m0_be_allocator_call_stat | M0_XCA_DOMAIN (be) |
|
M0_INTERNAL void | m0_be_btree_init (struct m0_be_btree *tree, struct m0_be_seg *seg, const struct m0_be_btree_kv_ops *ops) |
|
M0_INTERNAL void | m0_be_btree_fini (struct m0_be_btree *tree) |
|
M0_INTERNAL void | m0_be_btree_create (struct m0_be_btree *tree, struct m0_be_tx *tx, struct m0_be_op *op, const struct m0_fid *btree_fid) |
|
M0_INTERNAL void | m0_be_btree_destroy (struct m0_be_btree *tree, struct m0_be_tx *tx, struct m0_be_op *op) |
|
M0_INTERNAL void | m0_be_btree_truncate (struct m0_be_btree *tree, struct m0_be_tx *tx, struct m0_be_op *op, m0_bcount_t limit) |
|
M0_INTERNAL void | m0_be_btree_create_credit (const struct m0_be_btree *tree, m0_bcount_t nr, struct m0_be_tx_credit *accum) |
|
M0_INTERNAL void | m0_be_btree_destroy_credit (struct m0_be_btree *tree, struct m0_be_tx_credit *accum) |
|
M0_INTERNAL void | m0_be_btree_clear_credit (struct m0_be_btree *tree, struct m0_be_tx_credit *fixed_part, struct m0_be_tx_credit *single_record, m0_bcount_t *records_nr) |
|
M0_INTERNAL void | m0_be_btree_insert_credit (const struct m0_be_btree *tree, m0_bcount_t nr, m0_bcount_t ksize, m0_bcount_t vsize, struct m0_be_tx_credit *accum) |
|
M0_INTERNAL void | m0_be_btree_insert_credit2 (const struct m0_be_btree *tree, m0_bcount_t nr, m0_bcount_t ksize, m0_bcount_t vsize, struct m0_be_tx_credit *accum) |
|
M0_INTERNAL void | m0_be_btree_delete_credit (const struct m0_be_btree *tree, m0_bcount_t nr, m0_bcount_t ksize, m0_bcount_t vsize, struct m0_be_tx_credit *accum) |
|
M0_INTERNAL void | m0_be_btree_update_credit (const struct m0_be_btree *tree, m0_bcount_t nr, m0_bcount_t vsize, struct m0_be_tx_credit *accum) |
|
M0_INTERNAL void | m0_be_btree_update_credit2 (const struct m0_be_btree *tree, m0_bcount_t nr, m0_bcount_t ksize, m0_bcount_t vsize, struct m0_be_tx_credit *accum) |
|
M0_INTERNAL void | m0_be_btree_insert (struct m0_be_btree *tree, struct m0_be_tx *tx, struct m0_be_op *op, const struct m0_buf *key, const struct m0_buf *val) |
|
M0_INTERNAL void | m0_be_btree_save (struct m0_be_btree *tree, struct m0_be_tx *tx, struct m0_be_op *op, const struct m0_buf *key, const struct m0_buf *val, bool overwrite) |
|
M0_INTERNAL void | m0_be_btree_update (struct m0_be_btree *tree, struct m0_be_tx *tx, struct m0_be_op *op, const struct m0_buf *key, const struct m0_buf *val) |
|
M0_INTERNAL void | m0_be_btree_delete (struct m0_be_btree *tree, struct m0_be_tx *tx, struct m0_be_op *op, const struct m0_buf *key) |
|
M0_INTERNAL void | m0_be_btree_lookup (struct m0_be_btree *tree, struct m0_be_op *op, const struct m0_buf *key, struct m0_buf *value) |
|
M0_INTERNAL void | m0_be_btree_lookup_slant (struct m0_be_btree *tree, struct m0_be_op *op, struct m0_buf *key, struct m0_buf *value) |
|
M0_INTERNAL void | m0_be_btree_maxkey (struct m0_be_btree *tree, struct m0_be_op *op, struct m0_buf *out) |
|
M0_INTERNAL void | m0_be_btree_minkey (struct m0_be_btree *tree, struct m0_be_op *op, struct m0_buf *out) |
|
M0_INTERNAL void | m0_be_btree_update_inplace (struct m0_be_btree *tree, struct m0_be_tx *tx, struct m0_be_op *op, const struct m0_buf *key, struct m0_be_btree_anchor *anchor) |
|
M0_INTERNAL void | m0_be_btree_insert_inplace (struct m0_be_btree *tree, struct m0_be_tx *tx, struct m0_be_op *op, const struct m0_buf *key, struct m0_be_btree_anchor *anchor, uint64_t zonemask) |
|
M0_INTERNAL void | m0_be_btree_save_inplace (struct m0_be_btree *tree, struct m0_be_tx *tx, struct m0_be_op *op, const struct m0_buf *key, struct m0_be_btree_anchor *anchor, bool overwrite, uint64_t zonemask) |
|
M0_INTERNAL void | m0_be_btree_lookup_inplace (struct m0_be_btree *tree, struct m0_be_op *op, const struct m0_buf *key, struct m0_be_btree_anchor *anchor) |
|
M0_INTERNAL void | m0_be_btree_release (struct m0_be_tx *tx, struct m0_be_btree_anchor *anchor) |
|
M0_INTERNAL void | m0_be_btree_cursor_init (struct m0_be_btree_cursor *cur, struct m0_be_btree *btree) |
|
M0_INTERNAL void | m0_be_btree_cursor_fini (struct m0_be_btree_cursor *cursor) |
|
M0_INTERNAL void | m0_be_btree_cursor_get (struct m0_be_btree_cursor *cur, const struct m0_buf *key, bool slant) |
|
M0_INTERNAL int | m0_be_btree_cursor_get_sync (struct m0_be_btree_cursor *cur, const struct m0_buf *key, bool slant) |
|
M0_INTERNAL void | m0_be_btree_cursor_next (struct m0_be_btree_cursor *cur) |
|
M0_INTERNAL int | m0_be_btree_cursor_next_sync (struct m0_be_btree_cursor *cur) |
|
M0_INTERNAL void | m0_be_btree_cursor_prev (struct m0_be_btree_cursor *cur) |
|
M0_INTERNAL int | m0_be_btree_cursor_prev_sync (struct m0_be_btree_cursor *cur) |
|
M0_INTERNAL int | m0_be_btree_cursor_first_sync (struct m0_be_btree_cursor *cur) |
|
M0_INTERNAL int | m0_be_btree_cursor_last_sync (struct m0_be_btree_cursor *cur) |
|
M0_INTERNAL void | m0_be_btree_cursor_put (struct m0_be_btree_cursor *cursor) |
|
M0_INTERNAL void | m0_be_btree_cursor_kv_get (struct m0_be_btree_cursor *cur, struct m0_buf *key, struct m0_buf *val) |
|
M0_INTERNAL bool | m0_be_btree_is_empty (struct m0_be_btree *tree) |
|