HomeSort by relevance Sort by last modified time
    Searched defs:version (Results 251 - 275 of 2174) sorted by null

<<11121314151617181920>>

  /development/ndk/platforms/android-3/include/sys/
_system_properties.h 55 unsigned version; member in struct:prop_area
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
RC5ParameterSpecTest.java 5 * The ASF licenses this file to You under the Apache License, Version 2.0
38 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) method
44 int version = 1; local
50 new RC5ParameterSpec(version, rounds, wordSize, null);
57 new RC5ParameterSpec(version, rounds, wordSize+8, iv);
64 new RC5ParameterSpec(version, rounds, wordSize, new byte[] {1, 2, 3});
70 RC5ParameterSpec ps = new RC5ParameterSpec(version, rounds,
79 * RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int
85 int version = 1; local
92 new RC5ParameterSpec(version, rounds, wordSize, null, offset)
141 int version = 1; local
156 int version = 1; local
171 int version = 1; local
188 int version = 1; local
215 int version = 1; local
265 int version = 1; local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
CertificateTest.java 5 * The ASF licenses this file to You under the Apache License, Version 2.0
66 * version [0] EXPLICIT Version DEFAULT v1,
74 * -- If present, version MUST be v2 or v3
76 * -- If present, version MUST be v2 or v3
78 * -- If present, version MUST be v3
81 * Version ::= INTEGER { v1(0), v2(1), v3(2) }
123 int version = 2; //v3 local
160 TBSCertificate tbsCertificate = new TBSCertificate(version, serialNumber,
  /external/apache-http/src/org/apache/http/impl/cookie/
BestMatchSpec.java 11 * to you under the Apache License, Version 2.0 (the
108 if (helem.getParameterByName("version") != null) {
118 // Do we have a cookie with a version attribute?
165 int version = Integer.MAX_VALUE; local
167 if (cookie.getVersion() < version) {
168 version = cookie.getVersion();
171 if (version > 0) {
  /external/bison/
GNUmakefile 12 # the Free Software Foundation, either version 3 of the License, or
13 # (at your option) any later version.
45 # Ensure that $(VERSION) is up to date for dist-related targets, but not
47 _have-git-version-gen := \
48 $(shell test -f $(srcdir)/$(_build-aux)/git-version-gen && echo yes)
49 ifeq ($(_have-git-version-gen)0,yes$(MAKELEVEL))
55 && $(_build-aux)/git-version-gen \
56 .tarball-version \
57 $(git-version-gen-tag-sed-script))
58 ifneq ($(_curr-ver),$(VERSION))
    [all...]
  /external/blktrace/btreplay/
btrecord.h 8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
66 * @version: Version information
72 __u64 version; member in struct:io_file_hdr
83 static inline void get_btversion(__u64 version, int *mjr, int *mnr, int *sub)
85 *mjr = (int)((version >> 16) & 0xff);
86 *mnr = (int)((version >> 8) & 0xff);
87 *sub = (int)((version >> 0) & 0xff);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
SignerInfo.java 21 private ASN1Integer version; field in class:SignerInfo
55 this.version = new ASN1Integer(3);
59 this.version = new ASN1Integer(1);
75 version = (ASN1Integer)e.nextElement();
107 return version;
144 * version Version,
164 v.add(version);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PrivateKeyInfo.java 75 BigInteger version = ((ASN1Integer)e.nextElement()).getValue(); local
76 if (version.intValue() != 0)
78 throw new IllegalArgumentException("wrong version for private key info");
133 * version Version,
138 * Version ::= INTEGER {v1(0)} (v1,...)
SignedData.java 22 private ASN1Integer version; field in class:SignedData
52 version = _version;
65 version = (ASN1Integer)e.nextElement();
102 return version;
134 * version Version,
149 v.add(version);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
AttributeCertificateInfo.java 16 private ASN1Integer version; field in class:AttributeCertificateInfo
56 this.version = ASN1Integer.getInstance(seq.getObjectAt(0));
81 return version;
128 * version AttCertVersion -- version is v2,
146 v.add(version);
Holder.java 52 private int version = V2_CERTIFICATE_HOLDER; field in class:Holder
90 version = 0;
126 version = 1;
138 * @param version The version of the attribute certificate.
140 public Holder(IssuerSerial baseCertificateID, int version)
143 this.version = version;
149 * @return The version of the attribute certificate.
153 return version;
    [all...]
V1TBSCertificateGenerator.java 11 * Generator for Version 1 TBSCertificateStructures.
14 * version [ 0 ] Version DEFAULT v1(0),
27 DERTaggedObject version = new DERTaggedObject(true, 0, new ASN1Integer(0)); field in class:V1TBSCertificateGenerator
123 // seq.add(version); - not required as default value.
  /external/chromium/chrome/browser/chromeos/
version_loader.cc 21 // File to look for version number in.
24 // TODO(rkc): Remove once we change over the Chrome OS version format.
34 // Beginning of line we look for that gives full version number.
40 // Same but for short version (x.x.xx.x).
44 // Beginning of line we look for that gives the firmware version.
45 const char VersionLoader::kFirmwarePrefix[] = "version";
94 // Split the lines and look for the one that starts with prefix. The version
100 std::string version = lines[i].substr(std::string(prefix).size()); local
101 if (version.size() > 1 && version[0] == '"' &
    [all...]
  /external/chromium/chrome/browser/extensions/
external_extension_provider_impl.cc 13 #include "base/version.h"
137 scoped_ptr<Version> version; local
138 version.reset(Version::GetVersionFromString(external_version));
139 if (!version.get()) {
141 << extension_id.c_str() << ". Invalid version string \""
145 service_->OnExternalExtensionFileFound(extension_id, version.get(), path,
188 scoped_ptr<Version>* version) const
    [all...]
  /external/chromium/chrome/browser/importer/
nss_decryptor.cc 29 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
31 * The contents of this file are subject to the Mozilla Public License Version
51 * either the GNU General Public License Version 2 or later (the "GPL"), or
52 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
54 * of those above. If you wish to allow use of your version of this file only
56 * use your version of this file under the terms of the MPL, indicate your
59 * the provisions above, a recipient may use your version of this file under
121 // The first line is the file version. We skip the unknown versions.
124 int version; local
126 version = 1
    [all...]
  /external/chromium/chrome/browser/policy/
cloud_policy_cache_base.h 65 // Get the version of the encryption key currently used for decoding policy.
66 // Returns true if the version is available, in which case |version| is filled
68 bool GetPublicKeyVersion(int* version);
71 // Wraps public key version and validity.
73 int version; member in struct:policy::CloudPolicyCacheBase::PublicKeyVersion
143 // Currently used public key version, if available.
  /external/chromium/chrome/browser/safe_browsing/
bloom_filter.cc 100 // Make sure we have a file version that we can understand.
163 // Write the version information.
164 int version = kFileVersion; local
165 int bytes_written = filter.Write(reinterpret_cast<char*>(&version),
166 sizeof(version), NULL);
167 if (bytes_written != sizeof(version))
  /external/chromium/chrome/browser/sync/engine/
build_commit_command.cc 144 // it should not be necessary to provide the old_parent_id: the version
152 int64 version = meta_entry.Get(syncable::BASE_VERSION); local
153 if (syncable::CHANGES_VERSION == version || 0 == version) {
159 // Version 0 means to create or undelete an object.
  /external/chromium/chrome/browser/webdata/
keyword_table.cc 25 const char* kBuiltinKeywordVersion = "Builtin Keyword Version";
220 bool KeywordTable::SetBuitinKeywordVersion(int version) {
221 return meta_table_->SetValue(kBuiltinKeywordVersion, version);
225 int version = 0; local
226 meta_table_->GetValue(kBuiltinKeywordVersion, &version);
227 return version;
  /external/chromium/net/http/
http_response_info.cc 24 // The version of the response info used when persisting response info.
27 // The minimum version supported for deserializing response info.
30 // We reserve up to 8 bits for the version number.
109 // read flags and verify version
113 int version = flags & RESPONSE_INFO_VERSION_MASK; local
114 if (version < RESPONSE_INFO_MINIMUM_VERSION ||
115 version > RESPONSE_INFO_VERSION) {
116 DLOG(ERROR) << "unexpected response info version: " << version;
138 // Version 1 only serialized only the end-entity certificate
    [all...]
  /external/e2fsprogs/lib/ss/
ss.h 46 int version; member in struct:_ss_request_table
53 int version; /* SS_RP_V1 */ member in struct:_ss_rp_options
  /external/elfutils/libdw/
dwarf_getaranges.c 8 Free Software Foundation; version 2 of the License.
38 exception to your version of the file, but you are not obligated to do
40 you must delete this exception statement from your version and license
121 2. A 2-byte version identifier containing the value 2 for
122 DWARF Version 2.1.
143 unsigned int version = read_2ubyte_unaligned_inc (dbg, readp); local
144 if (version != 2)
  /external/elfutils/src/
ldscript.y 9 Free Software Foundation; version 2 of the License.
62 static struct version *new_version (struct id_list *local,
64 static struct version *merge_versions (struct version *one,
65 struct version *two);
66 static void add_versions (struct version *versions);
82 struct version *version;
132 %type <version> versionlist
133 %type <version> versio
403 version: '{' version_stmt_list '}' ';' label
    [all...]
  /external/freetype/src/sfnt/
ttbdf.c 85 FT_UInt version = FT_NEXT_USHORT( p ); local
92 if ( version != 0x0001 ||
  /external/freetype/src/truetype/
ttpload.c 489 FT_UInt version, nn, num_records; local
506 version = FT_NEXT_USHORT( p );
516 /* There are at least two fonts, HANNOM-A and HANNOM-B version */
526 if ( version != 0 || num_records > 255 || record_size > 0x10001L )

Completed in 3195 milliseconds

<<11121314151617181920>>