Home
last modified time | relevance | path

Searched refs:last_match_ (Results 1 – 2 of 2) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_symbolizer.cc83 if (last_match_ && !internal_strcmp(last_match_, str)) in GetOwnedCopy()
84 return last_match_; in GetOwnedCopy()
90 last_match_ = storage_[i]; in GetOwnedCopy()
91 return last_match_; in GetOwnedCopy()
94 last_match_ = internal_strdup(str); in GetOwnedCopy()
95 storage_.push_back(last_match_); in GetOwnedCopy()
96 return last_match_; in GetOwnedCopy()
Dsanitizer_symbolizer.h130 : storage_(kInitialCapacity), last_match_(nullptr), in ModuleNameOwner()
137 const char *last_match_; variable