• Home
  • Raw
  • Download

Lines Matching refs:objects

424     const binder_size_t *objects = parcel->mObjects;  in appendFrom()  local
448 size_t off = objects[i]; in appendFrom()
481 binder_size_t *objects = in appendFrom() local
483 if (objects == (binder_size_t*)nullptr) { in appendFrom()
486 mObjects = objects; in appendFrom()
493 size_t off = objects[i] - offset + startPos; in appendFrom()
1438 binder_size_t* objects = (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t)); in writeObject() local
1439 if (objects == nullptr) return NO_MEMORY; in writeObject()
1440 mObjects = objects; in writeObject()
2232 const binder_size_t* objects, size_t objectsCount, release_func relFunc) in ipcSetDataReference() argument
2241 mObjects = const_cast<binder_size_t*>(objects); in ipcSetDataReference()
2311 binder_size_t* const objects = mObjects; in releaseObjects() local
2315 = reinterpret_cast<flat_binder_object*>(data+objects[i]); in releaseObjects()
2328 binder_size_t* const objects = mObjects; in acquireObjects() local
2332 = reinterpret_cast<flat_binder_object*>(data+objects[i]); in acquireObjects()
2485 binder_size_t* objects = nullptr; in continueWrite() local
2488 objects = (binder_size_t*)calloc(objectsSize, sizeof(binder_size_t)); in continueWrite()
2489 if (!objects) { in continueWrite()
2507 if (objects && mObjects) { in continueWrite()
2508 memcpy(objects, mObjects, objectsSize*sizeof(binder_size_t)); in continueWrite()
2519 mObjects = objects; in continueWrite()
2546 binder_size_t* objects = in continueWrite() local
2548 if (objects) { in continueWrite()
2549 mObjects = objects; in continueWrite()