Home
last modified time | relevance | path

Searched refs:OtherName (Results 1 – 20 of 20) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
DOtherName.java21 public class OtherName class
38 public static OtherName getInstance( in getInstance()
42 if (obj instanceof OtherName) in getInstance()
44 return (OtherName)obj; in getInstance()
48 return new OtherName(ASN1Sequence.getInstance(obj)); in getInstance()
59 public OtherName( in OtherName() method in OtherName
67 private OtherName(ASN1Sequence seq) in OtherName() method in OtherName
DPKIXNameConstraintValidator.java67 … checkPermittedOtherName(permittedSubtreesOtherName, OtherName.getInstance(name.getName())); in checkPermitted()
102 … checkExcludedOtherName(excludedSubtreesOtherName, OtherName.getInstance(name.getName())); in checkExcluded()
229 OtherName.getInstance(base.getName())); in addExcludedSubtree()
507OtherName otName1 = OtherName.getInstance(((GeneralSubtree)it.next()).getBase().getName()); in intersectOtherName()
521 OtherName otName2 = OtherName.getInstance(it2.next()); in intersectOtherName()
530 private void intersectOtherName(OtherName otName1, OtherName otName2, Set intersect) in intersectOtherName()
538 private Set unionOtherName(Set permitted, OtherName otherName) in unionOtherName()
847 private void checkPermittedOtherName(Set permitted, OtherName name) in checkPermittedOtherName()
859 OtherName str = OtherName.getInstance(it.next()); in checkPermittedOtherName()
871 private void checkExcludedOtherName(Set excluded, OtherName name) in checkExcludedOtherName()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/
DOtherName.java23 public class OtherName class
40 public static OtherName getInstance( in getInstance()
44 if (obj instanceof OtherName) in getInstance()
46 return (OtherName)obj; in getInstance()
50 return new OtherName(ASN1Sequence.getInstance(obj)); in getInstance()
61 public OtherName( in OtherName() method in OtherName
69 private OtherName(ASN1Sequence seq) in OtherName() method in OtherName
DPKIXNameConstraintValidator.java71 … checkPermittedOtherName(permittedSubtreesOtherName, OtherName.getInstance(name.getName())); in checkPermitted()
106 … checkExcludedOtherName(excludedSubtreesOtherName, OtherName.getInstance(name.getName())); in checkExcluded()
233 OtherName.getInstance(base.getName())); in addExcludedSubtree()
511OtherName otName1 = OtherName.getInstance(((GeneralSubtree)it.next()).getBase().getName()); in intersectOtherName()
525 OtherName otName2 = OtherName.getInstance(it2.next()); in intersectOtherName()
534 private void intersectOtherName(OtherName otName1, OtherName otName2, Set intersect) in intersectOtherName()
542 private Set unionOtherName(Set permitted, OtherName otherName) in unionOtherName()
851 private void checkPermittedOtherName(Set permitted, OtherName name) in checkPermittedOtherName()
863 OtherName str = OtherName.getInstance(it.next()); in checkPermittedOtherName()
875 private void checkExcludedOtherName(Set excluded, OtherName name) in checkExcludedOtherName()
[all …]
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/x509/
DOtherName.java23 public class OtherName class
40 public static OtherName getInstance( in getInstance()
44 if (obj instanceof OtherName) in getInstance()
46 return (OtherName)obj; in getInstance()
50 return new OtherName(ASN1Sequence.getInstance(obj)); in getInstance()
61 public OtherName( in OtherName() method in OtherName
69 private OtherName(ASN1Sequence seq) in OtherName() method in OtherName
DPKIXNameConstraintValidator.java71 … checkPermittedOtherName(permittedSubtreesOtherName, OtherName.getInstance(name.getName())); in checkPermitted()
106 … checkExcludedOtherName(excludedSubtreesOtherName, OtherName.getInstance(name.getName())); in checkExcluded()
233 OtherName.getInstance(base.getName())); in addExcludedSubtree()
511OtherName otName1 = OtherName.getInstance(((GeneralSubtree)it.next()).getBase().getName()); in intersectOtherName()
525 OtherName otName2 = OtherName.getInstance(it2.next()); in intersectOtherName()
534 private void intersectOtherName(OtherName otName1, OtherName otName2, Set intersect) in intersectOtherName()
542 private Set unionOtherName(Set permitted, OtherName otherName) in unionOtherName()
851 private void checkPermittedOtherName(Set permitted, OtherName name) in checkPermittedOtherName()
863 OtherName str = OtherName.getInstance(it.next()); in checkPermittedOtherName()
875 private void checkExcludedOtherName(Set excluded, OtherName name) in checkExcludedOtherName()
[all …]
/external/llvm-project/clang-tools-extra/clang-tidy/readability/
DInconsistentDeclarationParameterNameCheck.cpp37 DifferingParamInfo(StringRef SourceName, StringRef OtherName, in DifferingParamInfo()
39 : SourceName(SourceName), OtherName(OtherName), in DifferingParamInfo()
43 StringRef OtherName; member
216 return ParamInfo.OtherName; in formatDifferingParamsDiagnostic()
/external/python/cryptography/src/cryptography/x509/
Dgeneral_name.py333 class OtherName(object): class
351 if not isinstance(other, OtherName):
D__init__.py31 DNSName, DirectoryName, GeneralName, IPAddress, OtherName, RFC822Name,
Dextensions.py24 from cryptography.x509.general_name import GeneralName, IPAddress, OtherName
1190 if type != OtherName:
/external/googletest/googletest/test/
Dgoogletest-param-test-test.cc1089 using OtherName = NotInstantiatedTest; typedef
1090 GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(OtherName);
1091 TEST_P(OtherName, Used) { } in TEST_P() argument
/external/python/cryptography/tests/x509/
Dtest_x509_ext.py1965 x509.OtherName(b"notanobjectidentifier", b"derdata")
1968 x509.OtherName(x509.ObjectIdentifier("1.2.3.4"), u"notderdata")
1971 gn = x509.OtherName(x509.ObjectIdentifier("1.2.3.4"), b"derdata")
1983 gn = x509.OtherName(x509.ObjectIdentifier("2.5.4.65"), b"derdata")
1996 gn = x509.OtherName(x509.ObjectIdentifier("1.2.3.4"), b"derdata")
1997 gn2 = x509.OtherName(x509.ObjectIdentifier("1.2.3.4"), b"derdata")
2001 gn = x509.OtherName(x509.ObjectIdentifier("1.2.3.4"), b"derdata")
2004 gn2 = x509.OtherName(x509.ObjectIdentifier("1.2.3.4"), b"derdata2")
2007 gn2 = x509.OtherName(x509.ObjectIdentifier("1.2.3.5"), b"derdata")
2011 gn = x509.OtherName(x509.ObjectIdentifier("1.2.3.4"), b"derdata")
[all …]
Dtest_x509.py3179 x509.OtherName(
3220 x509.OtherName(
/external/libchrome/base/test/
Dtrace_event_analyzer.h331 static Query OtherName() { return Query(OTHER_NAME); } in OtherName() function
Dtrace_event_analyzer.cc772 Query match(Query::EventName() == Query::OtherName() && in AssociateBeginEndEvents()
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Dencode_asn1.py435 elif isinstance(name, x509.OtherName):
Ddecode_asn1.py159 return x509.OtherName(x509.ObjectIdentifier(type_id), value)
/external/llvm-project/clang/lib/CodeGen/
DCodeGenModule.cpp1188 std::string OtherName = getMangledNameImpl(*this, OtherGD, OtherFD); in UpdateMultiVersionNames() local
1191 if (OtherName != NonTargetName) { in UpdateMultiVersionNames()
1197 auto Result = Manglings.insert(std::make_pair(OtherName, OtherGD)); in UpdateMultiVersionNames()
1200 Entry->setName(OtherName); in UpdateMultiVersionNames()
/external/python/cryptography/
DCHANGELOG.rst817 * Add support for :class:`~cryptography.x509.OtherName` as a general name
/external/python/cryptography/docs/x509/
Dreference.rst1458 .. class:: OtherName(type_id, value)