Lines Matching refs:info
394 heap_info_t& info = mHeapCache.editValueAt(i);
397 binder.get(), info.heap.get(),
398 static_cast<BpMemoryHeap*>(info.heap.get())->mSize,
399 static_cast<BpMemoryHeap*>(info.heap.get())->mHeapId,
400 info.count);
401 android_atomic_inc(&info.count);
402 return info.heap;
404 heap_info_t info;
405 info.heap = interface_cast<IMemoryHeap>(binder);
406 info.count = 1;
408 // binder.get(), info.heap.get(), info.count);
409 mHeapCache.add(binder, info);
410 return info.heap;
425 heap_info_t& info(mHeapCache.editValueAt(i));
426 int32_t c = android_atomic_dec(&info.count);
430 binder.unsafe_get(), info.heap.get(),
431 static_cast<BpMemoryHeap*>(info.heap.get())->mSize,
432 static_cast<BpMemoryHeap*>(info.heap.get())->mHeapId,
433 info.count);
458 const heap_info_t& info = mHeapCache.valueAt(i);
459 BpMemoryHeap const* h(static_cast<BpMemoryHeap const *>(info.heap.get()));
462 info.heap.get(), info.count,