Searched refs:fWriterThread (Results 1 - 8 of 8) sorted by relevance

/haiku/src/tests/add-ons/kernel/file_systems/consistency_check/
H A DAdaptiveBuffering.cpp19 fWriterThread(-1),
91 fWriterThread = spawn_thread(&_Writer, "buffer reader", B_LOW_PRIORITY,
93 if (fWriterThread < B_OK)
94 return fWriterThread;
96 return resume_thread(fWriterThread);
177 if (fWriterThread >= B_OK) {
182 wait_for_thread(fWriterThread, &status);
184 fWriterThread = -1;
H A DAdaptiveBuffering.h30 thread_id fWriterThread; member in class:AdaptiveBuffering
/haiku/src/tests/servers/app/newerClipping/
H A DMultiLocker.cpp26 fWriterThread(-1),
200 ASSERT(fWriterThread == -1);
202 fWriterThread = thread;
285 fWriterThread = -1;
321 /* If fWriterThread is set to -1 then there is no writer in the lock, and we could */
354 if (fWriterThread == thread) {
H A DMultiLocker.h58 thread_id fWriterThread; member in class:MultiLocker
/haiku/src/servers/app/
H A DMultiLocker.cpp32 fWriterThread(-1),
223 writeLockHolder = (find_thread(NULL) == fWriterThread);
292 fWriterThread = find_thread(NULL);
335 fWriterThread = -1;
342 "WriteUnlock() - write holder: %" B_PRId32, fWriterThread);
H A DMultiLocker.h86 thread_id fWriterThread; member in class:MultiLocker
/haiku/src/apps/installer/
H A DCopyEngine.cpp44 fWriterThread(-1),
64 fWriterThread = spawn_thread(_WriteThreadEntry, "buffer writer",
67 if (fWriterThread >= B_OK)
68 resume_thread(fWriterThread);
84 if (fWriterThread >= B_OK) {
86 wait_for_thread(fWriterThread, &exitValue);
H A DCopyEngine.h92 thread_id fWriterThread; member in class:CopyEngine

Completed in 30 milliseconds