Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libc/src/__support/File/
H A Dfile.h124 class FileLock {
128 explicit FileLock(File *f) : file(f) { file->lock(); } in FileLock() function
130 ~FileLock() { file->unlock(); } in ~FileLock()
132 FileLock(const FileLock &) = delete;
133 FileLock(FileLock &&) = delete;
173 FileLock l(this); in write()
182 FileLock l(this); in read()
193 FileLock lock(this); in flush()
203 FileLock lock(this); in ungetc()
213 FileLock lock(this); in close()
[all …]
H A Dfile.cpp329 FileLock lock(this); in seek()
355 FileLock lock(this); in tell()