HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 901 - 925 of 3342) sorted by null

<<31323334353637383940>>

  /system/core/adb/
shell_service.cpp 115 int bytes = adb_read(fd, buffer, sizeof(buffer)); local
116 if (bytes <= 0) {
119 received.append(buffer, bytes);
609 int bytes = adb_write(stdinout_sfd_, input_->data() + index, input_bytes_left_); local
610 if (bytes == 0 || (bytes < 0 && errno != EAGAIN)) {
611 if (bytes < 0) {
618 } else if (bytes > 0) {
619 input_bytes_left_ -= bytes;
627 int bytes = adb_read(*sfd, output_->data(), output_->data_capacity()) local
    [all...]
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd.h 101 uint64_t bytes; /* # of bytes written */ member in struct:__anon106931
  /system/media/audio_route/
audio_route.c 39 unsigned char *bytes; member in union:ctl_values
139 ALOGE(" id=%d value=0x%02x", j, path->setting[i].value.bytes[j]);
330 path->setting[path_index].value.bytes[0] = mixer_value->value;
341 path->setting[path_index].value.bytes[i] = mixer_value->value;
352 path->setting[path_index].value.bytes[mixer_value->index] = mixer_value->value;
530 ar->mixer_state[ctl_index].new_value.bytes[id] = value;
542 ar->mixer_state[ctl_index].new_value.bytes[i] = value;
656 if (ar->mixer_state[i].old_value.bytes[j] != ar->mixer_state[i].new_value.bytes[j]) {
810 if (ms->old_value.bytes[j] != ms->new_value.bytes[j])
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
libbfd.c 410 sections; each access (except for bytes) is vectored through
808 int bytes;
813 bytes = bits / 8;
814 for (i = 0; i < bytes; i++)
816 int addr_index = big_p ? bytes - i - 1 : i;
829 int bytes;
835 bytes = bits / 8;
836 for (i = 0; i < bytes; i++)
838 int addr_index = big_p ? i : bytes - i - 1;
806 int bytes; local
827 int bytes; local
  /external/owasp/sanitizer/lib/commons-codec-1.4/
commons-codec-1.4.jar 
  /prebuilts/devtools/tools/lib/
commons-codec-1.4.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.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 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar 
  /prebuilts/tools/common/offline-m2/commons-codec/commons-codec/1.4/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/com/cedarsoftware/java-util/1.24.0/
java-util-1.24.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /prebuilts/misc/common/robolectric/lib/
commons-codec-1.3.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.3/
commons-codec-1.3.jar 
  /art/runtime/
dex_file_verifier_test.cc 273 // Unroll this, as we only have three bytes, anyways.
312 // Figure out how many bytes the code_off is.
315 size_t bytes = tmp - ptr; local
318 for (size_t i = 1; i < bytes; ++i) {
    [all...]
  /bionic/libc/kernel/uapi/linux/
blktrace_api.h 114 __u32 bytes; member in struct:blk_io_trace
  /bionic/tools/relocation_packer/src/
elf_file.cc 42 // Alignment to preserve, in bytes. This must be at least as large as the
572 size_t bytes = dynamics.size() * sizeof(dynamics[0]); local
573 RewriteSectionData(dynamic_section, section_data, bytes);
732 VLOG(1) << "Unpacked : " << initial_bytes << " bytes";
739 VLOG(1) << "Packed (no padding): " << packed_bytes_estimate << " bytes";
755 VLOG(1) << "Compaction : " << hole_size << " bytes";
787 const size_t bytes = packed.size() * sizeof(packed[0]); local
788 ResizeSection(elf_, relocations_section_, bytes,
790 RewriteSectionData(relocations_section_, packed_data, bytes);
838 // Convert data to a vector of bytes
    [all...]
  /bootable/recovery/updater/
install.cpp 263 // fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
264 // fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
267 // if fs_size < 0, then reserve that many bytes at the end of the partition (not for "f2fs")
461 << entry.uncompressed_length << " bytes) to \"" << dest_path
499 "%s: Failed to extract entry \"%s\" (%zu bytes) to memory: %s", name,
558 ErrorAbort(state, kFreadFailure, "%s: failed to read %zu bytes from %s", name,
590 // apply_patch_space(bytes)
602 size_t bytes; local
603 if (!android::base::ParseUint(bytes_str.c_str(), &bytes)) {
608 return StringValue(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
  /cts/tests/tests/media/src/android/media/cts/
AudioHelper.java 352 int bytes = super.read(audioBuffer, sizeInBytes); local
358 copy.position(0).limit(bytes); // read places data at the start of the buffer.
359 Assert.assertEquals(bytes, mTrack.write(copy, bytes, AudioTrack.WRITE_BLOCKING));
360 mPosition += bytes /
364 return bytes;
369 int bytes = super.read(audioBuffer, sizeInBytes, readMode); local
375 copy.position(0).limit(bytes); // read places data at the start of the buffer.
376 Assert.assertEquals(bytes, mTrack.write(copy, bytes, AudioTrack.WRITE_BLOCKING))
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
BytecodeArray.java 42 /** {@code non-null;} underlying bytes */
43 private final ByteArray bytes; field in class:BytecodeArray
54 * @param bytes {@code non-null;} underlying bytes
58 public BytecodeArray(ByteArray bytes, ConstantPool pool) {
59 if (bytes == null) {
60 throw new NullPointerException("bytes == null");
67 this.bytes = bytes;
77 return bytes;
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 220 ByteArray bytes = cf.getBytes(); local
222 int maxStack = bytes.getUnsignedShort(offset); // u2 max_stack
223 int maxLocals = bytes.getUnsignedShort(offset + 2); // u2 max_locals
224 int codeLength = bytes.getInt(offset + 4); // u4 code_length
228 observer.parsed(bytes, offset, 2,
230 observer.parsed(bytes, offset + 2, 2,
232 observer.parsed(bytes, offset + 4, 4,
247 new BytecodeArray(bytes.slice(codeOffset, codeOffset + codeLength),
254 int exceptionTableLength = bytes.getUnsignedShort(offset);
260 observer.parsed(bytes, offset, 2
324 ByteArray bytes = cf.getBytes(); local
358 ByteArray bytes = cf.getBytes(); local
387 ByteArray bytes = cf.getBytes(); local
415 ByteArray bytes = cf.getBytes(); local
472 ByteArray bytes = cf.getBytes(); local
513 ByteArray bytes = cf.getBytes(); local
536 ByteArray bytes = cf.getBytes(); local
685 ByteArray bytes = cf.getBytes(); local
703 ByteArray bytes = cf.getBytes().slice(offset, offset + length); local
724 ByteArray bytes = cf.getBytes(); local
    [all...]
  /developers/build/prebuilts/gradle/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
BluetoothChatService.java 244 * @param out The bytes to write
488 int bytes; local
494 bytes = mmInStream.read(buffer);
496 // Send the obtained bytes to the UI Activity
497 mHandler.obtainMessage(Constants.MESSAGE_READ, bytes, -1, buffer)
510 * @param buffer The bytes to write
  /developers/samples/android/connectivity/bluetooth/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
BluetoothChatService.java 244 * @param out The bytes to write
488 int bytes; local
494 bytes = mmInStream.read(buffer);
496 // Send the obtained bytes to the UI Activity
497 mHandler.obtainMessage(Constants.MESSAGE_READ, bytes, -1, buffer)
510 * @param buffer The bytes to write

Completed in 616 milliseconds

<<31323334353637383940>>