HomeSort by relevance Sort by last modified time
    Searched refs:mDataPos (Results 1 - 4 of 4) sorted by null

  /system/libhwbinder/
Parcel.cpp 385 return (mDataSize > mDataPos ? mDataSize : mDataPos);
399 return mDataPos;
432 mDataPos = pos;
513 mDataPos += len;
514 ALOGV("finishWrite Setting data pos of %p to %zu", this, mDataPos);
515 if (mDataPos > mDataSize) {
516 mDataSize = mDataPos;
519 //printf("New pos=%d, size=%d\n", mDataPos, mDataSize);
531 size_t end = mDataPos + len
    [all...]
  /frameworks/native/libs/binder/
Parcel.cpp 387 return (mDataSize > mDataPos ? mDataSize : mDataPos);
401 return mDataPos;
434 mDataPos = pos;
474 int startPos = mDataPos;
515 memcpy(mData + mDataPos, data + offset, len);
516 mDataPos += len;
668 mDataPos += len;
669 ALOGV("finishWrite Setting data pos of %p to %zu", this, mDataPos);
670 if (mDataPos > mDataSize)
    [all...]
  /system/libhwbinder/include/hwbinder/
Parcel.h 298 mutable size_t mDataPos;
  /frameworks/native/libs/binder/include/binder/
Parcel.h 461 mutable size_t mDataPos;
    [all...]

Completed in 575 milliseconds