OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsAddressInHeapSpace
(Results
1 - 3
of
3
) sorted by null
/art/runtime/gc/
verification.cc
35
IsAddressInHeapSpace
(reinterpret_cast<const void*>(dump_start)) &&
36
IsAddressInHeapSpace
(reinterpret_cast<const void*>(dump_end - 1))) {
119
bool Verification::
IsAddressInHeapSpace
(const void* addr, space::Space** out_space) const {
131
return IsAligned<kObjectAlignment>(addr) &&
IsAddressInHeapSpace
(addr, out_space);
verification.h
65
bool
IsAddressInHeapSpace
(const void* addr, space::Space** out_space = nullptr) const
heap_verification_test.cc
60
EXPECT_TRUE(v->
IsAddressInHeapSpace
(unaligned_address));
Completed in 292 milliseconds