/external/libusb/libusb/ |
libusb.h | 544 struct libusb_device_handle; 591 typedef struct libusb_device_handle libusb_device_handle; typedef in typeref:struct:libusb_device_handle 718 libusb_device_handle *dev_handle; 784 int libusb_get_configuration(libusb_device_handle *dev, int *config); 799 int libusb_open(libusb_device *dev, libusb_device_handle **handle); 800 void libusb_close(libusb_device_handle *dev_handle); 801 libusb_device *libusb_get_device(libusb_device_handle *dev_handle); 803 int libusb_set_configuration(libusb_device_handle *dev, int configuration); 804 int libusb_claim_interface(libusb_device_handle *dev, int iface) [all...] |
libusbi.h | 221 struct libusb_device_handle { struct 301 void usbi_handle_disconnect(struct libusb_device_handle *handle); 443 int (*open)(struct libusb_device_handle *handle); 453 void (*close)(struct libusb_device_handle *handle); 544 int (*get_configuration)(struct libusb_device_handle *handle, int *config); 561 int (*set_configuration)(struct libusb_device_handle *handle, int config); 580 int (*claim_interface)(struct libusb_device_handle *handle, int iface); 597 int (*release_interface)(struct libusb_device_handle *handle, int iface); 613 int (*set_interface_altsetting)(struct libusb_device_handle *handle, 627 int (*clear_halt)(struct libusb_device_handle *handle [all...] |
core.c | 359 libusb_device_handle *handle; 398 * (a \ref libusb_device_handle pointer). All "real" I/O operations then 857 API_EXPORTED int libusb_open(libusb_device *dev, libusb_device_handle **handle) 860 struct libusb_device_handle *_handle; [all...] |
sync.c | 72 API_EXPORTED int libusb_control_transfer(libusb_device_handle *dev_handle, 153 static int do_sync_bulk_transfer(struct libusb_device_handle *dev_handle, 255 API_EXPORTED int libusb_bulk_transfer(struct libusb_device_handle *dev_handle, 305 struct libusb_device_handle *dev_handle, unsigned char endpoint,
|
descriptor.c | 675 API_EXPORTED int libusb_get_string_descriptor_ascii(libusb_device_handle *dev,
|
io.c | [all...] |
/external/libusb_aah/libusb/ |
libusb.h | 639 struct libusb_device_handle; 709 typedef struct libusb_device_handle libusb_device_handle; typedef in typeref:struct:libusb_device_handle 886 libusb_device_handle *dev_handle; 966 int LIBUSB_CALL libusb_get_configuration(libusb_device_handle *dev, 986 int LIBUSB_CALL libusb_open(libusb_device *dev, libusb_device_handle **handle); 987 void LIBUSB_CALL libusb_close(libusb_device_handle *dev_handle); 988 libusb_device * LIBUSB_CALL libusb_get_device(libusb_device_handle *dev_handle); 990 int LIBUSB_CALL libusb_set_configuration(libusb_device_handle *dev, 992 int LIBUSB_CALL libusb_claim_interface(libusb_device_handle *dev [all...] |
libusbi.h | 331 struct libusb_device_handle { struct 423 void usbi_handle_disconnect(struct libusb_device_handle *handle); 566 int (*open)(struct libusb_device_handle *handle); 576 void (*close)(struct libusb_device_handle *handle); 667 int (*get_configuration)(struct libusb_device_handle *handle, int *config); 684 int (*set_configuration)(struct libusb_device_handle *handle, int config); 703 int (*claim_interface)(struct libusb_device_handle *handle, int interface_number); 720 int (*release_interface)(struct libusb_device_handle *handle, int interface_number); 736 int (*set_interface_altsetting)(struct libusb_device_handle *handle, 750 int (*clear_halt)(struct libusb_device_handle *handle [all...] |
sync.c | 72 int API_EXPORTED libusb_control_transfer(libusb_device_handle *dev_handle, 156 static int do_sync_bulk_transfer(struct libusb_device_handle *dev_handle, 258 int API_EXPORTED libusb_bulk_transfer(struct libusb_device_handle *dev_handle, 308 struct libusb_device_handle *dev_handle, unsigned char endpoint,
|
core.c | 386 libusb_device_handle *handle; 425 * (a \ref libusb_device_handle pointer). All "real" I/O operations then [all...] |
descriptor.c | 678 int API_EXPORTED libusb_get_string_descriptor_ascii(libusb_device_handle *dev,
|
io.c | [all...] |
/external/libusb-compat/libusb/ |
usbi.h | 49 libusb_device_handle *handle;
|
/external/libusb_aah/libusb/os/ |
openbsd_usb.c | 52 static int obsd_open(struct libusb_device_handle *); 53 static void obsd_close(struct libusb_device_handle *); 62 static int obsd_get_configuration(struct libusb_device_handle *, int *); 63 static int obsd_set_configuration(struct libusb_device_handle *, int); 65 static int obsd_claim_interface(struct libusb_device_handle *, int); 66 static int obsd_release_interface(struct libusb_device_handle *, int); 68 static int obsd_set_interface_altsetting(struct libusb_device_handle *, int, 70 static int obsd_clear_halt(struct libusb_device_handle *, unsigned char); 71 static int obsd_reset_device(struct libusb_device_handle *); 203 obsd_open(struct libusb_device_handle *handle [all...] |
windows_usb.c | 58 static int winusb_open(struct libusb_device_handle *dev_handle); 59 static void winusb_close(struct libusb_device_handle *dev_handle); 60 static int winusb_configure_endpoints(struct libusb_device_handle *dev_handle, int iface); 61 static int winusb_claim_interface(struct libusb_device_handle *dev_handle, int iface); 62 static int winusb_release_interface(struct libusb_device_handle *dev_handle, int iface); 64 static int winusb_set_interface_altsetting(struct libusb_device_handle *dev_handle, int iface, int altsetting); 66 static int winusb_clear_halt(struct libusb_device_handle *dev_handle, unsigned char endpoint); 69 static int winusb_reset_device(struct libusb_device_handle *dev_handle); 74 static int composite_open(struct libusb_device_handle *dev_handle); 75 static void composite_close(struct libusb_device_handle *dev_handle) [all...] |
windows_usb.h | 128 int (*open)(struct libusb_device_handle *dev_handle); 129 void (*close)(struct libusb_device_handle *dev_handle); 130 int (*claim_interface)(struct libusb_device_handle *dev_handle, int iface); 131 int (*set_interface_altsetting)(struct libusb_device_handle *dev_handle, int iface, int altsetting); 132 int (*release_interface)(struct libusb_device_handle *dev_handle, int iface); 133 int (*clear_halt)(struct libusb_device_handle *dev_handle, unsigned char endpoint); 134 int (*reset_device)(struct libusb_device_handle *dev_handle); 224 struct libusb_device_handle *handle)
|
darwin_usb.c | 65 static int darwin_claim_interface(struct libusb_device_handle *dev_handle, int iface); 66 static int darwin_release_interface(struct libusb_device_handle *dev_handle, int iface); 67 static int darwin_reset_device(struct libusb_device_handle *dev_handle); 129 static int ep_to_pipeRef(struct libusb_device_handle *dev_handle, uint8_t ep, uint8_t *pipep, uint8_t *ifcp) { 257 struct libusb_device_handle *handle; 287 list_for_each_entry(handle, &ctx->open_devs, list, struct libusb_device_handle) { 790 static int darwin_open (struct libusb_device_handle *dev_handle) { 860 static void darwin_close (struct libusb_device_handle *dev_handle) { 914 static int darwin_get_configuration(struct libusb_device_handle *dev_handle, int *config) { 922 static int darwin_set_configuration(struct libusb_device_handle *dev_handle, int config) [all...] |
linux_usbfs.c | 168 struct libusb_device_handle *handle) [all...] |
/external/libusb/libusb/os/ |
darwin_usb.c | 53 static int darwin_claim_interface(struct libusb_device_handle *dev_handle, int iface); 54 static int darwin_release_interface(struct libusb_device_handle *dev_handle, int iface); 55 static int darwin_reset_device(struct libusb_device_handle *dev_handle); 116 static int ep_to_pipeRef(struct libusb_device_handle *dev_handle, uint8_t ep, uint8_t *pipep, uint8_t *ifcp) { 216 struct libusb_device_handle *handle; 577 static int darwin_open (struct libusb_device_handle *dev_handle) { 638 static void darwin_close (struct libusb_device_handle *dev_handle) { 692 static int darwin_get_configuration(struct libusb_device_handle *dev_handle, int *config) { 706 static int darwin_set_configuration(struct libusb_device_handle *dev_handle, int config) { 756 static int get_endpoints (struct libusb_device_handle *dev_handle, int iface) [all...] |
linux_usbfs.c | 152 struct libusb_device_handle *handle) 1049 static int op_open(struct libusb_device_handle *handle) 1075 static void op_close(struct libusb_device_handle *dev_handle) 1082 static int op_get_configuration(struct libusb_device_handle *handle, 1096 static int op_set_configuration(struct libusb_device_handle *handle, int config) 1131 static int op_claim_interface(struct libusb_device_handle *handle, int iface) 1150 static int op_release_interface(struct libusb_device_handle *handle, int iface) 1165 static int op_set_interface(struct libusb_device_handle *handle, int iface, 1189 static int op_clear_halt(struct libusb_device_handle *handle, 1209 static int op_reset_device(struct libusb_device_handle *handle [all...] |
/external/libusb/examples/ |
dpfp.c | 60 static struct libusb_device_handle *devh = NULL;
|
dpfp_threaded.c | 61 static struct libusb_device_handle *devh = NULL;
|
/external/libusb_aah/examples/ |
dpfp.c | 60 static struct libusb_device_handle *devh = NULL;
|
dpfp_threaded.c | 61 static struct libusb_device_handle *devh = NULL;
|
/system/core/adb/ |
usb_libusb.c | 49 libusb_device_handle *devh;
|