Home
last modified time | relevance | path

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

/external/libusb/libusb/os/
Dthreads_windows.c28 struct usbi_cond_perthread { struct
123 struct usbi_cond_perthread *pos, *next_pos; in usbi_cond_destroy()
129 list_for_each_entry_safe(pos, next_pos, &cond->not_waiting, list, struct usbi_cond_perthread) { in usbi_cond_destroy()
143 struct usbi_cond_perthread *pos; in usbi_cond_broadcast()
147 list_for_each_entry(pos, &cond->waiters, list, struct usbi_cond_perthread) { in usbi_cond_broadcast()
158 struct usbi_cond_perthread *pos; in usbi_cond_intwait()
164 list_for_each_entry(pos, &cond->not_waiting, list, struct usbi_cond_perthread) { in usbi_cond_intwait()
172 pos = calloc(1, sizeof(struct usbi_cond_perthread)); in usbi_cond_intwait()