Lines Matching refs:hdl
261 void *hdl;
267 hdl = dlopen(modname, RTLD_NOW);
268 if (hdl == NULL) {
273 hdl_sym1 = (void *)(dlsym(hdl, symbol1));
274 hdl_sym2 = (void *)(dlsym(hdl, symbol2));
275 (void) dlclose(hdl);
494 /* Not the last dev hdl */
500 /* Not the first dev hdl */
507 * first dev hdl on list
528 * there also needs to be a valid dlopen hdl for the plugin
895 void (*hdl)(int);
919 hdl = USB_SET_DEBUG_CAST
921 (*hdl)(libusb_debug);
1028 struct usb_dev_handle *(*hdl)(struct usb_device *);
1050 hdl = USB_OPEN_CAST(p_info[pindex].sym_hdl[USB_OPEN]);
1051 dev = (*hdl)(device);
1066 int (*hdl)(usb_dev_handle *);
1077 hdl = USB_CLOSE_CAST(p_info[pindex].sym_hdl[USB_CLOSE]);
1079 ret = (*hdl)(dev);
1089 int (*hdl)(usb_dev_handle *, int, int, char *, size_t);
1091 if ((hdl = USB_GET_STRING_CAST
1098 return ((*hdl)(dev, index, langid, buf, buflen));
1106 int (*hdl)(usb_dev_handle *, int, char *, size_t);
1108 if ((hdl = USB_GET_STRING_SIMPLE_CAST
1115 return ((*hdl)(dev, index, buf, buflen));
1123 int (*hdl)(usb_dev_handle *, int, unsigned char,
1126 if ((hdl = USB_GET_DESCRIPTOR_BY_ENDPOINT_CAST
1134 return ((*hdl)(dev, ep, type, index, buf, size));
1142 int (*hdl)(usb_dev_handle *, unsigned char,
1145 if ((hdl = USB_GET_DESCRIPTOR_CAST
1152 return ((*hdl)(dev, type, index, buf, size));
1159 int (*hdl)(usb_dev_handle *, int, char *, int, int);
1161 if ((hdl = USB_BULK_WRITE_CAST
1167 return (*hdl)(dev, ep, bytes, size, timeout);
1174 int (*hdl)(usb_dev_handle *, int, char *, int, int);
1176 if ((hdl = USB_BULK_READ_CAST
1183 return ((*hdl)(dev, ep, bytes, size, timeout));
1191 int (*hdl)(usb_dev_handle *, int, char *, int, int);
1193 if ((hdl = USB_INTERRUPT_READ_CAST
1200 return ((*hdl)(dev, ep, bytes, size, timeout));
1208 int (*hdl)(usb_dev_handle *, int, char *, int, int);
1210 if ((hdl = USB_INTERRUPT_WRITE_CAST
1217 return ((*hdl)(dev, ep, bytes, size, timeout));
1225 int (*hdl)(usb_dev_handle *, int, int, int, int, char *, int, int);
1227 if ((hdl = USB_CONTROL_MSG_CAST
1234 return ((*hdl)(dev, requesttype, request, value, index,
1242 int (*hdl)(usb_dev_handle *, int);
1244 if ((hdl = USB_SET_CONFIGURATION_CAST
1251 return ((*hdl)(dev, configuration));
1258 int (*hdl)(usb_dev_handle *, int);
1260 if ((hdl = USB_CLAIM_INTERFACE_CAST
1267 return ((*hdl)(dev, interface));
1274 int (*hdl)(usb_dev_handle *, int);
1276 if ((hdl = USB_RELEASE_INTERFACE_CAST
1283 return ((*hdl)(dev, interface));
1290 int (*hdl)(usb_dev_handle *, int);
1292 if ((hdl = USB_SET_ALTINTERFACE_CAST
1299 return ((*hdl)(dev, alternate));
1306 int (*hdl)(usb_dev_handle *, unsigned int);
1308 if ((hdl = USB_RESETEP_CAST
1315 return ((*hdl)(dev, ep));
1323 int (*hdl)(usb_dev_handle *, unsigned int);
1325 if ((hdl = USB_CLEAR_HALT_CAST
1332 return ((*hdl)(dev, ep));
1339 int (*hdl)(usb_dev_handle *);
1341 if ((hdl = USB_RESET_CAST
1347 return ((*hdl)(dev));
1389 struct usb_device *((*hdl)(usb_dev_handle *));
1391 if ((hdl = USB_DEVICE_CAST
1398 return ((*hdl)(dev));