Lines Matching defs:field
102 * Examine a field value (such as a media-/content-type) string and return
1142 /* Size an HTTP header field list item, as separated by a comma.
1145 * of field is shifted to the next non-comma, non-whitespace character.
1148 AP_DECLARE(const char *) ap_size_list_item(const char **field, int *len)
1150 const unsigned char *ptr = (const unsigned char *)*field;
1189 *field = (const char *)ptr;
1193 /* Advance field pointer to the next non-comma, non-white byte */
1198 *field = (const char *)ptr;
1202 /* Retrieve an HTTP header field list item, as separated by a comma,
1206 * field is shifted to the next non-comma, non-whitespace.
1208 AP_DECLARE(char *) ap_get_list_item(apr_pool_t *p, const char **field)
1217 * we can allocate a buffer for the new string and reset the field.
1219 if ((tok_start = ap_size_list_item(field, &tok_len)) == NULL) {
1299 * an HTTP field value list. Returns 1 if found, 0 if not found.
1427 * an HTTP field value list. Returns 1 if found, 0 if not found.
1438 * an HTTP field value list. Returns 1 if found, 0 if not found.
1447 * an HTTP field value list. Returns 1 if found, 0 if not found.