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

/system/core/adb/client/
H A Dusb_linux.cpp141 unsigned char* bufptr = devdesc; local
164 bufend = bufptr + desclength;
173 device = (struct usb_device_descriptor*)bufptr;
174 bufptr += USB_DT_DEVICE_SIZE;
186 config = (struct usb_config_descriptor *)bufptr;
187 bufptr += USB_DT_CONFIG_SIZE;
195 while (bufptr < bufend) {
196 unsigned char length = bufptr[0];
197 unsigned char type = bufptr[1];
200 interface = (struct usb_interface_descriptor *)bufptr;
[all...]
/system/libhidl/transport/include/hidl/
H A DHidlBinderSupport.h185 T const* * /* bufptr */,
192 // *bufptr is ignored because, if I am embedded in some
196 nullptr, // ignored, not written to bufptr.
251 T const* *bufptr,
257 status_t result = parcel.readReference(reinterpret_cast<void const* *>(bufptr),
250 readReferenceFromParcel( T const* *bufptr, const Parcel & parcel, size_t *handle, bool *shouldResolveRefInBuffer ) argument
/system/libhwbinder/include/hwbinder/
H A DParcel.h175 status_t readReference(void const* *bufptr,
177 status_t readEmbeddedReference(void const* *bufptr, size_t *buffer_handle,
/system/libhwbinder/
H A DParcel.cpp1627 status_t Parcel::readReference(void const* *bufptr, argument
1645 if(bufptr != nullptr) {
1646 *bufptr = (void*)buffer_obj->buffer;
1656 status_t Parcel::readEmbeddedReference(void const* *bufptr, argument
1664 return (readReference(bufptr, buffer_handle, isRef));

Completed in 3014 milliseconds