Lines Matching refs:def_patctl
898 static patctl def_patctl; variable
4762 (void)decode_modifiers(argptr, CTX_DEFPAT, &def_patctl, NULL); in process_command()
4763 if (def_patctl.jit == 0 && (def_patctl.control & CTL_JITVERIFY) != 0) in process_command()
4764 def_patctl.jit = 7; in process_command()
4976 memcpy(&pat_patctl, &def_patctl, sizeof(patctl)); in process_pattern()
8178 memset(&def_patctl, 0, sizeof(patctl)); in main()
8179 def_patctl.convert_type = CONVERT_UNSET; in main()
8307 def_patctl.options |= PCRE2_AUTO_CALLOUT; in main()
8310 else if (strcmp(arg, "-ac") == 0) def_patctl.options |= PCRE2_AUTO_CALLOUT; in main()
8311 else if (strcmp(arg, "-b") == 0) def_patctl.control |= CTL_FULLBINCODE; in main()
8312 else if (strcmp(arg, "-d") == 0) def_patctl.control |= CTL_DEBUG; in main()
8314 else if (strcmp(arg, "-i") == 0) def_patctl.control |= CTL_INFO; in main()
8317 if (arg[4] != 0) def_patctl.control |= CTL_JITVERIFY; in main()
8318 def_patctl.jit = 7; /* full & partial */ in main()
8560 !decode_modifiers((uint8_t *)arg_pattern, CTX_DEFPAT, &def_patctl, NULL)) || in main()