Lines Matching refs:detail
804 struct http_resource_detail *detail; in handle_http1_request() local
862 detail = get_resource_detail(client->url_buffer, in handle_http1_request()
864 if (detail == NULL) { in handle_http1_request()
868 client->current_detail = detail; in handle_http1_request()
902 detail = get_resource_detail(client->url_buffer, &path_len, false); in handle_http1_request()
903 if (detail != NULL) { in handle_http1_request()
904 detail->path_len = path_len; in handle_http1_request()
906 if (detail->type == HTTP_RESOURCE_TYPE_STATIC) { in handle_http1_request()
908 (struct http_resource_detail_static *)detail, in handle_http1_request()
914 } else if (detail->type == HTTP_RESOURCE_TYPE_STATIC_FS) { in handle_http1_request()
916 (struct http_resource_detail_static_fs *)detail, client); in handle_http1_request()
921 } else if (detail->type == HTTP_RESOURCE_TYPE_DYNAMIC) { in handle_http1_request()
923 (struct http_resource_detail_dynamic *)detail, in handle_http1_request()