usb_parse_data - Tokenize and align the bytes of raw variable-format data
#include <sys/usb/usba.h> size_t usb_parse_data(char *format, uchar_t *data, size_t datalen, void *structure, size_t structlen);
Solaris DDI specific (Solaris DDI)
format
data
datalen
structure
structlen
The usb_parse_data function parses data such as a variable-format class- or vendor-specific descriptor. The function also tokenizes and aligns the bytes of raw descriptor data into fields of a variable-format descriptor.
While the USBA framework can parse the endpoint, interface, configuration, and string descriptors defined by the USB 2.0 specification, the format of class- or vendor-specific descriptors cannot be explicitly defined by the specification and will be unique for each. The format argument defines how to parse such a descriptor.
While the USB specification defines bit ordering as little-endian, this routine (like the entire API), converts the data to the endianness of the host.
The structlen parameter defines the size of the destination data buffer. Data is truncated to this size if the destination data buffer is too small.
On success: Returns the size (in bytes) of the parsed data result.
On failure: Returns 0. (Same as USB_PARSE_ERROR).
May be called from user, kernel or interrupt context.
/* * Parse raw descriptor data in buf, putting result into ret_descr. * ret_buf_len holds the size of ret_descr buf; routine returns * number of resulting bytes. * * Descriptor being parsed has 2 chars, followed by one short, * 3 chars and one more short. */ size_t size_of_returned_descr; xxx_descr_t ret_descr; size_of_returned_descr = usb_parse_data("ccscccs", buf, sizeof(buf), (void *)ret_descr, (sizeof)xxx_descr_t)); if (size_of_returned_descr < (sizeof (xxx_descr_t))) { /* Data truncated. */ } or: size_of_returned_descr = usb_parse_data("2cs3cs", buf, sizeof(buf), (void *)ret_descr, (sizeof)xxx_descr_t)); if (size_of_returned_descr < (sizeof (xxx_descr_t))) { /* Data truncated. */ }
See attributes(5) for descriptions of the following attributes:
|
attributes(5), usb_get_dev_data(9F), usb_get_string_descr(9F), usb_get_cfg(9F)
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |