HomeSort by: relevance | last modified time | path
    Searched refs:DBTYPE (Results 1 - 4 of 4) sorted by relevancy

  /src/include/
db.h 89 typedef enum { DB_BTREE, DB_HASH, DB_RECNO } DBTYPE;
116 DBTYPE type; /* Underlying db type. */
230 DB *dbopen(const char *, int, mode_t, DBTYPE, const void *);
  /src/lib/libc/db/db/
db.c 59 dbopen(const char *fname, int flags, mode_t mode, DBTYPE type,
  /src/tests/lib/libc/db/
h_db.c 65 static DBTYPE dbtype(const char *);
76 static void *setinfo(DBTYPE, char *);
89 static DBTYPE type; /* Database type. */
146 type = dbtype(*argv++);
599 static DBTYPE
600 dbtype(const char *s) function
613 setinfo(DBTYPE dtype, char *s)
  /src/usr.bin/db/
db.c 99 DBTYPE dbtype; member in struct:__anon8233
296 oi.dbtype = DB_BTREE;
306 oi.dbtype = DB_HASH;
320 db = dbopen(oi.file, oi.dbflags, oi.mode, oi.dbtype, oi.info);
348 else if (DB_BTREE == oi.dbtype)
350 else if (DB_HASH == oi.dbtype)
353 errx(5, "internal error: unsupported dbtype %d",
354 oi.dbtype);

Completed in 38 milliseconds