Home
last modified time | relevance | path

Searched refs:on_destruction (Results 1 – 4 of 4) sorted by relevance

/external/google-fruit/include/fruit/impl/data_structures/
Dfixed_size_allocator.defn.h91 on_destruction.push_back(std::pair<destroy_t, void*>{destroyObject<T>, x}); in constructObject()
98 on_destruction.push_back(std::pair<destroy_t, void*>{destroyExternalObject<T>, p}); in registerExternallyAllocatedObject()
102 : on_destruction(allocator_data.num_types_to_destroy) { in FixedSizeAllocator()
119 std::swap(on_destruction, x.on_destruction); in FixedSizeAllocator()
128 std::swap(on_destruction, x.on_destruction);
Dfixed_size_allocator.h53 FixedSizeVector<std::pair<destroy_t, void*>> on_destruction; variable
/external/google-fruit/src/
Dfixed_size_allocator.cpp27 std::pair<destroy_t, void*>* p = on_destruction.end(); in ~FixedSizeAllocator()
28 while (p != on_destruction.begin()) { in ~FixedSizeAllocator()
/external/protobuf/src/google/protobuf/
Darena_unittest.cc1405 static void on_destruction(Arena* arena, void* cookie, uint64 space_used) { in on_destruction() function in google::protobuf::ArenaHooksTestUtil
1430 options->on_arena_destruction = ArenaHooksTestUtil::on_destruction; in Set()