Searched refs:StackDepotHandle (Results 1 - 3 of 3) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepot.h23 struct StackDepotHandle { struct in namespace:__sanitizer
25 StackDepotHandle() : node_(0) {} function in struct:__sanitizer::StackDepotHandle
26 explicit StackDepotHandle(StackDepotNode *node) : node_(node) {} function in struct:__sanitizer::StackDepotHandle
39 StackDepotHandle StackDepotPut_WithHandle(const uptr *stack, uptr size);
H A Dsanitizer_stackdepot.cc84 StackDepotHandle get_handle() { return StackDepotHandle(this); }
86 typedef StackDepotHandle handle_type;
91 u32 StackDepotHandle::id() { return node_->id; }
92 int StackDepotHandle::use_count() {
96 void StackDepotHandle::inc_use_count_unsafe() {
102 uptr StackDepotHandle::size() { return node_->size; }
103 uptr *StackDepotHandle::stack() { return &node_->stack[0]; }
116 StackDepotHandle h = theDepot.Put(desc);
120 StackDepotHandle StackDepotPut_WithHandl
[all...]
/external/compiler-rt/lib/msan/
H A Dmsan.cc134 // StackDepotHandle::inc_use_count_unsafe.
283 StackDepotHandle h = StackDepotPut_WithHandle(stack->trace, stack->size);

Completed in 193 milliseconds