Lines Matching defs:part
558 * these are part of the core server config.
818 * part of the core anyway (and in fact, it isn't publicised to other
2840 const char *portstr, *part;
2852 part = ap_strstr_c(arg, "://");
2854 if (part) {
2855 scheme = apr_pstrndup(cmd->pool, arg, part - arg);
2858 part += 3;
2860 part = arg;
2863 portstr = ap_strchr_c(part, ':');
2865 cmd->server->server_hostname = apr_pstrndup(cmd->pool, part,
2866 portstr - part);
2876 cmd->server->server_hostname = apr_pstrdup(cmd->pool, part);
4294 /* TODO: RlimitFoo should all be part of mod_cgi, not in the core */