HomeSort by relevance Sort by last modified time
    Searched full:desclength (Results 1 - 2 of 2) sorted by null

  /system/core/adb/
usb_linux.cpp 157 size_t desclength = unix_read(fd, devdesc, sizeof(devdesc)); local
158 bufend = bufptr + desclength;
161 if (desclength < USB_DT_DEVICE_SIZE + USB_DT_CONFIG_SIZE) {
162 D("desclength %zu is too small", desclength);
222 if (bufptr+2 <= devdesc + desclength &&
229 if (bufptr+2 <= devdesc + desclength &&
235 if (bufptr > devdesc + desclength ||
  /frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.cpp 423 unsigned descLength = br->getBits(8);
424 ALOGV(" len = %u", descLength);
426 if (info_bytes_remaining < descLength) {
429 br->skipBits(descLength * 8);
431 info_bytes_remaining -= descLength + 2;
    [all...]

Completed in 649 milliseconds