Lines Matching refs:pc
2488 * in English where the given (pc) directive can be used.
2490 static void show_overrides(const command_rec *pc, module *pm)
2495 if ((pc->req_override & (OR_OPTIONS | OR_FILEINFO | OR_INDEXES))
2496 || ((pc->req_override & RSRC_CONF)
2497 && ((pc->req_override & (ACCESS_CONF | OR_AUTHCFG | OR_LIMIT))))) {
2500 else if (pc->req_override & RSRC_CONF) {
2510 if ((pc->req_override & (OR_ALL | ACCESS_CONF)) && !pm->create_dir_config)
2513 if (pc->req_override & OR_ALL) {
2516 if ((pc->req_override & OR_ALL) == OR_ALL) {
2522 if (pc->req_override & OR_AUTHCFG) {
2529 if (pc->req_override & OR_LIMIT) {
2536 if (pc->req_override & OR_OPTIONS) {
2543 if (pc->req_override & OR_FILEINFO) {
2550 if (pc->req_override & OR_INDEXES) {
2568 const command_rec *pc;
2572 for (pc = ap_loaded_modules[n]->cmds; pc && pc->name; ++pc) {
2573 printf("%s (%s)\n", pc->name, ap_loaded_modules[n]->name);
2575 if (pc->errmsg)
2576 printf("\t%s\n", pc->errmsg);
2578 show_overrides(pc, ap_loaded_modules[n]);