HomeSort by relevance Sort by last modified time
    Searched refs:version (Results 301 - 325 of 10124) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm-generic/
ipc.h 35 #define IPCCALL(version,op) ((version)<<16 | (op))
  /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/chromium_org/chrome/installer/util/
compat_checks.cc 26 // The product version should be a string like "11.0.3001.2224". This function
29 bool ParseSEPVersion(const std::wstring& version, int* v0, int* v1, int* v2) {
31 base::SplitString(version, L'.', &v);
56 bool HasIncompatibleSymantecEndpointVersion(const wchar_t* version) {
58 std::wstring ver_str(version ? version : GetSEPVersion());
  /external/chromium_org/sandbox/win/src/
ipc_ping_test.cc 26 int version = 0; local
28 version = 1;
30 version = 2;
32 if (!ts_base->TestIPCPing(version))
36 if (!ts_base->TestIPCPing(version))
  /external/chromium_org/third_party/webrtc/build/
version.py 16 This script is a simplified version of lastchange.py which is in Chromium's
51 version = popen_cmd_and_get_output(['git', 'svn', 'info'], directory)
52 if version == None:
53 version = popen_cmd_and_get_output(['svn', 'info'], directory)
54 if version == None:
57 print version
  /external/elfutils/0.153/libelf/
elf32_fsize.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
64 elfw2(LIBELFBITS, fsize) (type, count, version)
67 unsigned int version; variable
71 if (unlikely (version == EV_NONE) || unlikely (version >= EV_NUM))
85 * __libelf_type_sizes[version - 1][ELFW(ELFCLASS,LIBELFBITS) - 1][type]);
  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDOMImplementation.java 36 * @param version This is the version number of the feature to test. In
37 * Level 2, the string can be either "2.0" or "1.0". If the version is
38 * not specified, supporting any version of the feature causes the
41 * specified version, <code>false</code> otherwise.
44 String version) {
46 return version == null || version.equals("1.0") || version.equals("2.0");
55 * future version of the DOM will provide a way for populating
    [all...]
  /external/chromium_org/ppapi/api/private/
ppb_talk_private.idl 69 [version=1.0]
84 [version=1.0, deprecate=2.0]
102 [version=2.0]
126 [version=2.0]
138 [version=2.0]
  /frameworks/support/v4/java/android/support/v4/content/
ContextCompat.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
103 final int version = Build.VERSION.SDK_INT; local
104 if (version >= 16) {
107 } else if (version >= 11) {
158 final int version = Build.VERSION.SDK_INT; local
159 if (version >= 19) {
163 if (version >= 11) {
218 final int version = Build.VERSION.SDK_INT local
278 final int version = Build.VERSION.SDK_INT; local
317 final int version = Build.VERSION.SDK_INT; local
342 final int version = Build.VERSION.SDK_INT; local
367 final int version = Build.VERSION.SDK_INT; local
    [all...]
  /external/chromium_org/tools/
omahaproxy.py 6 """Chrome Version Tool
37 for version in os_versions['versions']:
38 for field in version:
40 channels.add(version['channel'])
65 default='version',
75 for version in os_versions['versions']:
76 if version['channel'] != opts.channel:
79 if opts.field not in version:
82 print version[opts.field]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
MetaBox.java 4 * Licensed under the Apache License, Version 2.0 (the License);
32 private int version = 0; field in class:MetaBox
71 version = -1;
75 version = IsoTypeReader.readUInt8(content);
93 IsoTypeWriter.writeUInt8(byteBuffer, version);
101 return version != -1 && flags != -1;
106 version = 0;
109 version = -1;
  /external/tcpdump/
print-openflow.c 2 * This module implements printing of the very basic (version-independent)
4 * dispatching of version-specific OpenFlow message decoding.
46 of_header_print(const uint8_t version, const uint8_t type,
49 version, type, length, xid);
55 uint8_t version, type; local
61 /* version */
63 version = *cp;
83 of_header_print(version, type, length, xid);
87 * type decoding is version-specific. */
88 switch (version) {
    [all...]
  /external/chromium_org/ppapi/proxy/
gamepad_resource.cc 22 base::subtle::Atomic32 version; local
24 version = base::subtle::NoBarrier_Load(sequence);
28 if ((version & 1) == 0)
34 return version;
38 base::subtle::Atomic32 version) {
41 return base::subtle::Release_Load(sequence) != version;
85 base::subtle::Atomic32 version; local
88 version = ReadBegin(&buffer_->sequence);
93 } while (ReadRetry(&buffer_->sequence, version));
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
StatusLineTest.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
28 int version = 1; local
30 StatusLine statusLine = new StatusLine("HTTP/1." + version + " " + code + " " + message);
32 assertEquals(version, statusLine.httpMinorVersion());
37 int version = 1; local
39 StatusLine statusLine = new StatusLine("HTTP/1." + version + " " + code + " ");
41 assertEquals(version, statusLine.httpMinorVersion());
51 int version = 1; local
53 StatusLine statusLine = new StatusLine("HTTP/1." + version + " " + code);
55 assertEquals(version, statusLine.httpMinorVersion())
    [all...]
  /external/chromium_org/media/midi/
midi_port_info.cc 18 version(in_version) {}
26 version(info.version) {}
  /external/chromium_org/third_party/openssl/openssl/crypto/x509/
x509rset.c 53 * The licence and distribution terms for any publically available version or
66 int X509_REQ_set_version(X509_REQ *x, long version)
69 return(ASN1_INTEGER_set(x->req_info->version,version));
  /external/openssl/crypto/x509/
x509rset.c 53 * The licence and distribution terms for any publically available version or
66 int X509_REQ_set_version(X509_REQ *x, long version)
69 return(ASN1_INTEGER_set(x->req_info->version,version));
  /external/chromium_org/chrome/browser/component_updater/
recovery_component_installer.cc 54 explicit RecoveryComponentInstaller(const Version& version,
68 Version current_version_;
74 Version version(prefs->GetString(prefs::kRecoveryComponentVersion));
75 if (!version.IsValid()) {
82 recovery.installer = new RecoveryComponentInstaller(version, prefs);
83 recovery.version = version;
90 void RecoveryUpdateVersionHelper(const Version& version, PrefService* prefs)
    [all...]
  /external/chromium_org/sql/
meta_table.cc 16 // Key used in our meta table for version numbers.
17 const char kVersionKey[] = "version";
31 // Version key not found in meta table. Some sort of update error likely.
34 // Version was out-dated, database successfully razed. Should only
38 // Version was out-dated, database raze failed. This user's
100 int version = s.ColumnInt(0); local
102 if (version <= deprecated_version) {
111 // NOTE(shess): Successfully getting a version which is not
115 bool MetaTable::Init(Connection* db, int version, int compatible_version) {
120 // Require new clients to start with a greater initial version
155 int version = 0; local
165 int version = 0; local
    [all...]

Completed in 2046 milliseconds

<<11121314151617181920>>