HomeSort by relevance Sort by last modified time
    Searched refs:Extension (Results 251 - 275 of 552) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Index/
IndexSymbol.h 35 Extension,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Index/
IndexSymbol.h 35 Extension,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Index/
IndexSymbol.h 35 Extension,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509V2AttributeCertificate.java 31 import org.bouncycastle.asn1.x509.Extension;
214 Extension ext = extensions.getExtension(new ASN1ObjectIdentifier(oid));
245 Extension ext = extensions.getExtension(oid);
  /external/protobuf/python/
setup.py 11 from setuptools import setup, Extension, find_packages
172 # extension. Note that those libraries have to be compiled with
193 # C++ implementation extension
195 Extension(
204 Extension(
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
X509CertificateObject.java 57 import org.bouncycastle.asn1.x509.Extension;
377 throw new CertificateParsingException("error processing extended key usage extension");
411 return getAlternativeNames(getExtensionBytes(Extension.subjectAlternativeName.getId()));
417 return getAlternativeNames(getExtensionBytes(Extension.issuerAlternativeName.getId()));
434 Extension ext = extensions.getExtension(oid);
455 Extension ext = exts.getExtension(new ASN1ObjectIdentifier(oid));
471 Extension ext = exts.getExtension(new ASN1ObjectIdentifier(oid));
503 Extension ext = extensions.getExtension(oid);
548 Extension ext = extensions.getExtension(oid);
712 Extension ext = extensions.getExtension(oid)
    [all...]
RFC3280CertPathUtilities.java 49 import org.bouncycastle.asn1.x509.Extension;
72 * extension check the following:
74 * (i) If the distribution point name is present in the IDP CRL extension
77 * distribution point name is present in the IDP CRL extension and the
84 * extension, verify that the certificate does not include the basic
85 * constraints extension with the cA boolean asserted.
89 * extension, verify that the certificate includes the basic constraints
90 * extension with the cA boolean asserted.
115 throw new AnnotatedException("Issuing distribution point extension could not be decoded.", e);
246 throw new AnnotatedException("Basic constraints extension could not be decoded.", e)
    [all...]
  /external/libmojo/third_party/jinja2/
ext.py 8 extension.
33 """Gives the extension an unique identifier."""
41 class Extension(with_metaclass(ExtensionRegistry, object)):
45 this is that an extension can be bound to another environment (for
51 by their import name. The correct way to configure the extension is
57 name as includes the name of the extension (fragment cache).
60 #: if this extension parses this is the list of tags it's listening to.
63 #: the priority of that extension. This is especially useful for
74 """Create a copy of this extension bound to another environment."""
108 """Return an attribute node for the current extension. This is usefu
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
ProcessDsc.c 68 #define FFS_EXT "FFS_EXT" // FV_EXT is deprecated -- extension of FFS file
122 INT8 *Extension; // file extension
196 INT8 *Extension;
468 INT8 *Extension
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
X509CertInfo.java 317 Collection<Extension> allExts = extensions.getAllExtensions();
318 Extension[] exts = allExts.toArray(new Extension[0]);
322 Extension ext = exts[i];
332 sb.append("Extension unknown: "
339 sb.append(", Error parsing this extension");
342 Map<String,Extension> invalid = extensions.getUnparseableExtensions();
346 for (Extension ext : invalid.values()) {
735 "SubjectAlternativeName extension is absent");
738 // SubjectAlternativeName extension is empty or not marked critica
    [all...]
AuthorityInfoAccessExtension.java 37 * The Authority Information Access Extension (OID = 1.3.6.1.5.5.7.1.1).
39 * The AIA extension identifies how to access CA information and services
46 * This extension is defined in <a href="http://www.ietf.org/rfc/rfc3280.txt">
49 * the extension to be included in end-entity or CA certificates,
62 * @see Extension
66 public class AuthorityInfoAccessExtension extends Extension
103 * Create the extension from the passed DER encoded value of the same.
105 * @param critical true if the extension is to be treated as critical.
147 * Write the extension to the DerOutputStream.
149 * @param out the DerOutputStream to write the extension to
    [all...]
CRLReasonCodeExtension.java 36 * The reasonCode is a non-critical CRL entry extension that identifies
40 * @see Extension
43 public class CRLReasonCodeExtension extends Extension
79 * @param critical true if the extension is to be treated as critical.
91 * Create the extension from the passed DER encoded value of the same.
93 * @param critical true if the extension is to be treated as critical.
156 * Write the extension to the DerOutputStream.
158 * @param out the DerOutputStream to write the extension to.
CertificatePoliciesExtension.java 36 * This class defines the certificate policies extension which specifies the
42 * policy OIDs in the certificate to that list. If this extension is
44 * extension (including the optional qualifier), or MUST reject the
66 * @see Extension
69 public class CertificatePoliciesExtension extends Extension
87 // Encode this extension value.
119 * @param critical true if the extension is to be treated as critical.
131 * Create the extension from its DER encoded value and criticality.
133 * @param critical true if the extension is to be treated as critical.
157 * Return the extension as user readable string
    [all...]
InhibitAnyPolicyExtension.java 38 * This class represents the Inhibit Any-Policy Extension.
40 * <p>The inhibit any-policy extension can be used in certificates issued
50 * This extension MUST be critical.
52 * The ASN.1 syntax for this extension is:
62 * @see Extension
64 public class InhibitAnyPolicyExtension extends Extension
96 // Encode this extension value
122 * Create the extension from the passed DER encoded value of the same.
125 * extension.
126 * @param value a byte array holding the DER-encoded extension value
    [all...]
IssuerAlternativeNameExtension.java 35 * This represents the Issuer Alternative Name Extension.
37 * This extension, if present, allows the issuer to specify multiple
40 * <p>Extensions are represented as a sequence of the extension identifier
41 * (Object Identifier), a boolean flag stating whether the extension is to
42 * be treated as being critical and the extension value itself (this is again
43 * a DER encoding of the extension value).
47 * @see Extension
51 extends Extension implements CertAttrSet<String> {
67 // Encode this extension
96 * @param critical true if the extension is to be treated as critical
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
BasicConstraints.java 48 return BasicConstraints.getInstance(extensions.getExtensionParsedValue(Extension.basicConstraints));
ExtendedKeyUsage.java 67 * @return the ExtendedKeyUsage, null if the extension is not present.
71 return ExtendedKeyUsage.getInstance(extensions.getExtensionParsedValue(Extension.extendedKeyUsage));
KeyPurposeId.java 31 public static final KeyPurposeId anyExtendedKeyUsage = new KeyPurposeId(Extension.extendedKeyUsage.branch("0"));
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
UnicodeLocaleExtension.java 19 public class UnicodeLocaleExtension extends Extension {
  /external/llvm/test/MC/Mips/
mips_abi_flags_xx.s 44 # CHECK-OBJ-MIPS-NEXT: ISA Extension: None (0x0)
45 # CHECK-OBJ-OCTEON-NEXT: ISA Extension: Cavium Networks Octeon (0x5)
  /external/markdown/markdown/extensions/
def_list.py 3 Definition List Extension for Python-Markdown
89 class DefListExtension(markdown.Extension):
rss.py 44 class RssExtension (markdown.Extension):
tables.py 3 Tables Extension for Python-Markdown
86 class TableExtension(markdown.Extension):
  /external/python/cpython2/Lib/distutils/
core.py 22 from distutils.extension import Extension
53 # Legal keyword arguments for the Extension constructor
  /external/skia/src/sksl/
SkSLGLSLCodeGenerator.h 101 void writeExtension(const Extension& ext);

Completed in 652 milliseconds

<<11121314151617181920>>