Searched refs:DB (Results 1 - 25 of 147) sorted by relevance

123456

/freebsd-current/contrib/blocklist/bin/
H A Dstate.h53 DB *state_open(const char *, int, mode_t);
54 int state_close(DB *);
55 int state_get(DB *, const struct conf *, struct dbinfo *);
56 int state_put(DB *, const struct conf *, const struct dbinfo *);
57 int state_del(DB *, const struct conf *);
58 int state_iterate(DB *, struct conf *, struct dbinfo *, unsigned int);
59 int state_sync(DB *);
H A Dstate.c63 state_close(DB *db)
74 DB *
77 DB *db;
114 state_del(DB *db, const struct conf *c)
140 state_get(DB *db, const struct conf *c, struct dbinfo *dbi)
168 state_put(DB *db, const struct conf *c, const struct dbinfo *dbi)
198 state_iterate(DB *db, struct conf *c, struct dbinfo *dbi, unsigned int first)
232 state_sync(DB *db)
/freebsd-current/lib/libc/db/recno/
H A Dextern.h34 int __rec_close(DB *);
35 int __rec_delete(const DB *, const DBT *, u_int);
37 int __rec_fd(const DB *);
41 int __rec_get(const DB *, const DBT *, DBT *, u_int);
43 int __rec_put(const DB *dbp, DBT *, const DBT *, u_int);
46 int __rec_seq(const DB *, DBT *, DBT *, u_int);
47 int __rec_sync(const DB *, u_int);
/freebsd-current/contrib/ncurses/include/
H A Dhashed_db.h61 extern NCURSES_EXPORT(DB *) _nc_db_open(const char * /* path */, bool /* modify */);
64 extern NCURSES_EXPORT(int) _nc_db_close(DB * /* db */);
65 extern NCURSES_EXPORT(int) _nc_db_first(DB * /* db */, DBT * /* key */, DBT * /* data */);
66 extern NCURSES_EXPORT(int) _nc_db_next(DB * /* db */, DBT * /* key */, DBT * /* data */);
67 extern NCURSES_EXPORT(int) _nc_db_get(DB * /* db */, DBT * /* key */, DBT * /* data */);
68 extern NCURSES_EXPORT(int) _nc_db_put(DB * /* db */, DBT * /* key */, DBT * /* data */);
/freebsd-current/usr.bin/fortune/datfiles/
H A DMakefile2 DB= freebsd-tips macro
4 BLDS= ${DB:S/$/.dat/}
5 FILES= ${DB} ${BLDS}
10 .for f in ${DB}
/freebsd-current/lib/libc/db/btree/
H A Dextern.h32 int __bt_close(DB *);
37 int __bt_delete(const DB *, const DBT *, u_int);
39 int __bt_fd(const DB *);
41 int __bt_get(const DB *, const DBT *, DBT *, u_int);
46 int __bt_put(const DB *dbp, DBT *, const DBT *, u_int);
49 int __bt_seq(const DB *, DBT *, DBT *, u_int);
53 int __bt_sync(const DB *, u_int);
60 void __bt_dnpage(DB *, pgno_t);
62 void __bt_dump(DB *);
65 void __bt_stat(DB *);
[all...]
/freebsd-current/crypto/heimdal/lib/kadm5/
H A Dcheck-cracklib.pl64 my %DB;
73 dbmopen(%DB,$historydb,0600) or die "Internal: Could not open $historydb";
74 if (!$DB{$key} || ($timenow - $DB{$key} < $reusetime)) {
76 $DB{$key}=$timenow;
78 dbmclose(%DB) or die "Internal: Could not close $historydb";
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DBDCE.cpp41 static void clearAssumptionsOfUsers(Instruction *I, DemandedBits &DB) { argument
53 !DB.getDemandedBits(J).isAllOnes()) {
84 !DB.getDemandedBits(K).isAllOnes())
90 static bool bitTrackingDCE(Function &F, DemandedBits &DB) { argument
102 if (DB.isInstructionDead(&I) ||
103 (I.getType()->isIntOrIntVectorTy() && DB.getDemandedBits(&I).isZero() &&
112 APInt Demanded = DB.getDemandedBits(SE);
117 clearAssumptionsOfUsers(SE, DB);
136 if (!DB.isUseDead(&U))
141 clearAssumptionsOfUsers(&I, DB);
165 auto &DB = AM.getResult<DemandedBitsAnalysis>(F); local
[all...]
/freebsd-current/usr.sbin/ypserv/
H A Dyp_extern.h76 extern int yp_get_record(DB *, const DBT *, DBT *, int);
80 extern int yp_first_record(const DB *, DBT *, DBT *, int);
81 extern int yp_next_record(const DB *, DBT *, DBT *, int, int);
90 extern DB *yp_open_db(const char *, const char *);
91 extern DB *yp_open_db_cache(const char *, const char *, const char *, int);
/freebsd-current/tools/tools/commitsdb/
H A Dquery_commit_db19 open DB, "< $dbname" or die "$!\n";
21 while (<DB>) {
31 close DB;
47 open DB, "< $dbname" or die "$!\n";
48 while (<DB>) {
56 close DB;
H A Dmake_commit_db11 open DB, "> $dbname" or die "$!\n";
40 print DB "$f $rev $hash\n";
48 close DB;
/freebsd-current/libexec/ypxfr/
H A Dypxfr_extern.h53 extern DB *yp_open_db_rw(const char *, const char *, const int);
55 extern int yp_put_record(DB *, DBT *, DBT *, int);
H A Dyp_dbwrite.c52 * Open a DB database read/write
54 DB *
57 DB *dbp;
91 yp_put_record(DB *dbp, DBT *key, DBT *data, int allow_overwrite)
/freebsd-current/lib/libc/db/test/btree.tests/
H A Dmain.c49 void (*func)(DB *, char **);
54 DB *globaldb;
56 void append(DB *, char **);
57 void bstat(DB *, char **);
58 void cursor(DB *, char **);
59 void delcur(DB *, char **);
60 void delete(DB *, char **);
61 void dump(DB *, char **);
62 void first(DB *, char **);
63 void get(DB *, cha
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/Basic/
H A DPartialDiagnostic.h59 const StreamingDiagnostic &DB = *this; local
60 DB << V;
70 const StreamingDiagnostic &DB = *this; local
71 DB << std::move(V);
144 void Emit(const DiagnosticBuilder &DB) const {
152 DB.AddString(DiagStorage->DiagArgumentsStr[i]);
154 DB.AddTaggedVal(DiagStorage->DiagArgumentsVal[i],
160 DB.AddSourceRange(Range);
164 DB.AddFixItHint(Fix);
171 DiagnosticBuilder DB(Diag
197 operator <<(const DiagnosticBuilder &DB, const PartialDiagnostic &PD) argument
[all...]
H A DDiagnostic.h1346 const StreamingDiagnostic &DB = *this; local
1347 DB << V;
1358 const StreamingDiagnostic &DB = *this; local
1359 DB << std::move(V);
1387 inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB, argument
1389 DB.addFlagValue(V.Val);
1390 return DB;
1393 inline const StreamingDiagnostic &operator<<(const StreamingDiagnostic &DB, argument
1395 DB.AddString(S);
1396 return DB;
1399 operator <<(const StreamingDiagnostic &DB, const char *Str) argument
1406 operator <<(const StreamingDiagnostic &DB, int I) argument
1412 operator <<(const StreamingDiagnostic &DB, long I) argument
1418 operator <<(const StreamingDiagnostic &DB, long long I) argument
1429 operator <<(const StreamingDiagnostic &DB, T I) argument
1434 operator <<(const StreamingDiagnostic &DB, unsigned I) argument
1440 operator <<(const StreamingDiagnostic &DB, unsigned long I) argument
1446 operator <<(const StreamingDiagnostic &DB, unsigned long long I) argument
1452 operator <<(const StreamingDiagnostic &DB, tok::TokenKind I) argument
1458 operator <<(const StreamingDiagnostic &DB, const IdentifierInfo *II) argument
1473 operator <<(const StreamingDiagnostic &DB, T *DC) argument
1479 operator <<(const StreamingDiagnostic &DB, SourceLocation L) argument
1485 operator <<(const StreamingDiagnostic &DB, SourceRange R) argument
1491 operator <<(const StreamingDiagnostic &DB, ArrayRef<SourceRange> Ranges) argument
1498 operator <<(const StreamingDiagnostic &DB, const CharSourceRange &R) argument
1504 operator <<(const StreamingDiagnostic &DB, const FixItHint &Hint) argument
1510 operator <<(const StreamingDiagnostic &DB, ArrayRef<FixItHint> Hints) argument
1518 operator <<(const StreamingDiagnostic &DB, const std::optional<SourceRange> &Opt) argument
1526 operator <<(const StreamingDiagnostic &DB, const std::optional<CharSourceRange> &Opt) argument
1534 operator <<(const StreamingDiagnostic &DB, const std::optional<FixItHint> &Opt) argument
[all...]
/freebsd-current/include/
H A Ddb.h106 } DB; typedef in typeref:struct:__db
206 DB *dbopen(const char *, int, int, DBTYPE, const void *);
210 DB *__bt_open(const char *, int, int, const BTREEINFO *, int);
211 DB *__hash_open(const char *, int, int, const HASHINFO *, int);
212 DB *__rec_open(const char *, int, int, const RECNOINFO *, int);
213 void __dbpanic(DB *dbp);
H A Dndbm.h58 typedef DB DBM;
/freebsd-current/usr.sbin/rpc.ypupdated/
H A Dypupdated_extern.h32 extern int yp_del_record(DB *, DBT *);
H A Dyp_dbdelete.c50 yp_del_record(DB *dbp, DBT *key)
/freebsd-current/usr.bin/finger/
H A Dextern.h37 extern DB *db; /* Database. */
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dhashed_db.c48 DB *db;
63 static DB *
66 DB *result = 0;
80 drop_connection(DB * db)
98 make_connection(DB * db, const char *path, bool modify)
118 NCURSES_EXPORT(DB *)
121 DB *result = 0;
183 _nc_db_close(DB * db)
205 _nc_db_put(DB * db, DBT * key, DBT * data)
224 _nc_db_get(DB * d
[all...]
/freebsd-current/crypto/heimdal/lib/hdb/
H A Ddb.c47 DB *d = (DB*)db->hdb_db;
66 DB *d = (DB*)db->hdb_db;
79 DB *d = (DB*)db->hdb_db;
94 DB *d = (DB*)db->hdb_db;
178 DB *d = (DB*)d
[all...]
/freebsd-current/usr.sbin/sa/
H A Dextern.h68 int db_copy_in(DB **mdb, const char *dbname, const char *name,
70 int db_copy_out(DB *mdb, const char *dbname, const char *name,
72 void db_destroy(DB *db, const char *uname);
/freebsd-current/contrib/nvi/common/
H A Dexf.h18 DB *db; /* File db structure. */
25 DB *log; /* Log db structure. */

Completed in 287 milliseconds

123456