Home
last modified time | relevance | path

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

/external/valgrind/tsan/
Dignore.cc45 static bool ReadIgnoreLine(string input_line, IgnoreLists *ignore_lists) { in ReadIgnoreLine() argument
48 ignore_lists->ignores.push_back(IgnoreObj(tail)); in ReadIgnoreLine()
50 ignore_lists->ignores.push_back(IgnoreFile(tail)); in ReadIgnoreLine()
52 ignore_lists->ignores.push_back(IgnoreFun(tail)); in ReadIgnoreLine()
54 ignore_lists->ignores_r.push_back(IgnoreFun(tail)); in ReadIgnoreLine()
56 ignore_lists->ignores_hist.push_back(IgnoreFun(tail)); in ReadIgnoreLine()
63 void ReadIgnoresFromString(const string& ignoreString, IgnoreLists *ignore_lists) { in ReadIgnoresFromString() argument
68 bool line_parsed = ReadIgnoreLine(line, ignore_lists); in ReadIgnoresFromString()