Lines Matching defs:file
2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
24 ** This implementation uses a SDBM database per file and directory to
26 ** the directory in question or the directory that holds the file in
49 apr_dbm_t *file;
104 (void) apr_dbm_geterror(db->file, &errcode, errbuf, sizeof(errbuf));
131 apr_dbm_t *file = NULL;
135 if ((status = apr_dbm_open(&file, pathname,
142 /* we can't continue if we couldn't open the file
148 if (file != NULL) {
152 (*pdb)->file = file;
189 apr_dbm_close(db->file);
201 status = apr_dbm_fetch(db->file, key, pvalue);
209 apr_status_t status = apr_dbm_store(db->file, key, value);
216 apr_status_t status = apr_dbm_delete(db->file, key);
223 return apr_dbm_exists(db->file, key);
228 apr_status_t status = apr_dbm_firstkey(db->file, pkey);
235 apr_status_t status = apr_dbm_nextkey(db->file, pkey);
242 apr_dbm_freedatum(db->file, data);