Lines Matching refs:temp_path
31 buffer *temp_path; member
45 p->temp_path = buffer_init(); in INIT_FUNC()
73 buffer_free(p->temp_path); in FREE_FUNC()
241 buffer_copy_string(p->temp_path, pwd->pw_dir); in URIHANDLER_FUNC()
266 buffer_copy_string_buffer(p->temp_path, p->conf.basepath); in URIHANDLER_FUNC()
267 BUFFER_APPEND_SLASH(p->temp_path); in URIHANDLER_FUNC()
269 buffer_append_string_len(p->temp_path, p->username->ptr, 1); in URIHANDLER_FUNC()
270 BUFFER_APPEND_SLASH(p->temp_path); in URIHANDLER_FUNC()
272 buffer_append_string_buffer(p->temp_path, p->username); in URIHANDLER_FUNC()
274 BUFFER_APPEND_SLASH(p->temp_path); in URIHANDLER_FUNC()
275 buffer_append_string_buffer(p->temp_path, p->conf.path); in URIHANDLER_FUNC()
281 ret = stat(p->temp_path->ptr, &st); in URIHANDLER_FUNC()
294 BUFFER_APPEND_SLASH(p->temp_path); in URIHANDLER_FUNC()
303 buffer_append_string(p->temp_path, rel_url + 1); /* skip the / */ in URIHANDLER_FUNC()
305 buffer_copy_string_buffer(con->physical.path, p->temp_path); in URIHANDLER_FUNC()
307 buffer_reset(p->temp_path); in URIHANDLER_FUNC()