Searched defs:cfp (Results 1 - 5 of 5) sorted by relevance
/httpd/modules/metadata/ |
H A D | mod_remoteip.c | 188 ap_configfile_t *cfp; local 192 rv = ap_pcfg_openfile(&cfp, cmd->temp_pool, filename); 198 while (!(ap_cfg_getline(lbuf, MAX_STRING_LEN, cfp))) { 206 ap_cfg_closefile(cfp); 208 errmsg, cfp->line_number, filename); 214 ap_cfg_closefile(cfp);
|
/httpd/include/ |
H A D | http_config.h | 802 * @param cfp File to read from 805 AP_DECLARE(apr_status_t) ap_cfg_getline(char *buf, apr_size_t bufsize, ap_configfile_t *cfp); 810 * @param cfp The file to read from 813 AP_DECLARE(apr_status_t) ap_cfg_getc(char *ch, ap_configfile_t *cfp); 817 * @param cfp The file to close 820 AP_DECLARE(int) ap_cfg_closefile(ap_configfile_t *cfp); variable 826 * @param cfp The config file 830 AP_DECLARE(const char *) ap_pcfg_strerror(apr_pool_t *p, ap_configfile_t *cfp,
|
/httpd/modules/lua/ |
H A D | mod_lua.c | 900 ap_configfile_t *cfp; member in struct:cr_ctx 929 *plen = config_getstr(ctx->cfp, ctx->buf, HUGE_STRING_LEN); 1056 ctx.cfp = cmd->config_file;
|
/httpd/server/ |
H A D | config.c | 1790 ap_configfile_t *cfp; local 1802 rv = ap_pcfg_openfile(&cfp, p, fname); 1808 parms.config_file = cfp; 1810 ap_cfg_closefile(cfp);
|
H A D | util.c | 825 AP_DECLARE(int) ap_cfg_closefile(ap_configfile_t *cfp) argument 829 "Done with config file %s", cfp->name); 831 return (cfp->close == NULL) ? 0 : cfp->close(cfp->param); 949 AP_DECLARE(apr_status_t) ap_cfg_getc(char *ch, ap_configfile_t *cfp) 951 apr_status_t rc = cfp->getch(ch, cfp->param); 953 ++cfp->line_number; 957 AP_DECLARE(const char *) ap_pcfg_strerror(apr_pool_t *p, ap_configfile_t *cfp, argument 973 ap_cfg_getline_core(char *buf, apr_size_t bufsize, apr_size_t offset, ap_configfile_t *cfp) argument [all...] |
Completed in 550 milliseconds