Searched refs:DBM (Results 1 - 25 of 32) sorted by relevance

12

/netbsd-6-1-5-RELEASE/usr.sbin/ypserv/common/
H A Dypdb.h60 typedef DB DBM; typedef
63 void ypdb_close(DBM *);
64 int ypdb_delete(DBM *, datum);
65 datum ypdb_fetch(DBM *, datum);
66 datum ypdb_firstkey(DBM *);
67 datum ypdb_nextkey(DBM *);
68 datum ypdb_setkey(DBM *, datum);
69 DBM *ypdb_open(const char *);
70 DBM *ypdb_mktemp(char *);
71 int ypdb_store(DBM *, datu
[all...]
H A Dypdb.c60 static DBM *_ypdb_dbopen(const char *, int, mode_t);
69 * *DBM on success
73 DBM *
101 * *DBM on success; file now exists.
105 DBM *
109 DBM *db = NULL;
144 static DBM *
147 DBM *db;
159 db = (DBM *)dbopen(path, flags, mode, DB_BTREE, (void *)&info);
164 db = (DBM *)dbope
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/compat/include/
H A Dndbm.h46 int dbm_delete(DBM *, datum12);
47 datum12 dbm_fetch(DBM *, datum12);
48 datum12 dbm_firstkey(DBM *);
49 datum12 dbm_nextkey(DBM *);
50 int dbm_store(DBM *, datum12, datum12, int);
/netbsd-6-1-5-RELEASE/include/
H A Dndbm.h67 typedef DB DBM; typedef
73 void dbm_close(DBM *);
74 DBM *dbm_open(const char *, int, mode_t);
75 int dbm_error(DBM *);
76 int dbm_clearerr(DBM *);
78 int dbm_dirfno(DBM *);
81 int dbm_delete(DBM *, datum) __RENAME(__dbm_delete13);
82 datum dbm_fetch(DBM *, datum) __RENAME(__dbm_fetch13);
83 datum dbm_firstkey(DBM *) __RENAME(__dbm_firstkey13);
84 datum dbm_nextkey(DBM *) __RENAM
[all...]
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/src/
H A Dmyndbm.h30 } DBM; typedef in typeref:struct:__anon2858
52 DBM *mydbm_open (char *file, int flags, int mode);
53 void mydbm_close (DBM * db);
54 datum mydbm_fetch (DBM * db, datum key);
55 datum mydbm_firstkey (DBM * db);
56 datum mydbm_nextkey (DBM * db);
57 extern int mydbm_store (DBM *, datum, datum, int);
H A Dmyndbm.c37 DBM *
41 DBM *db;
79 mydbm_close (DBM *db)
99 mydbm_fetch (DBM *db, datum key)
128 mydbm_firstkey (DBM *db)
152 mydbm_nextkey (DBM *db)
176 mydbm_close time. Note: Also differs from DBM in that on duplication,
180 mydbm_store (DBM *db, datum key, datum value, int flags)
207 /* Load a DBM file.
H A Dmodules.c69 DBM *
73 DBM *retval;
91 close_module (DBM *db)
105 my_module (DBM *db, char *mname, enum mtype m_type, char *msg,
745 do_module (DBM *db, char *mname, enum mtype m_type, char *msg,
899 DBM *db;
H A Dcvs.h463 DBM *open_module (void);
592 void close_module (DBM * db);
659 int do_module (DBM * db, char *mname, enum mtype m_type, char *msg,
H A Dmkmodules.c691 DBM *db;
912 DBM *db;
1010 error (1, 0, "DBM creation failed; correct above errors");
H A Dannotate.c137 DBM *db;
H A Dtag.c257 DBM *db;
1437 * in read-write mode and the DBM handle is stored in *IDB.
1455 static int is_in_val_tags (DBM **idb, const char *name)
1457 DBM *db = NULL;
1526 DBM *db;
1589 * Errors may be encountered opening and accessing the DBM file. Write
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dndbm_wrap.h77 typedef struct DBM DBM; typedef in typeref:struct:DBM
82 } DBM;
85 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL dbm_clearerr (DBM*);
86 ROKEN_LIB_FUNCTION void ROKEN_LIB_CALL dbm_close (DBM*);
87 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL dbm_delete (DBM*, datum);
88 ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL dbm_error (DBM*);
89 ROKEN_LIB_FUNCTION datum ROKEN_LIB_CALL dbm_fetch (DBM*, datum);
90 ROKEN_LIB_FUNCTION datum ROKEN_LIB_CALL dbm_firstkey (DBM*);
91 ROKEN_LIB_FUNCTION datum ROKEN_LIB_CALL dbm_nextkey (DBM*);
[all...]
H A Dndbm_wrap.c70 dbm_close (DBM *db)
81 dbm_delete (DBM *db, datum dkey)
93 dbm_fetch (DBM *db, datum dkey)
139 dbm_firstkey (DBM *db)
145 dbm_nextkey (DBM *db)
150 ROKEN_LIB_FUNCTION DBM* ROKEN_LIB_CALL
190 return (DBM*)db;
194 dbm_store (DBM *db, datum dkey, datum dvalue, int flags)
214 dbm_error (DBM *db)
220 dbm_clearerr (DBM *d
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/db/hash/
H A Dndbm.c59 * *DBM on success
62 DBM *
80 return ((DBM *)__hash_open(path, flags, mode, &info, 0));
84 dbm_close(DBM *db)
90 dbm_error(DBM *db)
99 dbm_clearerr(DBM *db)
109 dbm_dirfno(DBM *db)
H A Dndbmdatum.c63 dbm_fetch(DBM *db, datum key)
87 dbm_firstkey(DBM *db)
107 dbm_nextkey(DBM *db)
127 dbm_delete(DBM *db, datum key)
148 dbm_store(DBM *db, datum key, datum data, int flags)
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/otp/
H A Dotp_db.c82 dbm_close ((DBM *)dbm);
94 DBM *dbm = (DBM *)v;
110 DBM *dbm = (DBM *)v;
183 DBM *dbm = (DBM *)v;
/netbsd-6-1-5-RELEASE/usr.sbin/ypserv/ypxfr/
H A Dypxfr.c59 DBM *db;
68 DBM *create_db(char *, char *, char *, size_t);
71 int add_order(DBM *, u_int);
72 int add_master(CLIENT *, char *, char *, DBM *);
73 int add_interdomain(CLIENT *, char *, char *, DBM *);
74 int add_secure(CLIENT *, char *, char *, DBM *);
325 DBM *ldb;
409 DBM *
413 DBM *ldb;
452 add_order(DBM *ld
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/amd/
H A Dinfo_ndbm.c64 search_ndbm(mnt_map *m, DBM *db, char *key, char **val)
85 DBM *db;
116 DBM *db;
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/conf/nfs_prot/
H A Dnfs_prot_ncr2.h286 } DBM; typedef in typeref:struct:__anon1105
301 extern DBM *dbm_open(char *, int, int);
302 extern void dbm_close(DBM *);
310 extern datum dbm_fetch(DBM *, datum);
311 extern datum dbm_firstkey(DBM *);
312 extern datum dbm_nextkey(DBM *);
313 extern int dbm_delete(DBM *, datum);
314 extern int dbm_store(DBM *, datum, datum, int);
/netbsd-6-1-5-RELEASE/usr.sbin/ypserv/makedbm/
H A Dmakedbm.c54 static int add_record(DBM *, const char *, const char *, int);
146 add_record(DBM *db, const char *str1, const char *str2, int check)
195 DBM *db;
232 DBM *new_db;
/netbsd-6-1-5-RELEASE/usr.sbin/ypserv/ypserv/
H A Dypserv_db.c72 DBM *db; /* database */
95 void ypdb_close_db(DBM *);
98 DBM *ypdb_open_db(const char *, const char *, u_int *, struct opt_map **);
99 u_int lookup_host(int, int, DBM *, char *, struct ypresp_val *);
219 ypdb_close_db(DBM *db)
234 DBM *
244 DBM *db;
465 lookup_host(int nametable, int host_lookup, DBM *db, char *keystr,
554 DBM *db;
603 DBM *d
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dsys-types.h220 typedef int DBM; typedef
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/mk-amd-map/
H A Dmk-amd-map.c71 return dbm_store((DBM *) db, key, val, DBM_INSERT);
218 DBM *db = NULL;
/netbsd-6-1-5-RELEASE/usr.sbin/ypserv/mkalias/
H A Dmkalias.c156 DBM *db;
159 DBM *new_db = NULL;
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/util/
H A Ddict_dbm.c7 /* dictionary manager interface to DBM files
17 /* dict_dbm_open() opens the named DBM database and makes it available
70 DBM *dbm; /* open database */
113 * See if this DBM file was written with one null byte appended to key
127 * See if this DBM file was written with no null byte appended to key and
213 msg_fatal("error writing DBM database %s: %m", dict_dbm->dict.name);
263 * See if this DBM file was written with one null byte appended to key
280 * See if this DBM file was written with no null byte appended to key and
404 /* dict_dbm_open - open DBM data base */
410 DBM *db
[all...]

Completed in 166 milliseconds

12