Lines Matching refs:where
59 * structures passed to them where necessary to call other Apache API
68 * - Places where it used to print results to stdout now saves them in a
69 * list where they're used to set the MIME type in the Apache request
456 const char *magicfile; /* where magic be found */
2181 * where we would end up with LOTS of zombies.
2265 static long from_oct(int digs, char *where)
2269 while (apr_isspace(*where)) { /* Skip spaces */
2270 where++;
2275 while (digs > 0 && isodigit(*where)) { /* Scan til nonoctal */
2276 value = (value << 3) | (*where++ - '0');
2280 if (digs > 0 && *where && !apr_isspace(*where))