OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AsanChunkView
(Results
1 - 5
of
5
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_allocator.h
51
class
AsanChunkView
{
53
explicit
AsanChunkView
(AsanChunk *chunk) : chunk_(chunk) {}
54
bool IsValid() const; // Checks if
AsanChunkView
points to a valid
64
bool Eq(const
AsanChunkView
&c) const { return chunk_ == c.chunk_; }
97
AsanChunkView
FindHeapChunkByAddress(uptr address);
98
AsanChunkView
FindHeapChunkByAllocBeg(uptr address);
asan_allocator.cc
391
CHECK(
AsanChunkView
(left_chunk).AddrIsAtRight(addr, 1, &l_offset));
392
CHECK(
AsanChunkView
(right_chunk).AddrIsAtLeft(addr, 1, &r_offset));
739
AsanChunkView
FindHeapChunkByAddress(uptr addr) {
741
if (!m1) return
AsanChunkView
(m1);
743
if (
AsanChunkView
(m1).AddrIsAtLeft(addr, 1, &offset)) {
753
if (m2 &&
AsanChunkView
(m2).AddrIsAtRight(addr, 1, &offset))
756
return
AsanChunkView
(m1);
799
bool
AsanChunkView
::IsValid() const {
802
bool
AsanChunkView
::IsAllocated() const {
805
bool
AsanChunkView
::IsQuarantined() const
[
all
...]
asan_memory_profile.cc
36
void ProcessChunk(const
AsanChunkView
&cv) {
asan_debugging.cc
52
AsanChunkView
chunk = FindHeapChunkByAddress(addr);
asan_descriptions.cc
106
AsanChunkView
chunk, uptr addr,
159
AsanChunkView
chunk = FindHeapChunkByAddress(addr);
Completed in 539 milliseconds
Indexes created Thu Oct 02 01:09:59 GMT 2025