Lines Matching defs:it

621 /* We need to do a stable sort, qsort isn't stable.  So to make it stable
622 * we'll be maintaining the original index into the list, and using it
683 * it to avoid trying to palloc zero bytes, which can trigger some
818 * part of the core anyway (and in fact, it isn't publicised to other
942 /* if failed, set it to the NULL string to indicate error */
1043 * address, it will be returned in URL format (e.g., "[fe80::1]").
1137 /* returns a parent if it matches the given directive */
1144 /* ### it would be nice to have atom-ized directives */
1184 /* EXEC_ON_READ must be NOT_IN_DIR_LOC_FILE, if not, it will
1336 /* Use apr_array_copy instead of apr_array_copy_hdr because it does not
1495 /* Make it absolute, relative to ServerRoot */
1548 * convert it into an array index
1571 /* The entry should be ignored if it is a full URL for a 401 error */
1578 else { /* Store it... */
1595 /* hack. Prefix a " if it is a msg; as that is what
2017 * Make sure it's in the 'add' list and absent from the
2150 * is always checked before method handling, so register it.
2258 /* initialize our config and fetch it */
2276 * will always merge it, and it will always sort and merge first.
2339 /* initialize our config and fetch it */
2426 /* initialize our config and fetch it */
2493 /* initialize our config and fetch it */
2578 * Therefore we use s if it is not virtual and ap_server_conf if
2708 you might want to use it to group common definitions and then
2710 personally I'd rather just do it with a macro preprocessor. -djg */
3271 * http_main so it can insert the information in the right place in the
3865 ap_errorlog_format_item *it,
3877 it->func = log_constant_item;
3914 it->arg = apr_pstrdup(p, scratch);
3920 static char *parse_errorlog_item(apr_pool_t *p, ap_errorlog_format_item *it,
3929 it->flags |= AP_ERRORLOG_FLAG_FIELD_SEP;
3931 return parse_errorlog_misc_string(p, it, sa);
3938 it->flags |= AP_ERRORLOG_FLAG_FIELD_SEP;
3941 return parse_errorlog_item(p, it, sa);
3944 it->arg = "%";
3945 it->func = log_constant_item;
3954 it->arg = ap_getword(p, &s, '}');
3958 it->flags |= AP_ERRORLOG_FLAG_REQUIRED;
3962 it->flags |= AP_ERRORLOG_FLAG_NULL_AS_HYPHEN;
3977 it->min_loglevel = i;
3980 it->func = NULL;
3981 it->flags |= AP_ERRORLOG_FLAG_MESSAGE;
3994 it->func = handler->func;
4167 * The AllowOverride of Fileinfo allows webmasters to turn it off
4606 /* We understood the (non-GET) method, but it might not be legal for
4609 it isn't really content (only GET normally returns content).
4684 * It's safe to look a couple bytes into the_request if it exists, as it's
5075 * pull some data from the RNG and discard it. This ensures that the RNG
5079 * XXX: APR should probably have some dedicated API to do this, but it