HomeSort by: relevance | last modified time | path
    Searched defs:dbtype (Results 1 - 2 of 2) sorted by relevancy

  /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 in typeref:typename:DBTYPE
613 setinfo(DBTYPE dtype, char *s)
  /src/usr.bin/db/
db.c 99 DBTYPE dbtype; member in struct:main::__anon00f5e9690208
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 32 milliseconds