Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_ilist.h19 class INode {
21 INode() = default;
24 INode* next_ = nullptr;
25 INode* prev_ = nullptr;
29 INode(const INode&) = delete;
65 INode node_;
93 INode* n = ToNode(e); in Push()
106 INode* n = ToNode(e); in Remove()
146 INode* n = ToNode(e); in Prev()
153 INode* n = ToNode(e); in Next()
[all …]
H A Dtsan_trace.h219 INode trace_parts; // in Trace::parts
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/
H A Dtsan_ilist.h19 class INode {
21 INode() = default;
24 INode* next_ = nullptr;
25 INode* prev_ = nullptr;
29 INode(const INode&) = delete;
65 INode node_;
93 INode* n = ToNode(e); in Push()
106 INode* n = ToNode(e); in Remove()
146 INode* n = ToNode(e); in Prev()
153 INode* n = ToNode(e); in Next()
[all …]
H A Dtsan_trace.h168 INode trace_parts; // in Trace::parts
169 INode global; // in Contex::trace_part_recycle
H A Dtsan_rtl.h144 INode node;
/llvm-project-15.0.7/clang/unittests/Basic/
H A DFileManagerTest.cpp32 void InjectFileOrDirectory(const char *Path, ino_t INode, bool IsFile, in InjectFileOrDirectory() argument
53 llvm::vfs::Status Status(StatPath, llvm::sys::fs::UniqueID(1, INode), in InjectFileOrDirectory()
62 void InjectFile(const char *Path, ino_t INode, in InjectFile() argument
64 InjectFileOrDirectory(Path, INode, /*IsFile=*/true, StatPath); in InjectFile()
68 void InjectDirectory(const char *Path, ino_t INode) { in InjectDirectory() argument
69 InjectFileOrDirectory(Path, INode, /*IsFile=*/false, nullptr); in InjectDirectory()
/llvm-project-15.0.7/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_ilist_test.cpp19 INode node1;
20 INode node2;