Home
last modified time | relevance | path

Searched refs:Invalid (Results 1 – 25 of 793) sorted by relevance

12345678910>>...32

/netbsd-src/crypto/external/bsd/heimdal/dist/lib/hx509/data/
H A Dnist-data23 # 4.1.2 Invalid CA Signature Test2 - Reject - Invalid signature on intermediate certificate
5 # 4.1.3 Invalid EE Signature Test3 - Reject - Invalid signature on end entity certificate
9 # 4.2.1 Invalid CA notBefore Date Test1 - Reject - notBefore date in intermediate certificate is af…
11 # 4.2.2 Invalid EE notBefore Date Test2 - Reject - notBefore date in end entity certificate is afte…
17 # 4.2.5 Invalid CA notAfter Date Test5 - Reject - notAfter date in intermediate certificate is befo…
19 # 4.2.6 Invalid EE notAfter Date Test6 - Reject - notAfter date in end entity certificate is before…
21 # 4.2.7 Invalid pre2000 UTC EE notAfter Date Test7 - Reject - notAfter date in end entity certifica…
25 # 4.3.1 Invalid Name Chaining EE Test1 - Reject - names do not chain
27 # 4.3.2 Invalid Name Chaining Order Test2 - Reject - names do not chain
41 # 4.4.2 Invalid Revoked CA Test2 - Reject - an intermediate certificate has been revoked.
[all …]
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/ntlm/
H A Dntlm_err.et19 error_code INVALID_APOP, "Invalid APOP response"
20 error_code INVALID_CRAM_MD5, "Invalid CRAM-MD5 response"
21 error_code INVALID_DIGEST_MD5, "Invalid DIGEST-MD5 response"
22 error_code INVALID_DIGEST_MD5_RSPAUTH, "Invalid DIGEST-MD5 rspauth"
23 error_code INVALID_CHANNEL_BINDINGS, "Invalid channel bindings"
24 error_code INVALID_MIC, "Invalid MIC"
25 error_code INVALID_SESSIONKEY, "Invalid session key"
34 error_code INVALID_CHALLANGE, "Invalid client challenge"
35 error_code INVALID_LMv1_RESPONSE, "Invalid client LMv1 response"
36 error_code INVALID_NT_RESPONSE, "Invalid client NT response"
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DSourceLocation.cpp211 unsigned FullSourceLoc::getLineNumber(bool *Invalid) const { in getLineNumber()
213 return SrcMgr->getLineNumber(getFileID(), getFileOffset(), Invalid); in getLineNumber()
216 unsigned FullSourceLoc::getColumnNumber(bool *Invalid) const { in getColumnNumber()
218 return SrcMgr->getColumnNumber(getFileID(), getFileOffset(), Invalid); in getColumnNumber()
226 unsigned FullSourceLoc::getExpansionLineNumber(bool *Invalid) const { in getExpansionLineNumber()
228 return SrcMgr->getExpansionLineNumber(*this, Invalid); in getExpansionLineNumber()
231 unsigned FullSourceLoc::getExpansionColumnNumber(bool *Invalid) const { in getExpansionColumnNumber()
233 return SrcMgr->getExpansionColumnNumber(*this, Invalid); in getExpansionColumnNumber()
236 unsigned FullSourceLoc::getSpellingLineNumber(bool *Invalid) const { in getSpellingLineNumber()
238 return SrcMgr->getSpellingLineNumber(*this, Invalid); in getSpellingLineNumber()
[all …]
H A DSourceManager.cpp278 bool Invalid = false; in AddLineNote() local
279 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); in AddLineNote()
280 if (!Entry.isFile() || Invalid) in AddLineNote()
434 bool *Invalid) const { in loadSLocEntry()
437 if (Invalid) in loadSLocEntry()
438 *Invalid = true; in loadSLocEntry()
734 StringRef SourceManager::getBufferData(FileID FID, bool *Invalid) const { in getBufferData()
736 if (Invalid) in getBufferData()
737 *Invalid = !B; in getBufferData()
1086 bool Invalid = false; in isAtStartOfImmediateMacroExpansion() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DFloatingPointMode.h44 Invalid = -1 ///< Denotes invalid value. enumerator
71 Invalid = -1, enumerator
85 DenormalModeKind Output = DenormalModeKind::Invalid;
90 DenormalModeKind Input = DenormalModeKind::Invalid;
98 return DenormalMode(DenormalModeKind::Invalid, DenormalModeKind::Invalid); in getInvalid()
128 return Output != DenormalModeKind::Invalid && in isValid()
129 Input != DenormalModeKind::Invalid; in isValid()
155 .Default(DenormalMode::Invalid); in parseDenormalFPAttributeComponent()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DOwnership.h154 bool Invalid;
157 ActionResult(bool Invalid = false) : Val(PtrTy()), Invalid(Invalid) {}
158 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
159 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
165 bool isInvalid() const { return Invalid; }
166 bool isUsable() const { return !Invalid && Val; }
167 bool isUnset() const { return !Invalid && !Val; }
176 Invalid = false;
192 ActionResult(bool Invalid = false)
193 : PtrWithInvalid(static_cast<uintptr_t>(Invalid)) {}
H A DScopeInfo.h577 unsigned Invalid : 1; variable
582 bool Invalid) in Capture() argument
587 NonODRUsed(false), Invalid(Invalid) {} in Capture()
591 QualType CaptureType, const bool ByCopy, bool Invalid) in Capture() argument
595 Invalid(Invalid) {} in Capture()
602 NonODRUsed(false), Invalid(false) {} in Capture()
616 bool isInvalid() const { return Invalid; } in isInvalid()
688 QualType CaptureType, bool Invalid) { in addCapture() argument
690 EllipsisLoc, CaptureType, Invalid)); in addCapture()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DRawCommentList.cpp73 bool Invalid = false; in commentsStartOnSameColumn() local
74 unsigned C1 = SM.getPresumedColumnNumber(L1, &Invalid); in commentsStartOnSameColumn()
75 if (!Invalid) { in commentsStartOnSameColumn()
76 unsigned C2 = SM.getPresumedColumnNumber(L2, &Invalid); in commentsStartOnSameColumn()
77 return !Invalid && (C1 == C2); in commentsStartOnSameColumn()
131 bool Invalid = false; in RawComment() local
133 SourceMgr.getBufferData(BeginFileID, &Invalid).data(); in RawComment()
135 (!Invalid && !onlyWhitespaceOnLineBefore(Buffer, BeginOffset)); in RawComment()
169 bool Invalid = false; in getRawTextSlow() local
171 &Invalid).data(); in getRawTextSlow()
[all …]
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/kadm5/
H A Dkadm5_err.et25 error_code BAD_MASK, "Invalid field mask for operation"
26 error_code BAD_CLASS, "Invalid number of character classes"
27 error_code BAD_LENGTH, "Invalid password length"
28 error_code BAD_POLICY, "Invalid policy name"
29 error_code BAD_PRINCIPAL, "Invalid principal name."
30 error_code BAD_AUX_ATTR, "Invalid auxillary attributes"
31 error_code BAD_HISTORY, "Invalid password history count"
53 error_code BAD_CLIENT_PARAMS, "Invalid configuration parameter for remote KADM5 client"
54 error_code BAD_SERVER_PARAMS, "Invalid configuration parameter for local KADM5 client."
57 error_code BAD_TL_TYPE, "Invalid tagged data list element type"
/netbsd-src/usr.bin/make/unit-tests/
H A Dvarmod-localtime.exp1 make: "varmod-localtime.mk" line 60: Invalid time value "-1"
3 make: "varmod-localtime.mk" line 70: Invalid time value " 1"
5 make: "varmod-localtime.mk" line 117: Invalid time value "10000000000000000000000000000000"
7 make: "varmod-localtime.mk" line 129: Invalid time value "error"
9 make: "varmod-localtime.mk" line 139: Invalid time value "100000S,1970,bad,"
H A Dvarmod-gmtime.exp1 make: "varmod-gmtime.mk" line 60: Invalid time value "-1"
3 make: "varmod-gmtime.mk" line 70: Invalid time value " 1"
5 make: "varmod-gmtime.mk" line 117: Invalid time value "10000000000000000000000000000000"
7 make: "varmod-gmtime.mk" line 129: Invalid time value "error"
9 make: "varmod-gmtime.mk" line 139: Invalid time value "100000S,1970,bad,"
H A Dvarmod-to-separator.exp1 make: "varmod-to-separator.mk" line 154: Invalid character number at "400:tu}"
3 make: "varmod-to-separator.mk" line 169: Invalid character number at "100:tu}"
5 make: "varmod-to-separator.mk" line 177: Invalid character number at ",}"
7 make: "varmod-to-separator.mk" line 183: Invalid character number at "112233445566778899}"
25 make: "varmod-to-separator.mk" line 263: Invalid character number at "1F60E}"
H A Dparse.exp1 make: "parse.mk" line 7: Invalid line '<<<<<< old'
2 make: "parse.mk" line 14: Invalid line '>>>>>> new'
3 make: "parse.mk" line 25: Invalid line 'one-target ${:U }', expanded to 'one-target '
/netbsd-src/crypto/external/bsd/heimdal/dist/po/heim_com_err43787520/
H A Dheim_com_err43787520.pot90 msgid "Invalid field mask for operation"
95 msgid "Invalid number of character classes"
100 msgid "Invalid password length"
105 msgid "Invalid policy name"
110 msgid "Invalid principal name."
115 msgid "Invalid auxillary attributes"
120 msgid "Invalid password history count"
231 msgid "Invalid configuration parameter for remote KADM5 client"
236 msgid "Invalid configuration parameter for local KADM5 client."
251 msgid "Invalid tagged data list element type"
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DSourceManager.h1057 StringRef getBufferData(FileID FID, bool *Invalid = nullptr) const;
1378 bool *Invalid = nullptr) const;
1387 bool *Invalid = nullptr) const;
1389 bool *Invalid = nullptr) const;
1391 bool *Invalid = nullptr) const;
1393 bool *Invalid = nullptr) const;
1401 unsigned getLineNumber(FileID FID, unsigned FilePos, bool *Invalid = nullptr) const;
1402 unsigned getSpellingLineNumber(SourceLocation Loc, bool *Invalid = nullptr) const;
1403 unsigned getExpansionLineNumber(SourceLocation Loc, bool *Invalid = nullptr) const;
1404 unsigned getPresumedLineNumber(SourceLocation Loc, bool *Invalid = nullptr) const;
[all …]
H A DSourceLocation.h399 unsigned getExpansionLineNumber(bool *Invalid = nullptr) const;
400 unsigned getExpansionColumnNumber(bool *Invalid = nullptr) const;
402 unsigned getSpellingLineNumber(bool *Invalid = nullptr) const;
403 unsigned getSpellingColumnNumber(bool *Invalid = nullptr) const;
405 const char *getCharacterData(bool *Invalid = nullptr) const;
407 unsigned getLineNumber(bool *Invalid = nullptr) const;
408 unsigned getColumnNumber(bool *Invalid = nullptr) const;
414 StringRef getBufferData(bool *Invalid = nullptr) const;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
H A DSourceCode.cpp136 bool Invalid = false; in getEntityEndLoc() local
138 llvm::StringRef File = SM.getBufferData(FileOffset.first, &Invalid); in getEntityEndLoc()
139 assert(!Invalid && "Cannot get file/offset"); in getEntityEndLoc()
289 bool Invalid = false; in atOrBeforeSeparation() local
291 SM.getCharacterData(Loc.getLocWithOffset(-1), &Invalid); in atOrBeforeSeparation()
292 assert(!Invalid && in atOrBeforeSeparation()
373 bool Invalid; in getAssociatedRange() local
375 SM.getBufferData(SM.getFileID(Range.getBegin()), &Invalid); in getAssociatedRange()
376 if (Invalid) in getAssociatedRange()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Edit/
H A DEditedSource.cpp178 bool Invalid = false; in commitInsertFromRange() local
179 StringRef text = getSourceText(BeginOffs, B, Invalid); in commitInsertFromRange()
180 if (Invalid) in commitInsertFromRange()
189 bool Invalid = false; in commitInsertFromRange() local
190 StringRef text = getSourceText(BeginOffs, EndOffs, Invalid); in commitInsertFromRange()
191 if (Invalid) in commitInsertFromRange()
345 bool Invalid = false; in adjustRemoval() local
346 StringRef buffer = SM.getBufferData(offs.getFID(), &Invalid); in adjustRemoval()
347 if (Invalid) in adjustRemoval()
455 bool &Invalid) { in getSourceText() argument
[all …]
/netbsd-src/external/gpl2/dtc/dist/tests/
H A Dbase01.stderr2 Line 26: Invalid cell value '123456789012345'; -1 assumed
3 Line 27: Invalid cell value '891'; 0 assumed
4 Line 28: Invalid cell value '123456123456'; -1 assumed
/netbsd-src/sys/external/bsd/acpica/dist/tests/misc/
H A Dbadcode.asl23 // Invalid SyncLevel in Mutex declaration
39 // Invalid hex escape sequence
65 // Invalid SyncLevel in method declaration
69 // Invalid arguments and uninitialized locals
128 // Invalid _HID values
259 // Invalid AccessSize parameter
267 // Invalid ResourceType (0xB0)
320 // Invalid combination: zero length, both Min and Max are fixed
329 // Invalid combination: non-zero length, Min Fixed, Max not fixed
338 // Invalid combination: non-zero length, Min not Fixed, Max fixed
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/Arch/
H A DSparc.cpp83 sparc::FloatABI ABI = sparc::FloatABI::Invalid; in getSparcFloatABI()
95 .Default(sparc::FloatABI::Invalid); in getSparcFloatABI()
96 if (ABI == sparc::FloatABI::Invalid && in getSparcFloatABI()
109 if (ABI == sparc::FloatABI::Invalid) { in getSparcFloatABI()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DLowLevelTypeImpl.h312 LLT Invalid;
313 Invalid.IsPointer = true;
314 return Invalid;
317 LLT Invalid;
318 Invalid.IsVector = true;
319 return Invalid;
H A DDynamicLibrary.h40 static char Invalid; variable
46 explicit DynamicLibrary(void *data = &Invalid) : Data(data) {} in Data()
49 bool isValid() const { return Data != &Invalid; } in isValid()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DMacroArgs.cpp237 bool Invalid = false; in StringifyArgument() local
238 std::string TokStr = PP.getSpelling(Tok, &Invalid); in StringifyArgument()
239 if (!Invalid) { in StringifyArgument()
251 bool Invalid = false; in StringifyArgument() local
252 unsigned ActualTokLen = PP.getSpelling(Tok, BufPtr, &Invalid); in StringifyArgument()
254 if (!Invalid) { in StringifyArgument()
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dmidna_domain_test.in5 # Invalid LDH label('-' at begin or end).
8 # Invalid LDH (label > 63 bytes).
12 # Invalid name (length > 255 bytes).

12345678910>>...32