/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/ |
introspect.h | 423 uint32_t bytes; /**< Length of this sample in bytes. \since 0.4 */ member in struct:pa_sample_info
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ |
introspect.h | 423 uint32_t bytes; /**< Length of this sample in bytes. \since 0.4 */ member in struct:pa_sample_info
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ |
introspect.h | 423 uint32_t bytes; /**< Length of this sample in bytes. \since 0.4 */ member in struct:pa_sample_info
|
/system/netd/ |
CommandListener.cpp | 906 int64_t bytes; local 925 int64_t bytes; local [all...] |
/prebuilts/devtools/tools/lib/ |
commons-codec-1.4.jar | |
/prebuilts/tools/common/http-client/ |
commons-codec-1.4.jar | |
/prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.4/ |
commons-codec-1.4.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.apache.commons.codec_1.3.0.v20100518-1140.jar | |
/bootable/recovery/updater/ |
install.c | 193 // fs_type="yaffs2" partition_type="MTD" location=partition fs_size=<bytes> mount_point=<location> 194 // fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location> 197 // if fs_size < 0, then reserve that many bytes at the end of the partition 436 fprintf(stderr, "%s: failed to allocate %ld bytes for %s\n", 651 ErrorAbort(state, "%s: failed to alloc %lld bytes", name, st.st_size+1); 663 ErrorAbort(state, "%s: failed to read %lld bytes from %s", 818 // apply_patch_space(bytes) 827 size_t bytes = strtol(bytes_str, &endptr, 10); local 828 if (bytes == 0 && endptr == bytes_str) { 835 return StringValue(strdup(CacheSizeCheck(bytes) ? "" : "t")) [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/ |
BluetoothChatService.java | 229 * @param out The bytes to write 455 int bytes; local 461 bytes = mmInStream.read(buffer); 463 // Send the obtained bytes to the UI Activity 464 mHandler.obtainMessage(MESSAGE_READ, bytes, -1, buffer) 476 * @param buffer The bytes to write
|
/dalvik/dx/src/com/android/dx/cf/code/ |
BytecodeArray.java | 41 /** {@code non-null;} underlying bytes */ 42 private final ByteArray bytes; field in class:BytecodeArray 53 * @param bytes {@code non-null;} underlying bytes 57 public BytecodeArray(ByteArray bytes, ConstantPool pool) { 58 if (bytes == null) { 59 throw new NullPointerException("bytes == null"); 66 this.bytes = bytes; 76 return bytes; [all...] |
/development/samples/BluetoothChat/src/com/example/android/BluetoothChat/ |
BluetoothChatService.java | 215 * @param out The bytes to write 448 int bytes; local 454 bytes = mmInStream.read(buffer); 456 // Send the obtained bytes to the UI Activity 457 mHandler.obtainMessage(BluetoothChat.MESSAGE_READ, bytes, -1, buffer) 471 * @param buffer The bytes to write
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
InputStreamReaderTest.java | 42 byte[] bytes; field in class:InputStreamReaderTest.LimitedByteArrayInputStream 50 bytes = new byte[] { 0x61, 0x72 }; 53 bytes = new byte[] { (byte) 0xff, (byte) 0xfe, 0x61, 0x72 }; 56 bytes = new byte[] { '\u001b', '$', 'B', '6', 'e', 'B', 'h', 60 count = bytes.length; 74 return bytes[bytes.length - count]; 85 buffer[offset] = bytes[bytes.length - count];
|
PipedInputStreamTest.java | 28 public byte bytes[]; field in class:PipedInputStreamTest.PWriter 32 pos.write(bytes); 38 System.out.println("Could not write bytes"); 44 bytes = new byte[nbytes]; 45 for (int i = 0; i < bytes.length; i++) { 46 bytes[i] = (byte) (System.currentTimeMillis() % 9); 115 assertTrue("Available returned incorrect number of bytes: " 156 assertEquals("Non-conected pipe returned non-zero available bytes", 0, 166 assertEquals("Available returned incorrect number of bytes", 1000, pis 184 assertEquals("Available returned incorrect number of bytes", 1000, pi [all...] |
/external/bison/lib/ |
bitset_stats.c | 679 size_t bytes; local 699 bytes = abitset_bytes (n_bits); 700 sbset = xcalloc (1, bytes); 705 bytes = lbitset_bytes (n_bits); 706 sbset = xcalloc (1, bytes); 711 bytes = ebitset_bytes (n_bits); 712 sbset = xcalloc (1, bytes); 717 bytes = vbitset_bytes (n_bits); 718 sbset = xcalloc (1, bytes);
|
quotearg.c | 470 be the first bytes of multibyte characters, which means 543 size_t bytes = mbrtowc (&w, &arg[i + m], local 545 if (bytes == 0) 547 else if (bytes == (size_t) -1) 552 else if (bytes == (size_t) -2) 569 for (j = 1; j < bytes; j++) 583 m += bytes; 692 embedded null bytes only if ARGSIZE is not SIZE_MAX, SIZE is not 701 /* Elide embedded null bytes if we can't return a size. */ 795 /* Elide embedded null bytes since we don't return a size. * [all...] |
/external/blktrace/ |
blktrace_api.h | 100 __u32 bytes; /* transfer length */ member in struct:blk_io_trace
|
/external/bluetooth/bluedroid/btif/src/ |
btif_config.c | 61 #define GET_CHILD_MAX_COUNT(node) (short)((int)(node)->bytes / sizeof(cfg_node)) 63 #define GET_NODE_COUNT(bytes) (bytes / sizeof(cfg_node)) 80 short bytes; member in struct:cfg_node_s 99 const char* value, short bytes, short type); 102 static short find_next_node(const cfg_node* p, short start, char* name, int* bytes); 112 BTIF_TRACE_DEBUG4("%s, p->name:%s, child/value:%p, bytes:%d", 113 title, p->name, p->child, p->bytes); 179 int btif_config_get(const char* section, const char* key, const char* name, char* value, int* bytes, int* type) 182 asrt(section && *section && key && *key && name && *name && bytes && type) [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
stun.h | 67 STUN_ATTR_USERNAME = 0x0006, // ByteString, multiple of 4 bytes 68 STUN_ATTR_PASSWORD = 0x0007, // ByteString, multiple of 4 bytes 69 STUN_ATTR_MESSAGE_INTEGRITY = 0x0008, // ByteString, 20 bytes 76 STUN_ATTR_MAGIC_COOKIE = 0x000f, // ByteString, 4 bytes 254 const char* bytes() const { return bytes_; } function in class:cricket::StunByteStringAttribute 256 void SetBytes(char* bytes, uint16 length); 258 void CopyBytes(const char* bytes); // uses strlen 259 void CopyBytes(const void* bytes, uint16 length);
|
/external/dhcpcd/ |
dhcp.c | 496 ssize_t b, bytes = 0, ocets; local 517 bytes += ((4 * 4) * 2) + 4; 549 return bytes; 655 ssize_t b, bytes = 0; local 687 bytes += b; 689 bytes += 16 * 2 + 8 + 2 + 1 + 2; 704 bytes += b; 706 bytes += (4 * 4); 710 return bytes; 1118 ssize_t bytes = sizeof(*dhcp) local 1169 ssize_t bytes; local 1196 ssize_t bytes = 0; local 1266 ssize_t bytes = 0; local [all...] |
/external/eigen/Eigen/src/Core/util/ |
Memory.h | 89 * Fast, but wastes 16 additional bytes of memory. Does not throw any exception. 191 /** \internal Allocates \a size bytes. The returned pointer is guaranteed to have 16 bytes alignment. 278 /** \internal Allocates \a size bytes. If Align is true, then the returned ptr is 16-byte-aligned. 351 /** \internal Allocates \a size objects of type T. The returned pointer is guaranteed to have 16 bytes alignment. 440 * power of 2, the packet size in bytes is also a power of 2, and is a multiple of sizeof(Scalar). On the 637 * // Matrix4f requires 16 bytes alignment: 640 * // Vector3f does not require 16 bytes alignment, no need to use Eigen's allocator: 801 unsigned char * bytes = reinterpret_cast<unsigned char *>(abcd)+2; local 805 switch(bytes[i] [all...] |
/external/icu4c/common/ |
ucnv_lmb.c | 72 based, in that the bytes from 0x20 - 0x7F are almost exactly the 76 bytes from 0x20-0x7F are represented by the same single-byte values in LMBCS. 78 The general LMBCS code unit is from 1-3 bytes. We can describe the 3 bytes as 84 data bytes. The maximum size of a LMBCS chjaracter is 3 bytes: 88 The single-byte values from 0x20 to 0x7F are examples of single D1 bytes. 103 which national character standard is being used for the 'D' bytes. 123 character is one of those 12 values, you can interpret the remaining bytes of 125 ANSI bytes already are represented in single bytes, using one of the character 1206 char bytes[2]; local [all...] |
/external/icu4c/test/cintltst/ |
custrtrn.c | 873 static const uint8_t bytes[]={ 0xe0, 0xa5, 0x9c, 0 }; local 924 static const uint8_t bytes[]={ local [all...] |
trie2test.c | 376 uint32_t value, bytes; local 386 /* first a couple of trail bytes in lead position */ 435 bytes=0; 438 bytes=(bytes<<8)|s[prev8++]; 443 testName, (unsigned long)bytes, (long)c, (long)value, (long)values[i]); 447 testName, (unsigned long)bytes, (long)c, (long)(p-s), (long)i8); 465 bytes=0; 469 bytes=(bytes<<8)|s[k++] [all...] |
udatatst.c | 1163 const char *bytes; member in struct:__anon8845 [all...] |