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

<<11121314151617181920>>

  /libcore/ojluni/src/main/java/sun/security/x509/
PolicyMappingsExtension.java 35 * Represent the Policy Mappings Extension.
37 * This extension, if present, identifies the certificate policies considered
41 * the driving license number as a extension.
43 * <p>Extensions are represented as a sequence of the extension identifier
44 * (Object Identifier), a boolean flag stating whether the extension is to
45 * be treated as being critical and the extension value itself (this is again
46 * a DER encoding of the extension value).
50 * @see Extension
53 public class PolicyMappingsExtension extends Extension
69 // Encode this extension valu
    [all...]
SubjectAlternativeNameExtension.java 35 * This represents the Subject Alternative Name Extension.
37 * This extension, if present, allows the subject 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).
52 * @see Extension
55 public class SubjectAlternativeNameExtension extends Extension
72 // Encode this extension
85 * The extension is marked non-critical
    [all...]
SubjectInfoAccessExtension.java 38 * The Subject Information Access Extension (OID = 1.3.6.1.5.5.7.1.11).
40 * The subject information access extension indicates how to access
42 * the extension appears. When the subject is a CA, information and
46 * the contents of this extension are defined in the protocol
47 * specifications for the supported services. This extension may be
49 * this extension as non-critical.
51 * This extension is defined in <a href="http://www.ietf.org/rfc/rfc3280.txt">
54 * the extension to be included in end-entity or CA certificates,
67 * @see Extension
71 public class SubjectInfoAccessExtension extends Extension
    [all...]
X509CRLImpl.java 566 Collection<Extension> allExts = extensions.getAllExtensions();
571 Extension ext = (Extension)objs[i];
581 sb.append("Extension unknown: "
588 sb.append(", Error parsing this extension");
855 * @returns AuthorityKeyIdentifierExtension or null (if no such extension)
867 * @returns CRLNumberExtension or null (if no such extension)
878 * @returns number or null (if no such extension)
894 * @returns DeltaCRLIndicatorExtension or null (if no such extension)
907 * @returns number or null (if no such extension)
    [all...]
X509CertImpl.java 127 // recognized extension OIDS
    [all...]
  /libcore/ojluni/src/main/java/sun/util/locale/
UnicodeLocaleExtension.java 42 public class UnicodeLocaleExtension extends Extension {
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
GeneratedMessage.java 114 * extension fields to implement {@link #getAllFields()}.
742 /** Check if a singular extension is present. */
744 ExtensionLite<MessageType, Type> extension);
746 /** Get the number of elements in a repeated extension. */
748 ExtensionLite<MessageType, List<Type>> extension);
750 /** Get the value of an extension. */
752 ExtensionLite<MessageType, Type> extension);
754 /** Get one element of a repeated extension. */
756 ExtensionLite<MessageType, List<Type>> extension,
761 * Generated message classes for message types that contain extension range
830 Extension<MessageType, Type> extension = checkNotLite(extensionLite); local
840 Extension<MessageType, List<Type>> extension = checkNotLite(extensionLite); local
851 Extension<MessageType, Type> extension = checkNotLite(extensionLite); local
876 Extension<MessageType, List<Type>> extension = checkNotLite(extensionLite); local
1163 Extension<MessageType, Type> extension = checkNotLite(extensionLite); local
1173 Extension<MessageType, List<Type>> extension = checkNotLite(extensionLite); local
1183 Extension<MessageType, Type> extension = checkNotLite(extensionLite); local
1207 Extension<MessageType, List<Type>> extension = checkNotLite(extensionLite); local
1219 Extension<MessageType, Type> extension = checkNotLite(extensionLite); local
1233 Extension<MessageType, List<Type>> extension = checkNotLite(extensionLite); local
1249 Extension<MessageType, List<Type>> extension = checkNotLite(extensionLite); local
1263 Extension<MessageType, ?> extension = checkNotLite(extensionLite); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
extension.py 1 """distutils.extension
3 Provides the Extension class, used to describe C/C++ extension
26 class Extension:
27 """Just a collection of attributes that describes an extension
33 the full name of the extension, including any packages -- ie.
40 by the "build_ext" command as source for a Python extension.
57 (for shared extensions, this is when the extension is loaded)
70 when linking object files together to create the extension (or
74 list of symbols to be exported from a shared extension. Not
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
X509AttributeCertificateHolder.java 19 import org.bouncycastle.asn1.x509.Extension;
192 * @return true if extension are present, false otherwise.
200 * Look up the extension associated with the passed in OID.
202 * @param oid the OID of the extension of interest.
204 * @return the extension if present, null otherwise.
206 public Extension getExtension(ASN1ObjectIdentifier oid)
230 * @return a list of extension OIDs.
241 * @return a set of critical extension OIDs.
252 * @return a set of non-critical extension OIDs.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPathBuilderSpi.java 20 import org.bouncycastle.asn1.x509.Extension;
235 tbvCert.getExtensionValue(Extension.issuerAlternativeName.getId()), pkixParams.getBaseParameters().getNamedCertificateStoreMap()));
  /external/llvm/test/MC/Mips/
mips_abi_flags_xx_set.s 31 # CHECK-OBJ-NEXT: ISA Extension: None (0x0)
  /external/llvm/tools/llvm-cov/
SourceCoverageView.h 114 /// \brief Return `OutputDir/ToplevelDir/Path.Extension`. If \p InToplevel is
117 std::string getOutputPath(StringRef Path, StringRef Extension,
122 Expected<OwnedStream> createOutputStream(StringRef Path, StringRef Extension,
  /external/python/cpython2/Lib/distutils/
extension.py 1 """distutils.extension
3 Provides the Extension class, used to describe C/C++ extension
26 class Extension:
27 """Just a collection of attributes that describes an extension
33 the full name of the extension, including any packages -- ie.
40 by the "build_ext" command as source for a Python extension.
57 (for shared extensions, this is when the extension is loaded)
70 when linking object files together to create the extension (or
74 list of symbols to be exported from a shared extension. No
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogComponent.java 39 import com.android.systemui.statusbar.policy.ExtensionController.Extension;
65 private final Extension mExtension;
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
extension.py 1 """distutils.extension
3 Provides the Extension class, used to describe C/C++ extension
26 class Extension:
27 """Just a collection of attributes that describes an extension
33 the full name of the extension, including any packages -- ie.
40 by the "build_ext" command as source for a Python extension.
57 (for shared extensions, this is when the extension is loaded)
70 when linking object files together to create the extension (or
74 list of symbols to be exported from a shared extension. No
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
extension.py 1 """distutils.extension
3 Provides the Extension class, used to describe C/C++ extension
26 class Extension:
27 """Just a collection of attributes that describes an extension
33 the full name of the extension, including any packages -- ie.
40 by the "build_ext" command as source for a Python extension.
57 (for shared extensions, this is when the extension is loaded)
70 when linking object files together to create the extension (or
74 list of symbols to be exported from a shared extension. No
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
extension.py 1 """distutils.extension
3 Provides the Extension class, used to describe C/C++ extension
26 class Extension:
27 """Just a collection of attributes that describes an extension
33 the full name of the extension, including any packages -- ie.
40 by the "build_ext" command as source for a Python extension.
57 (for shared extensions, this is when the extension is loaded)
70 when linking object files together to create the extension (or
74 list of symbols to be exported from a shared extension. No
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
extension.py 1 """distutils.extension
3 Provides the Extension class, used to describe C/C++ extension
26 class Extension:
27 """Just a collection of attributes that describes an extension
33 the full name of the extension, including any packages -- ie.
40 by the "build_ext" command as source for a Python extension.
57 (for shared extensions, this is when the extension is loaded)
70 when linking object files together to create the extension (or
74 list of symbols to be exported from a shared extension. No
    [all...]
  /external/deqp/modules/egl/
teglSyncTests.cpp 77 enum Extension
84 SyncTest (EglTestContext& eglTestCtx, EGLenum syncType, Extension extensions, bool useCurrentContext, const char* name, const char* description);
92 const Extension m_extensions;
105 SyncTest::SyncTest (EglTestContext& eglTestCtx, EGLenum syncType, Extension extensions, bool useCurrentContext, const char* name, const char* description)
123 void requiredEGLExtensions (const Library& egl, EGLDisplay display, SyncTest::Extension requiredExtensions)
125 SyncTest::Extension foundExtensions = SyncTest::EXTENSION_NONE;
127 string extension; local
131 while (std::getline(extensionStream, extension, ' '))
133 if (extension == "EGL_KHR_fence_sync")
134 foundExtensions = (SyncTest::Extension)(foundExtensions | SyncTest::EXTENSION_FENCE_SYNC)
159 string extension; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/protobuf/nano/protobuf-javanano/3.0.0-alpha-5/
protobuf-javanano-3.0.0-alpha-5.jar 
  /libcore/luni/src/test/java/libcore/java/security/cert/
CertificateFactoryTest.java 23 import com.android.org.bouncycastle.asn1.x509.Extension;
27 import com.android.org.bouncycastle.x509.extension.AuthorityKeyIdentifierStructure;
573 certGen.addExtension(Extension.authorityKeyIdentifier, false,
576 certGen.addExtension(Extension.authorityKeyIdentifier, false,
580 certGen.addExtension(Extension.subjectKeyIdentifier, false,
582 certGen.addExtension(Extension.basicConstraints, true, basicConstraints);
  /external/giflib/
dgif_lib.c 516 Get an extension block (see GIF manual) from GIF file. This routine only
518 after this one until NULL extension is returned.
519 The Extension should NOT be freed by the user (not dynamically allocated).
520 Note it is assumed the Extension description header has been read.
523 DGifGetExtension(GifFileType *GifFile, int *ExtCode, GifByteType **Extension)
541 return DGifGetExtensionNext(GifFile, Extension);
545 Get a following extension block (see GIF manual) from GIF file. This
546 routine should be called until NULL Extension is returned.
547 The Extension should NOT be freed by the user (not dynamically allocated).
550 DGifGetExtensionNext(GifFileType *GifFile, GifByteType ** Extension)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GuidChk/
GuidChk.c 45 INT8 *Extension;
498 // -e exclude by filename extension option
519 // Let them put a * in front of the filename extension
615 " -e extension exclude searching of files by extension",
842 // Return a code indicating the file name extension.
850 INT8 *Extension;
854 // Look back for a filename extension
856 for (Extension = FileName + strlen (FileName) - 1; Extension >= FileName; Extension--) {
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInstance.h 690 StringRef Extension = "");
698 StringRef BaseInput, StringRef Extension,
705 /// path location as \p BaseInput, with any suffix removed, and \p Extension
714 /// \param Extension - The extension to use for derived output names.
730 StringRef Extension, bool UseTemporary,
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 224 /// extension is present, try all extensions in PATHEXT.
232 // Check for the program without an extension (in case it already has one).
240 LPCSTR Extension = NULL;
242 Extension = ext.c_str();
245 Extension,

Completed in 2265 milliseconds

<<11121314151617181920>>