Home
last modified time | relevance | path

Searched refs:validator (Results 1 – 21 of 21) sorted by relevance

/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DOptionValueString.h28 OptionValueString(ValidatorCallback validator, void *baton = nullptr)
29 : m_validator(validator), m_validator_baton(baton) {} in m_validator() argument
45 OptionValueString(const char *value, ValidatorCallback validator,
47 : m_validator(validator), m_validator_baton(baton) { in m_validator() argument
55 ValidatorCallback validator, void *baton = nullptr)
56 : m_validator(validator), m_validator_baton(baton) { in m_validator() argument
117 void SetValidator(ValidatorCallback validator, void *baton = nullptr) {
118 m_validator = validator;
/openbsd-src/usr.sbin/unbound/
H A DMakefile.in135 validator/autotrust.c validator/val_anchor.c validator/validator.c \
136 validator/val_kcache.c validator/val_kentry.c validator/val_neg.c \
137 validator/val_nsec3.c validator/val_nsec.c validator/val_secalg
[all...]
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DOptionGroupPythonClassWithDict.cpp40 m_option_definition[0].validator = nullptr; in OptionGroupPythonClassWithDict()
51 m_option_definition[1].validator = nullptr; in OptionGroupPythonClassWithDict()
62 m_option_definition[2].validator = nullptr; in OptionGroupPythonClassWithDict()
73 m_option_definition[3].validator = nullptr; in OptionGroupPythonClassWithDict()
H A DOptionGroupFile.cpp25 m_option_definition.validator = nullptr; in OptionGroupFile()
54 m_option_definition.validator = nullptr; in OptionGroupFileList()
H A DOptionGroupString.cpp27 m_option_definition.validator = nullptr; in OptionGroupString()
H A DOptionGroupUInt64.cpp27 m_option_definition.validator = nullptr; in OptionGroupUInt64()
H A DOptionGroupBoolean.cpp26 m_option_definition.validator = nullptr; in OptionGroupBoolean()
H A DOptions.cpp274 if (option_def.validator) { in OutputFormattedUsageText()
275 const char *condition = option_def.validator->ShortConditionString(); in OutputFormattedUsageText()
1307 OptionValidator *validator = def->validator; in Parse() local
1323 if (validator && !validator->IsValid(*platform_sp, *exe_ctx_p)) { in Parse()
1327 def->validator->LongConditionString()); in Parse()
/openbsd-src/sbin/unwind/libunbound/validator/
H A DMakefile.inc3 .PATH: ${.CURDIR}/libunbound/validator
7 validator.c
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DOptionsBase.td47 // Field: validator
48 // Default value: 0 (No validator for option)
50 // - `Validator`: Sets the value to a given validator (which has to exist in
173 // Sets the validator for a given option.
174 class Validator<string validator> {
175 string Validator = validator;
H A DCommandOptionArgumentTable.cpp311 TableValidator<0> validator; variable
/openbsd-src/usr.sbin/unbound/doc/
H A DREADME.DNS6410 module-config: "dns64 validator iterator"
12 If you're not using DNSSEC then you may remove "validator".
H A DTODO18 o Treat YXDOMAIN from a DNAME properly, in iterator (not throwaway), validator.
38 o memcached module that sits before validator module; checks for memcached
H A Drequirements.txt66 o Elegant design of validator, resolver, cache modules.
131 validator failure (SERVFAIL again), when the query is validated later on.
136 the validator if the parent is signed, and result in 900 seconds bogus.
138 before the validator will properly verify the messages.
H A Dexample.conf.in628 # separated by spaces. Syntax: "[dns64] [validator] iterator"
632 # module-config: "validator iterator"
689 # The maximum number the validator should restart validation with
694 # unsecure data. Useful to shield the users of this validator from
747 # Have the validator log failed validations for your diagnosis.
1353 # to the module-config, e.g.: module-config: "respip validator iterator".
H A DChangelog114 - Fix shadowed error string variable in validator dnskey handling.
437 - Fix validator classification of qtype DNAME for positive and
438 redirection answers, and fix validator signature routine for dealing
1565 - For #602: Allow the module-config "subnetcache validator cachedb
1584 'respip dns64 validator iterator' is not known to work.
1625 - Fix validator debug output about DS support, print correct algorithm.
2804 dns64 subnetcache respip validator iterator is whitelisted, it was
3185 - Fix Useless memset() in validator, reported by X41 D-Sec.
5073 - Fix #1267: Libunbound validator/val_secalgo.c uses obsolete APIs,
5619 dereference in validator/autotrus
[all...]
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DOptionDefinition.h37 OptionValidator *validator; member
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DDiagnosticDriverKinds.td702 "invalid validator version : %0\n"
705 "invalid validator version : %0\n"
706 "Format of validator version is \"<major>.<minor>\" (ex:\"1.4\").">;
708 "invalid validator version : %0\n"
709 "If validator major version is 0, minor version must also be 0.">;
/openbsd-src/gnu/llvm/llvm/docs/
H A DLibFuzzer.rst750 * If the test inputs are validated by the target library and the validator
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReader.cpp5503 SimplePCHValidator validator(LangOpts, TargetOpts, PPOpts, in isAcceptableASTFile() local
5508 /*FindModuleFileExtensions=*/false, validator, in isAcceptableASTFile()
/openbsd-src/gnu/llvm/clang/include/clang/Driver/
H A DOptions.td7099 def dxil_validator_version : Option<["/", "-"], "validator-version", KIND_SEPARATE>,
7101 HelpText<"Override validator version for module. Format: <major.minor>;"