Searched refs:toRemove (Results 1 – 4 of 4) sorted by relevance
/hardware/google/gfxstream/host/vulkan/ |
D | VkReconstruction.cpp | 350 void VkReconstruction::removeHandles(const uint64_t* toRemove, uint32_t count, bool recursive) { in removeHandles() argument 351 if (!toRemove) return; in removeHandles() 354 DEBUG_RECON("remove 0x%llx", (unsigned long long)toRemove[i]); in removeHandles() 355 auto item = mHandleReconstructions.get(toRemove[i]); in removeHandles() 374 forEachHandleDeleteApi(toRemove + i, 1); in removeHandles() 375 mHandleReconstructions.remove(toRemove[i]); in removeHandles() 377 DEBUG_RECON("delay destroy of 0x%lx, TODO: actually destroy it", toRemove[i]); in removeHandles() 390 {toRemove[i], static_cast<HandleState>(j)}); in removeHandles() 402 forEachHandleDeleteApi(toRemove + i, 1); in removeHandles() 403 mHandleReconstructions.remove(toRemove[i]); in removeHandles()
|
D | VkReconstruction.h | 94 void removeHandles(const uint64_t* toRemove, uint32_t count, bool recursive = true);
|
/hardware/google/pixel/powerstats/dataproviders/ |
D | PixelStateResidencyDataProvider.cpp | 160 auto toRemove = std::find_if(mEntries.begin(), mEntries.end(), [&in_cb](const auto &it) { in unregisterCallback() local 167 if (toRemove == mEntries.end()) { in unregisterCallback() 171 toRemove->mCallback = nullptr; in unregisterCallback()
|
/hardware/google/gfxstream/host/ |
D | RenderControl.cpp | 424 void removeExtension(std::string& currExts, const std::string& toRemove) { in removeExtension() argument 425 size_t pos = currExts.find(toRemove); in removeExtension() 428 currExts.erase(pos, toRemove.length()); in removeExtension()
|