Searched defs:bulk_out (Results 1 - 1 of 1) sorted by relevance

/system/core/adb/
H A Dusb_linux_client.c54 int bulk_out; /* "out" from the host's perspective => source for adbd */ member in struct:usb_handle
286 h->bulk_out = adb_open(USB_FFS_ADB_OUT, O_RDWR);
287 if (h->bulk_out < 0) {
305 if (h->bulk_out > 0) {
306 adb_close(h->bulk_out);
307 h->bulk_out = -1;
378 static int bulk_read(int bulk_out, char *buf, size_t length) argument
384 ret = adb_read(bulk_out, buf + count, length - count);
388 bulk_out, length, count);
403 D("about to read (fd=%d, len=%d)\n", h->bulk_out, le
[all...]

Completed in 3 milliseconds