Lines Matching refs:ds
160 data_string *ds; in http_response_parse_range() local
173 if (NULL != (ds = (data_string *)array_get_element(con->response.headers, "Content-Type"))) { in http_response_parse_range()
174 content_type = ds->value; in http_response_parse_range()
362 data_string *ds; in URIHANDLER_FUNC() local
394 ds = (data_string *)p->conf.exclude_ext->data[k]; in URIHANDLER_FUNC()
396 if (ds->value->used == 0) continue; in URIHANDLER_FUNC()
398 if (buffer_is_equal_right_len(con->physical.path, ds->value, ds->value->used - 1)) { in URIHANDLER_FUNC()
482 if (NULL == (ds = (data_string *)array_get_element(con->response.headers, "Last-Modified"))) { in URIHANDLER_FUNC()
486 mtime = ds->value; in URIHANDLER_FUNC()
498 if (NULL != (ds = (data_string *)array_get_element(con->request.headers, "If-Range"))) { in URIHANDLER_FUNC()
502 if (ds->value->ptr[0] == '"') { in URIHANDLER_FUNC()
508 } else if (!buffer_is_equal(ds->value, con->physical.etag)) { in URIHANDLER_FUNC()
518 } else if (!buffer_is_equal(ds->value, mtime)) { in URIHANDLER_FUNC()