Searched refs:dbm_file (Results 1 - 3 of 3) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gdbm-1.8.3/
H A Dtestndbm.c75 DBM *dbm_file; local
100 dbm_file = dbm_open (file_name, O_RDWR|O_CREAT, 00664);
101 if (dbm_file == NULL)
126 return_data = dbm_fetch (dbm_file, key_data);
141 if (dbm_store (dbm_file, key_data, data_data, DBM_REPLACE) != 0)
151 if (dbm_delete (dbm_file, key_data) != 0)
157 key_data = dbm_firstkey (dbm_file);
160 return_data = dbm_fetch (dbm_file, key_data);
170 key_data = dbm_nextkey (dbm_file);
173 return_data = dbm_fetch (dbm_file, key_dat
[all...]
H A Dconv2gdbm.c66 char *dbm_file, *gdbm_file; /* pointers to the file names. */ local
102 dbm_file = argv[optind];
118 if (dbminit (dbm_file) != 0)
139 printf ("%s: Converting %s.pag and %s.dir to %s.\n", argv[0], dbm_file,
140 dbm_file, gdbm_file);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/avahi-0.6.25/avahi-utils/
H A Dstdb.c43 static DBM *dbm_file = NULL; variable
58 if (dbm_file)
61 if (!(dbm_file = dbm_open((char*) DATABASE_FILE, O_RDONLY, 0)))
88 data = dbm_fetch(dbm_file, key);
104 data = dbm_fetch(dbm_file, key);
118 data = dbm_fetch(dbm_file, key);
132 data = dbm_fetch(dbm_file, key);
158 if (dbm_file)
159 dbm_close(dbm_file);
161 dbm_file
[all...]

Completed in 84 milliseconds