Home
last modified time | relevance | path

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

/NextBSD/contrib/compiler-rt/lib/sanitizer_common/
HDsanitizer_stackdepot.cc83 StackDepotHandle get_handle() { return StackDepotHandle(this); } in get_handle()
85 typedef StackDepotHandle handle_type;
90 u32 StackDepotHandle::id() { return node_->id; } in id()
91 int StackDepotHandle::use_count() { in use_count()
95 void StackDepotHandle::inc_use_count_unsafe() { in inc_use_count_unsafe()
112 StackDepotHandle h = theDepot.Put(stack); in StackDepotPut()
116 StackDepotHandle StackDepotPut_WithHandle(StackTrace stack) { in StackDepotPut_WithHandle()
HDsanitizer_stackdepot.h24 struct StackDepotHandle { struct
26 StackDepotHandle() : node_(0) {} in StackDepotHandle() function
27 explicit StackDepotHandle(StackDepotNode *node) : node_(node) {} in StackDepotHandle() argument
38 StackDepotHandle StackDepotPut_WithHandle(StackTrace stack); argument
/NextBSD/contrib/compiler-rt/lib/msan/
HDmsan_origin.h123 StackDepotHandle h = StackDepotPut_WithHandle(*stack); in CreateChainedOrigin()