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.cpp2383 size_t objectsSize = mObjectsSize; local
2386 objectsSize = 0;
2388 while (objectsSize > 0) {
2389 if (mObjects[objectsSize-1] < desired)
2391 objectsSize--;
2412 if (objectsSize) {
2413 objects = (binder_size_t*)calloc(objectsSize, sizeof(binder_size_t));
2424 mObjectsSize = objectsSize;
2433 memcpy(objects, mObjects, objectsSize*sizeof(binder_size_t));
2450 mObjectsSize = mObjectsCapacity = objectsSize;
[all...]

Completed in 106 milliseconds