Lines Matching refs:DBT
59 static int hash_access(HTAB *, ACTION, DBT *, DBT *);
61 static int hash_delete(const DB *, const DBT *, u_int32_t);
63 static int hash_get(const DB *, const DBT *, DBT *, u_int32_t);
64 static int hash_put(const DB *, DBT *, const DBT *, u_int32_t);
66 static int hash_seq(const DB *, DBT *, DBT *, u_int32_t);
516 hash_get(const DB *dbp, const DBT *key, DBT *data, u_int32_t flag) in hash_get()
525 return (hash_access(hashp, HASH_GET, (DBT *)key, data)); in hash_get()
529 hash_put(const DB *dbp, DBT *key, const DBT *data, u_int32_t flag) in hash_put()
543 HASH_PUTNEW : HASH_PUT, (DBT *)key, (DBT *)data)); in hash_put()
547 hash_delete(const DB *dbp, const DBT *key, in hash_delete()
561 return (hash_access(hashp, HASH_DELETE, (DBT *)key, NULL)); in hash_delete()
568 hash_access(HTAB *hashp, ACTION action, DBT *key, DBT *val) in hash_access()
694 hash_seq(const DB *dbp, DBT *key, DBT *data, u_int32_t flag) in hash_seq()