HomeSort by relevance Sort by last modified time
    Searched refs:actual_length (Results 1 - 25 of 45) sorted by null

1 2

  /external/perf_data_converter/src/quipper/
buffer_reader.cc 22 size_t actual_length = strnlen(buffer_ + offset_, size);
23 *str = string(buffer_ + offset_, actual_length);
file_reader.cc 43 size_t actual_length = strnlen(str->data(), size);
44 str->resize(actual_length);
  /frameworks/av/media/mtp/
MtpEventPacket.cpp 67 mPacketSize = req->actual_length;
68 return req->actual_length;
  /external/webrtc/webrtc/p2p/base/
asyncstuntcpsocket.cc 105 size_t actual_length = expected_pkt_len + pad_bytes;
107 if (*len < actual_length) {
114 *len -= actual_length;
116 memmove(data, data + actual_length, *len);
  /external/webrtc/webrtc/test/testsupport/
packet_reader_unittest.cc 30 int actual_length,
33 EXPECT_EQ(static_cast<int>(expected_length), actual_length); local
36 actual_length));
  /external/libusb/examples/
sam3u_benchmark.c 62 printf("pack%u length:%u, actual_length:%u\n", i, pack->length, pack->actual_length);
66 printf("length:%u, actual_length:%u\n", xfr->length, xfr->actual_length);
67 for (i = 0; i < xfr->actual_length; i++) {
76 num_bytes += xfr->actual_length;
  /external/libusb/libusb/
sync.c 41 usbi_dbg("actual_length=%d", transfer->actual_length);
134 transfer->actual_length);
138 r = transfer->actual_length;
194 *transferred = transfer->actual_length;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
usbdevice_fs.h 92 unsigned int actual_length; member in struct:usbdevfs_iso_packet_desc
103 int actual_length; member in struct:usbdevfs_urb
  /external/v8/src/profiler/
strings-storage.cc 84 int actual_length = 0; local
86 DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL, 0, length, &actual_length);
87 return AddOrDisposeString(data.release(), actual_length);
  /bionic/libc/kernel/uapi/linux/
usbdevice_fs.h 67 unsigned int actual_length; member in struct:usbdevfs_iso_packet_desc
77 int actual_length; member in struct:usbdevfs_urb
  /external/kernel-headers/original/uapi/linux/
usbdevice_fs.h 93 unsigned int actual_length; member in struct:usbdevfs_iso_packet_desc
104 int actual_length; member in struct:usbdevfs_urb
  /external/libusb/libusb/os/
linux_usbfs.h 80 unsigned int actual_length; member in struct:usbfs_iso_packet_desc
95 int actual_length; member in struct:usbfs_urb
linux_usbfs.c     [all...]
  /device/google/cuttlefish_common/guest/commands/usbforward/
usb_server.h 68 const uint8_t* buffer, int32_t actual_length);
usb_server.cpp 249 int32_t actual_length) {
255 fd_->Write(&actual_length, sizeof(actual_length));
256 if (actual_length > 0) {
260 while (sent < actual_length) {
261 int packet_size = fd_->Write(&buffer[sent], actual_length - sent);
263 ALOGV("Sending response, %d / %d bytes sent", sent, actual_length);
transport_request.cpp 84 treq->callback_(req->status == 0, treq->Buffer(), req->actual_length);
  /device/google/cuttlefish_common/host/libs/usbip/
messages.h 80 uint32_t actual_length; member in struct:vadb::usbip::CmdRepSubmit
messages.cpp 77 out << "\t\tlen:\t" << submit.actual_length << '\n';
client.cpp 90 rval.actual_length = HostToNet(t.actual_length);
251 rep.actual_length = data.size();
  /external/sfntly/cpp/src/sfntly/data/
byte_array.cc 56 int32_t actual_length = std::min<int32_t>(length, filled_length_ - index); local
57 return InternalGet(index, b, offset, actual_length);
91 int32_t actual_length = std::min<int32_t>(length, Size() - index); local
92 int32_t bytes_written = InternalPut(index, b, offset, actual_length);
  /external/webrtc/webrtc/base/
testutils.h 475 size_t actual_length)
477 if ((expected_length == actual_length)
486 size_t buffer_size = actual_length * 2 + 1;
489 reinterpret_cast<const char*>(actual), actual_length);
490 msg << "\n Actual: " << buffer << " [" << actual_length << "]"; local
525 #define EXPECT_MEMEQ(expected, expected_length, actual, actual_length) \
527 actual, actual_length)
529 #define ASSERT_MEMEQ(expected, expected_length, actual, actual_length) \
531 actual, actual_length)
  /system/core/libusbhost/include/usbhost/
usbhost.h 47 int actual_length; member in struct:usb_request
  /external/libusb-compat/libusb/
core.c 749 int actual_length; local
753 &actual_length, timeout);
757 if (r == 0 || (r == LIBUSB_ERROR_TIMEOUT && actual_length > 0))
758 return actual_length;
794 int actual_length; local
798 &actual_length, timeout);
802 if (r == 0 || (r == LIBUSB_ERROR_TIMEOUT && actual_length > 0))
803 return actual_length;
  /frameworks/base/core/jni/
android_hardware_UsbRequest.cpp 134 return (jint) request->actual_length;
211 return (jint) request->actual_length;
  /system/core/adb/client/
usb_libusb.cpp 512 if (info->is_bulk_out && transfer->actual_length != transfer->length) {
514 transfer->length -= transfer->actual_length;
515 transfer->buffer += transfer->actual_length;
614 LOG(DEBUG) << "usb_read(" << len << ") = " << rc << ", actual_length "
615 << info->transfer->actual_length;
619 return info->transfer->actual_length;

Completed in 1929 milliseconds

1 2