Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Host/posix/
DLockFilePosix.h26 Status DoReadLock(const uint64_t start, const uint64_t len) override;
/external/llvm-project/lldb/include/lldb/Host/windows/
DLockFileWindows.h27 Status DoReadLock(const uint64_t start, const uint64_t len) override;
/external/llvm-project/lldb/include/lldb/Host/
DLockFileBase.h42 virtual Status DoReadLock(const uint64_t start, const uint64_t len) = 0;
/external/llvm-project/lldb/source/Host/posix/
DLockFilePosix.cpp52 Status LockFilePosix::DoReadLock(const uint64_t start, const uint64_t len) { in DoReadLock() function in LockFilePosix
/external/llvm-project/lldb/source/Host/windows/
DLockFileWindows.cpp57 Status LockFileWindows::DoReadLock(const uint64_t start, const uint64_t len) { in DoReadLock() function in LockFileWindows
/external/llvm-project/lldb/source/Host/common/
DLockFileBase.cpp40 const uint64_t len) { return DoReadLock(start, len); }, in ReadLock()