OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LIBUSB_CONTROL_SETUP_SIZE
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/third_party/libusb/src/libusb/
sync.c
102
buffer = (unsigned char*) malloc(
LIBUSB_CONTROL_SETUP_SIZE
+ wLength);
111
memcpy(buffer +
LIBUSB_CONTROL_SETUP_SIZE
, data, wLength);
libusb.h
896
#define
LIBUSB_CONTROL_SETUP_SIZE
(sizeof(struct libusb_control_setup))
[
all
...]
io.c
355
* the setup packet (
LIBUSB_CONTROL_SETUP_SIZE
).
358
* -# Allocate a buffer of size
LIBUSB_CONTROL_SETUP_SIZE
plus the size of the
364
* in the data buffer, starting at offset
LIBUSB_CONTROL_SETUP_SIZE
.
383
* at offset
LIBUSB_CONTROL_SETUP_SIZE
into the buffer.
[
all
...]
/external/libusb/libusb/
sync.c
84
buffer = malloc(
LIBUSB_CONTROL_SETUP_SIZE
+ wLength);
93
memcpy(buffer +
LIBUSB_CONTROL_SETUP_SIZE
, data, wLength);
libusb.h
538
#define
LIBUSB_CONTROL_SETUP_SIZE
(sizeof(struct libusb_control_setup))
836
return transfer->buffer +
LIBUSB_CONTROL_SETUP_SIZE
;
935
transfer->length =
LIBUSB_CONTROL_SETUP_SIZE
[
all
...]
io.c
353
* the setup packet (
LIBUSB_CONTROL_SETUP_SIZE
).
356
* -# Allocate a buffer of size
LIBUSB_CONTROL_SETUP_SIZE
plus the size of the
362
* in the data buffer, starting at offset
LIBUSB_CONTROL_SETUP_SIZE
.
381
* at offset
LIBUSB_CONTROL_SETUP_SIZE
into the buffer.
[
all
...]
/external/chromium_org/device/usb/
usb_device_handle_impl.cc
354
const size_t resized_length =
LIBUSB_CONTROL_SETUP_SIZE
+ length;
361
memcpy(resized_buffer->data() +
LIBUSB_CONTROL_SETUP_SIZE
,
597
CHECK(transfer.length >=
LIBUSB_CONTROL_SETUP_SIZE
)
600
if (transfer.length >= (
LIBUSB_CONTROL_SETUP_SIZE
+ actual_length)) {
607
transfer.buffer->data() +
LIBUSB_CONTROL_SETUP_SIZE
,
/external/libusb/examples/
dpfp.c
167
unsigned char *buf = malloc(
LIBUSB_CONTROL_SETUP_SIZE
+ 1);
181
buf[
LIBUSB_CONTROL_SETUP_SIZE
] = data;
dpfp_threaded.c
196
unsigned char *buf = malloc(
LIBUSB_CONTROL_SETUP_SIZE
+ 1);
210
buf[
LIBUSB_CONTROL_SETUP_SIZE
] = data;
/external/chromium_org/third_party/libusb/src/libusb/os/
windows_usb.c
[
all
...]
openbsd_usb.c
704
req.ucr_data = transfer->buffer +
LIBUSB_CONTROL_SETUP_SIZE
;
darwin_usb.c
[
all
...]
linux_usbfs.c
[
all
...]
/external/libusb/libusb/os/
darwin_usb.c
[
all
...]
linux_usbfs.c
[
all
...]
Completed in 49 milliseconds