Lines Matching refs:data
198 static int mod_authn_file_htdigest_get_loop(const char *data, const buffer *auth_fn, http_auth_info… in mod_authn_file_htdigest_get_loop() argument
199 const char *f_user = data, *n; in mod_authn_file_htdigest_get_loop()
289 char *data = fdevent_load_file(auth_fn->ptr,&dlen,r->conf.errh,malloc,free); in mod_authn_file_htdigest_get() local
290 if (NULL == data) return -1; in mod_authn_file_htdigest_get()
292 int rc = mod_authn_file_htdigest_get_loop(data, auth_fn, ai, r->conf.errh); in mod_authn_file_htdigest_get()
293 ck_memzero(data, (size_t)dlen); in mod_authn_file_htdigest_get()
294 free(data); in mod_authn_file_htdigest_get()
343 char *data = fdevent_load_file(auth_fn->ptr, &dlen, errh, malloc, free); in mod_authn_file_htpasswd_get() local
344 if (NULL == data) return -1; in mod_authn_file_htpasswd_get()
347 const char *f_user = data, *n; in mod_authn_file_htpasswd_get()
392 ck_memzero(data, (size_t)dlen); in mod_authn_file_htpasswd_get()
393 free(data); in mod_authn_file_htpasswd_get()