Searched refs:objectsSize (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/include/binder/
H A DIPCThreadState.h114 const binder_size_t* objects, size_t objectsSize,
H A DParcel.h348 const binder_size_t* objects, size_t objectsSize,
/frameworks/native/libs/binder/
H A DParcel.cpp2384 size_t objectsSize = mObjectsSize; local
2387 objectsSize = 0;
2389 while (objectsSize > 0) {
2390 if (mObjects[objectsSize-1] < desired)
2392 objectsSize--;
2413 if (objectsSize) {
2414 objects = (binder_size_t*)calloc(objectsSize, sizeof(binder_size_t));
2425 mObjectsSize = objectsSize;
2434 memcpy(objects, mObjects, objectsSize*sizeof(binder_size_t));
2451 mObjectsSize = mObjectsCapacity = objectsSize;
[all...]

Completed in 73 milliseconds