Lines Matching defs:string
18 * util.c: string utility things
102 * Examine a field value (such as a media-/content-type) string and return
137 * on hosts that do not have a time zone string in struct tm,
327 /* second string ended, a match */
371 * input should be the string with the $-expressions, source should be the
372 * string that was matched against.
374 * It returns the substituted string, or NULL if a vbuf is used.
375 * On errors, returns the orig string.
443 /* Now actually fill in the string */
977 /* If a "get string" function is defined, use it */
1026 /* No "get string" function defined; read character by character */
1144 * within the original string (or NULL if there is none) and the address
1174 case '"' : if (!in_com) /* quoted string delim */
1204 * a quoted string or comment. The return value is a new string containing
1217 * we can allocate a buffer for the new string and reset the field.
1227 * quoted-string or quoted-pair.
1301 * an array of list items as they are received instead of a plain string.
1352 * quoted-string or quoted-pair.
1429 * an array of list items as they are received instead of a plain string.
2020 /* Compute the length of the input string, including NULL */
2312 decoded[l] = '\0'; /* make binary sequence into string */
2317 AP_DECLARE(char *) ap_pbase64encode(apr_pool_t *p, char *string)
2320 int l = strlen(string);
2323 l = apr_base64_encode(encoded, string, l);
2324 encoded[l] = '\0'; /* make binary sequence into string */
2353 * Given a string, replace any bare " with \" .
2362 * Look through the input string, jogging the length of the output
2363 * string up by an extra byte each time we find an unescaped ".
2371 * If we find a slosh, and it's not the last byte in the string,
2384 * Now copy the input string to the output string, inserting a slosh
2404 * Given a string, append the PID deliminated by delim.
2409 AP_DECLARE(char *) ap_append_pid(apr_pool_t *p, const char *string,
2412 return apr_psprintf(p, "%s%s%" APR_PID_T_FMT, string,
2418 * Parse a given timeout parameter string into an apr_interval_time_t value.
2419 * The unit of the time interval is given as postfix string to the numeric
2420 * string. Currently the following units are understood:
2429 * @param timeout_parameter The string containing the timeout parameter.