Searched refs:bulk_in (Results 1 - 1 of 1) sorted by relevance

/system/core/adb/
H A Dusb_linux_client.cpp58 int bulk_in; /* "in" from the host's perspective => sink for adbd */ member in struct:usb_handle
373 h->bulk_in = adb_open(USB_FFS_ADB_IN, O_RDWR);
374 if (h->bulk_in < 0) {
382 if (h->bulk_in > 0) {
383 adb_close(h->bulk_in);
384 h->bulk_in = -1;
404 while (usb->control != -1 && usb->bulk_in != -1 && usb->bulk_out != -1)
411 if (usb->control >= 0 && usb->bulk_in >= 0 && usb->bulk_out >= 0)
426 static int bulk_write(int bulk_in, const uint8_t* buf, size_t length) argument
432 ret = adb_write(bulk_in, bu
[all...]

Completed in 24 milliseconds