Home
last modified time | relevance | path

Searched refs:next_interface (Results 1 – 3 of 3) sorted by relevance

/aosp12/system/core/fastboot/
H A Dusb_windows.cpp341 AdbInterfaceInfo* next_interface = (AdbInterfaceInfo*)(&entry_buffer[0]); in find_usb_device() local
352 while (AdbNextInterface(enum_handle, next_interface, &entry_buffer_size)) { in find_usb_device()
356 const wchar_t* wchar_name = next_interface->device_name; in find_usb_device()
364 DBG("attempting to open interface %S\n", next_interface->device_name); in find_usb_device()
365 handle = do_usb_open(next_interface->device_name); in find_usb_device()
H A Dusb_osx.cpp177 goto next_interface; in try_interfaces()
186 goto next_interface; in try_interfaces()
259 next_interface: in try_interfaces()
/aosp12/packages/modules/adb/client/
H A Dusb_windows.cpp544 AdbInterfaceInfo* next_interface = (AdbInterfaceInfo*)(&entry_buffer[0]); in find_devices() local
556 while (AdbNextInterface(enum_handle, next_interface, &entry_buffer_size)) { in find_devices()
558 if (!known_device(next_interface->device_name)) { in find_devices()
560 handle = do_usb_open(next_interface->device_name); in find_devices()
564 D("adding a new device %ls", next_interface->device_name); in find_devices()
581 D("register_new_device failed for %ls", next_interface->device_name); in find_devices()