Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Host/posix/
DLockFilePosix.h28 Status DoTryReadLock(const uint64_t start, const uint64_t len) override;
/external/llvm-project/lldb/include/lldb/Host/windows/
DLockFileWindows.h29 Status DoTryReadLock(const uint64_t start, const uint64_t len) override;
/external/llvm-project/lldb/include/lldb/Host/
DLockFileBase.h43 virtual Status DoTryReadLock(const uint64_t start, const uint64_t len) = 0;
/external/llvm-project/lldb/source/Host/posix/
DLockFilePosix.cpp56 Status LockFilePosix::DoTryReadLock(const uint64_t start, const uint64_t len) { in DoTryReadLock() function in LockFilePosix
/external/llvm-project/lldb/source/Host/windows/
DLockFileWindows.cpp61 Status LockFileWindows::DoTryReadLock(const uint64_t start, in DoTryReadLock() function in LockFileWindows
/external/llvm-project/lldb/source/Host/common/
DLockFileBase.cpp46 const uint64_t len) { return DoTryReadLock(start, len); }, in TryReadLock()