HomeSort by relevance Sort by last modified time
    Searched refs:version (Results 226 - 250 of 1927) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/openssl/crypto/x509/
x509_set.c 53 * The licence and distribution terms for any publically available version or
66 int X509_set_version(X509 *x, long version)
69 if (x->cert_info->version == NULL)
71 if ((x->cert_info->version=M_ASN1_INTEGER_new()) == NULL)
74 return(ASN1_INTEGER_set(x->cert_info->version,version));
x509cset.c 66 int X509_CRL_set_version(X509_CRL *x, long version)
69 if (x->crl->version == NULL)
71 if ((x->crl->version=M_ASN1_INTEGER_new()) == NULL)
74 return(ASN1_INTEGER_set(x->crl->version,version));
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
AndroidVersion.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
22 * Represents the version of a target or device.
24 * A version is defined by an API level and an optional code name.
26 * (technically the code name for release version is "REL" but this class will return
37 * For generic UI display of the API version, {@link #getApiString()} is to be used.
62 * Codename should be null for a release version, otherwise it's a preview codename.
88 * android version information, or an exception will be thrown.
89 * @throws AndroidVersionException if no Android version information have been found
132 * Returns the version code name if applicable, null otherwise.
152 * Returns whether or not the version is a preview version
202 AndroidVersion version = (AndroidVersion)obj; local
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
TBSCertificate.java 5 * The ASF licenses this file to You under the Apache License, Version 2.0
20 * @version $Revision$
48 * version [0] EXPLICIT Version DEFAULT v1,
56 * -- If present, version MUST be v2 or v3
58 * -- If present, version MUST be v2 or v3
60 * -- If present, version MUST be v3
66 // the value of version field of the structure
67 private final int version; field in class:TBSCertificate
92 * @param version : in
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/pkcs7/
SignedData.java 5 * The ASF licenses this file to You under the Apache License, Version 2.0
20 * @version $Revision$
43 * version Version,
56 private int version; field in class:SignedData
64 public SignedData(int version, List digestAlgorithms, ContentInfo contentInfo,
66 this.version = version;
101 * @return Returns the version.
104 return version;
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/
SignedData.java 22 private DERInteger version; field in class:SignedData
74 this.version = new DERInteger(3);
78 this.version = new DERInteger(1);
83 this.version = new DERInteger(3);
98 version = (DERInteger)e.nextElement();
138 return version;
170 * version CMSVersion,
183 v.add(version);
  /external/tcpdump/
print-bfd.c 174 u_int8_t version; local
178 version = BFD_EXTRACT_VERSION(bfd_header->version_diag);
180 switch (port << 8 | version) {
187 version,
195 version,
220 version,
229 version,
print-slow.c 42 u_int8_t version; member in struct:slow_common_header
142 slow_com_header->version != LACP_VERSION) {
143 printf("LACP version %u packet not supported",slow_com_header->version);
147 slow_com_header->version != MARKER_VERSION) {
148 printf("MARKER version %u packet not supported",slow_com_header->version);
154 slow_com_header->version,
  /external/webkit/JavaScriptCore/tests/mozilla/js1_4/
shell.js 6 VERSION = "";
46 // JavaScript 1.3 is supposed to be compliant ecma version 1.0
47 if ( VERSION == "ECMA_1" ) {
48 version ( 130 );
50 if ( VERSION == "JS_1.3" ) {
51 version ( 130 );
53 if ( VERSION == "JS_1.2" ) {
54 version ( 120 );
56 if ( VERSION == "JS_1.1" ) {
57 version ( 110 )
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicLineFormatter.java 11 * to you under the Apache License, Version 2.0 (the
61 * @version $Revision: 574185 $
99 * Formats a protocol version.
101 * @param version the protocol version to format
106 * @return the formatted protocol version
109 String formatProtocolVersion(final ProtocolVersion version,
113 return formatter.appendProtocolVersion(null, version).toString();
119 final ProtocolVersion version) {
120 if (version == null)
    [all...]
  /external/quake/quake/src/WinQuake/
quake-data.spec.sh 3 # $1 is version
8 %define version ${1}
10 %define builddir \$RPM_BUILD_DIR/%{name}-%{version}
12 Version: %{version}
17 Source: quake-data-%{version}.tar.gz
22 BuildRoot: /var/tmp/%{name}-%{version}
quake-shareware.spec.sh 3 # $1 is version
8 %define version ${1}-shareware
10 %define builddir \$RPM_BUILD_DIR/%{name}-%{version}
12 Version: %{version}
17 Source: quake-%{version}.tar.gz
21 BuildRoot: /var/tmp/%{name}-%{version}
quake.spec.sh 3 # $1 is version
8 %define version ${1}
10 %define builddir \$RPM_BUILD_DIR/%{name}-%{version}
12 Version: %{version}
17 Source: quake-%{version}.tar.gz
21 BuildRoot: /var/tmp/%{name}-%{version}
  /dalvik/libdex/
Android.mk 3 # Licensed under the Apache License, Version 2.0 (the "License");
41 ## Build the device version of libdex
44 ifneq ($(SDK_ONLY),true) # SDK_only doesn't need device version
57 ## Build the host version of libdex
  /external/elfutils/src/
ldscript.y 7 modify it under the terms of the Open Software License version 1.0 as
12 License version 1.0 from http://www.opensource.org/licenses/osl.php or
49 static struct version *new_version (struct id_list *local,
51 static struct version *merge_versions (struct version *one,
52 struct version *two);
53 static void add_versions (struct version *versions);
69 struct version *version;
117 %type <version> versionlis
368 version: '{' version_stmt_list '}' ';' label
    [all...]
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/
domimplementationhasfeature01.java 34 * The method "hasFeature(feature,version)" tests if the DOMImplementation implements
39 * "1.0" and if the version is not specified, supporting any version of the feature
69 String version = ""; local
87 success = domImpl.hasFeature(featureXML, version);
94 success = domImpl.hasFeature(featureCore, version);
nodeissupported01.java 34 * The method "isSupported(feature,version)" Tests whether the DOM implementation
39 * "2.0", "1.0" and if the version is not specified, supporting any version of the feature
69 String version = ""; local
87 success = element.isSupported(featureXML, version);
94 success = element.isSupported(featureCore, version);
nodeissupported02.java 34 * The method "isSupported(feature,version)" Tests whether the DOM implementation
39 * "2.0", "1.0" and if the version is not specified, supporting any version of the feature
69 String version = ""; local
87 success = attribute.isSupported(featureXML, version);
94 success = attribute.isSupported(featureCore, version);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/icao/
LDSSecurityObject.java 17 * version LDSSecurityObjectVersion,
34 DERInteger version = new DERInteger(0); field in class:LDSSecurityObject
64 // version
65 version = DERInteger.getInstance(e.nextElement());
113 seq.add(version);
  /external/e2fsprogs/lib/ss/
test_ss.c 32 static char version[] = "1.0"; variable
104 sci_idx = ss_create_invocation(subsystem_name, version,
118 version);
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Scope/
regress-77578-001.js 3 * License Version 1.1 (the "License"); you may not use this file
58 // Run tests A,B,C on each version of JS and store results
85 // Set the version of JS to test -
86 version(ver);
88 // eval the test, so it compiles AFTER version() has executed -
104 // Set the version of JS to test -
105 version(ver);
107 // eval the test, so it compiles AFTER version() has executed -
125 // Set the version of JS to test -
126 version(ver)
    [all...]
  /external/webkit/WebCore/dom/
DOMImplementation.cpp 12 * version 2 of the License, or (at your option) any later version.
173 bool DOMImplementation::hasFeature(const String& feature, const String& version)
177 return version.isEmpty() || version == "1.0" || version == "2.0";
189 return version.isEmpty() || version == "2.0";
191 return version.isEmpty() || version == "3.0"
    [all...]
  /bionic/libc/kernel/common/linux/
taskstats.h 19 __u16 version; member in struct:taskstats
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
AttributeCertificateInfo.java 15 private DERInteger version; field in class:AttributeCertificateInfo
55 this.version = DERInteger.getInstance(seq.getObjectAt(0));
80 return version;
127 * version AttCertVersion -- version is v2,
145 v.add(version);
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
Provider2Test.java 5 * The ASF licenses this file to You under the Apache License, Version 2.0
34 TestProvider(String name, double version, String info) {
35 super(name, version, info);
120 assertEquals("the version of the provider is not stored properly",
176 assertEquals("provTest version 1.2", provTest.toString());
205 public MockProvider(String name, double version, String info) {
206 super(name, version, info);

Completed in 306 milliseconds

1 2 3 4 5 6 7 8 91011>>