Searched defs:DPOS (Results 1 - 1 of 1) sorted by path

/frameworks/base/libs/binder/
H A DParcel.cpp1158 const size_t DPOS = mDataPos; local
1159 if ((DPOS+sizeof(flat_binder_object)) <= mDataSize) {
1161 = reinterpret_cast<const flat_binder_object*>(mData+DPOS);
1162 mDataPos = DPOS + sizeof(flat_binder_object);
1178 this, DPOS, opos);
1183 while (opos < (N-1) && OBJS[opos] < DPOS) {
1189 if (OBJS[opos] == DPOS) {
1192 this, DPOS, opos);
1199 while (opos > 0 && OBJS[opos] > DPOS) {
1202 if (OBJS[opos] == DPOS) {
[all...]

Completed in 28 milliseconds