Home | History | Annotate | Download | only in binder

Lines Matching defs:info

403         heap_info_t& info = mHeapCache.editValueAt(i);
406 binder.get(), info.heap.get(),
407 static_cast<BpMemoryHeap*>(info.heap.get())->mSize,
408 static_cast<BpMemoryHeap*>(info.heap.get())->mHeapId,
409 info.count);
410 android_atomic_inc(&info.count);
411 return info.heap;
413 heap_info_t info;
414 info.heap = interface_cast<IMemoryHeap>(binder);
415 info.count = 1;
417 // binder.get(), info.heap.get(), info.count);
418 mHeapCache.add(binder, info);
419 return info.heap;
434 heap_info_t& info(mHeapCache.editValueAt(i));
435 int32_t c = android_atomic_dec(&info.count);
439 binder.unsafe_get(), info.heap.get(),
440 static_cast<BpMemoryHeap*>(info.heap.get())->mSize,
441 static_cast<BpMemoryHeap*>(info.heap.get())->mHeapId,
442 info.count);
467 const heap_info_t& info = mHeapCache.valueAt(i);
468 BpMemoryHeap const* h(static_cast<BpMemoryHeap const *>(info.heap.get()));
471 info.heap.get(), info.count,