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

1 2 3 4 5 6 7 891011>>

  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
ncp_mount.h 30 int version; member in struct:ncp_mount_data
49 int version; member in struct:ncp_mount_data_v4
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
ncp_mount.h 30 int version; member in struct:ncp_mount_data
49 int version; member in struct:ncp_mount_data_v4
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
ncp_mount.h 30 int version; member in struct:ncp_mount_data
49 int version; member in struct:ncp_mount_data_v4
  /dalvik/vm/
AtomicCache.c 4 * Licensed under the Apache License, Version 2.0 (the "License");
18 * and a 32-bit version.
105 * the version counter (at 2^31). Probably not a real concern.
108 !ATOMIC_CMP_SWAP((volatile s4*) &pEntry->version,
132 pEntry->version++;
140 pEntry->version++;
145 * pEntry->version, so if this fails the world is broken.
148 if (!ATOMIC_CMP_SWAP((volatile s4*) &pEntry->version,
AtomicCache.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
38 volatile u4 version; /* version and lock flag */ member in struct:AtomicCacheEntry
69 * (2) Have a "version" that gets incremented atomically when a write
70 * begins and again when it completes. Compare the version before
71 * and after doing reads. So long as "version" is volatile the
107 firstVersion = pEntry->version; \
111 * The fields match. Get the value, then read the version a \
118 if ((firstVersion & 0x01) != 0 || firstVersion != pEntry->version) \
  /external/grub/util/
grub-set-default 8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
22 VERSION=0.97
35 -v, --version print the version information and exit
50 -v | --version)
51 echo "grub-set-default (GNU GRUB ${VERSION})"
grub-set-default.in 8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
22 VERSION=@VERSION@
35 -v, --version print the version information and exit
50 -v | --version)
51 echo "grub-set-default (GNU GRUB ${VERSION})"
  /external/icu4c/tools/gensprep/
gensprep.h 42 setUnicodeVersionNC(UVersionInfo version);
  /external/opencore/fileformats/mp4/composer/include/
chunklargeoffsetatom.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
32 PVA_FF_ChunkLargeOffsetAtom(uint8 version, uint32 flags); // Constructor
copyrightatom.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
31 PVA_FF_CopyrightAtom(uint8 version, uint32 flags); // Constructor
dataentryurnatom.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
32 PVA_FF_DataEntryUrnAtom(uint8 version, uint32 flags); // Constructor
handleratom.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
32 PVA_FF_HandlerAtom(int32 handlerType, uint8 version, uint32 flags); // Constructor
  /external/opencore/fileformats/mp4/parser/include/
chunklargeoffsetatom.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
44 ChunkLargeOffsetAtom(uint8 version, uint32 flags); // Constructor
fullatom.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
41 // version and 3 for flags)
47 FullAtom(uint32 type, uint8 version, uint32 flags); // Constructor
  /external/oprofile/libop/
op_sample_file.h 23 u32 version; member in struct:opd_header
  /external/webkit/WebCore/history/qt/
HistoryItemQt.cpp 7 version 2 of the License, or (at your option) any later version.
26 bool WebCore::HistoryItem::restoreState(QDataStream& in, int version)
28 // we only support version 1 for now
30 if (version != 1)
93 QDataStream& WebCore::HistoryItem::saveState(QDataStream& out, int version) const
95 // we only support version 1 for now.
96 if (version != 1)
  /frameworks/base/include/ui/
android_native_buffer.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
33 common.version = sizeof(android_native_buffer_t);
  /hardware/broadcom/wlan/bcm4329/src/include/proto/
bcmeth.h 8 * under the terms of the GNU General Public License version 2 (the "GPL"),
73 uint8 version; member in struct:bcmeth_hdr
  /packages/apps/Calculator/src/com/android/calculator2/
History.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
37 History(int version, DataInput in) throws IOException {
38 if (version >= VERSION_1) {
41 mEntries.add(new HistoryEntry(version, in));
45 throw new IOException("invalid version " + version);
  /external/gtest/scripts/
gtest-config.in 5 version="@PACKAGE_VERSION@"
23 only one installation query may be made at a time. The version queries and
25 version queries are always combined with logical "and" semantics, and only the
31 gtest-config --min-version=1.0 || echo "Insufficient Google Test version."
58 --version the version of the Google Test installation
60 Version Queries:
61 --min-version=VERSION return 0 if the version is at least VERSIO
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
TBSCertList.java 5 * The ASF licenses this file to You under the Apache License, Version 2.0
20 * @version $Revision$
53 * version Version OPTIONAL,
72 // the value of version field of the structure
73 private final int version; field in class:TBSCertList
209 * "When CRLs are issued, the CRLs MUST be version 2 CRLs, include the date
213 * applications that support CRLs are REQUIRED to process both version 1 and
214 * version 2 complete CRLs that provide revocation information for all
224 this.version = 1;
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/
KeyAgreeRecipientInfo.java 17 private DERInteger version; field in class:KeyAgreeRecipientInfo
29 this.version = new DERInteger(3);
41 version = (DERInteger)seq.getObjectAt(index++);
99 return version;
126 * version CMSVersion, -- always set to 3
138 v.add(version);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/pkcs/
SignedData.java 21 private DERInteger version; field in class:SignedData
51 version = _version;
64 version = (DERInteger)e.nextElement();
101 return version;
133 * version Version,
148 v.add(version);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
TBSCertificateStructure.java 16 * version [ 0 ] Version DEFAULT v1(0),
38 DERInteger version; field in class:TBSCertificateStructure
79 // some certficates don't include a version number - we assume v1
83 version = DERInteger.getInstance(seq.getObjectAt(0));
88 version = new DERInteger(0);
131 return version.getValue().intValue() + 1;
136 return version;
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
AuthProviderTest.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
74 double[] version = {0.0, -1.0, Double.MAX_VALUE, Double.MIN_VALUE, Double.NaN, Double.NEGATIVE_INFINITY}; local
83 for (int j = 0; j < version.length; j++) {
85 ap = new AuthProviderStub(str[i], version[j], str[i]);
102 public AuthProviderStub(String name, double version, String info) {
103 super( name, version, info);

Completed in 621 milliseconds

1 2 3 4 5 6 7 891011>>