Lines Matching refs:dbm_file
41 static DBM *dbm_file = NULL; variable
56 if (dbm_file) in init()
59 if (!(dbm_file = dbm_open((char*) DATABASE_FILE, O_RDONLY, 0))) in init()
86 data = dbm_fetch(dbm_file, key); in stdb_lookup()
102 data = dbm_fetch(dbm_file, key); in stdb_lookup()
116 data = dbm_fetch(dbm_file, key); in stdb_lookup()
130 data = dbm_fetch(dbm_file, key); in stdb_lookup()
156 if (dbm_file) in stdb_shutdown()
157 dbm_close(dbm_file); in stdb_shutdown()
159 dbm_file = NULL; in stdb_shutdown()
181 key = dbm_firstkey(dbm_file); in stdb_getent()
191 key = dbm_nextkey(dbm_file); in stdb_getent()