Home
last modified time | relevance | path

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

/system/core/adb/client/
Dusb_linux.cpp141 unsigned char* bufptr = devdesc; in find_usb_device() local
164 bufend = bufptr + desclength; in find_usb_device()
173 device = (struct usb_device_descriptor*)bufptr; in find_usb_device()
174 bufptr += USB_DT_DEVICE_SIZE; in find_usb_device()
186 config = (struct usb_config_descriptor *)bufptr; in find_usb_device()
187 bufptr += USB_DT_CONFIG_SIZE; in find_usb_device()
195 while (bufptr < bufend) { in find_usb_device()
196 unsigned char length = bufptr[0]; in find_usb_device()
197 unsigned char type = bufptr[1]; in find_usb_device()
200 interface = (struct usb_interface_descriptor *)bufptr; in find_usb_device()
[all …]
/system/libhidl/transport/include/hidl/
DHidlBinderSupport.h251 T const* *bufptr, in readReferenceFromParcel()
257 status_t result = parcel.readReference(reinterpret_cast<void const* *>(bufptr), in readReferenceFromParcel()
/system/libhwbinder/include/hwbinder/
DParcel.h175 status_t readReference(void const* *bufptr,
177 status_t readEmbeddedReference(void const* *bufptr, size_t *buffer_handle,
/system/libhwbinder/
DParcel.cpp1627 status_t Parcel::readReference(void const* *bufptr, in readReference() argument
1645 if(bufptr != nullptr) { in readReference()
1646 *bufptr = (void*)buffer_obj->buffer; in readReference()
1656 status_t Parcel::readEmbeddedReference(void const* *bufptr, in readEmbeddedReference() argument
1664 return (readReference(bufptr, buffer_handle, isRef)); in readEmbeddedReference()