Home | History | Annotate | Download | only in adb

Lines Matching full:handle_list

60 static usb_handle handle_list = {
61 .prev = &handle_list,
62 .next = &handle_list,
68 /// Checks if there is opened usb handle in handle_list for this device.
71 /// Checks if there is opened usb handle in handle_list for this device.
75 /// Registers opened usb handle (adds it to handle_list).
121 for(usb = handle_list.next; usb != &handle_list; usb = usb->next) {
158 handle->next = &handle_list;
159 handle->prev = handle_list.prev;