Searched refs:fThread (Results 76 - 100 of 128) sorted by relevance

123456

/haiku/headers/private/kernel/
H A DUserEvent.h84 Thread* fThread; member in struct:BKernel::ThreadSignalEvent
H A Dtracing.h119 thread_id ThreadID() const { return fThread; }
130 thread_id fThread; member in class:AbstractTraceEntry
199 thread_id fThread; member in union:TraceFilter::__anon1087
H A Dcondition_variable.h44 Thread* fThread; member in struct:ConditionVariableEntry
/haiku/src/add-ons/input_server/devices/keyboard/
H A DKeyboardInputDevice.h57 thread_id fThread; member in class:KeyboardDevice
/haiku/src/kits/midi2/
H A DMidiLocalConsumer.cpp37 fThread = spawn_thread(
39 resume_thread(fThread);
54 wait_for_thread(fThread, &result);
/haiku/src/kits/app/
H A DLooper.cpp488 return fThread;
491 fThread = spawn_thread(_task0_, Name(), fInitPriority, this);
492 if (fThread < B_OK)
493 return fThread;
501 status_t err = resume_thread(fThread);
505 return fThread;
520 fThread = find_thread(NULL);
550 } else if (find_thread(NULL) == fThread) {
654 return fThread;
1018 fThread
[all...]
/haiku/src/system/kernel/debug/
H A Dcore_dump.cpp148 fThread(NULL),
168 return fThread;
173 if (fThread != NULL)
174 fThread->ReleaseReference();
176 fThread = thread;
178 if (fThread != NULL)
179 fThread->AcquireReference();
185 fState = fThread->state;
186 fPriority = fThread->priority;
187 fStackBase = fThread
235 Thread* fThread; member in struct:__anon2::ThreadState
[all...]
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DVariablesView.cpp757 ::Thread* fThread; member in class:VariablesView::VariableTableModel
1139 fThread(NULL),
1190 fThread = thread;
1567 Architecture* architecture = fThread->GetTeam()
1788 fThread(NULL),
1873 if (thread == fThread && stackFrame == fStackFrame)
1884 if (fThread != NULL)
1885 fThread->ReleaseReference();
1889 fThread = thread;
1892 if (fThread !
[all...]
H A DVariablesView.h145 Thread* fThread; member in class:VariablesView
/haiku/src/add-ons/media/media-add-ons/video_producer_demo/
H A DProducer.cpp51 fThread = -1;
596 fThread = spawn_thread(_frame_generator_, "frame generator",
598 if (fThread < B_OK)
601 resume_thread(fThread);
623 wait_for_thread(fThread, &fThread);
/haiku/src/add-ons/media/media-add-ons/finepix_webcam/FinePixProducer/
H A DProducer.cpp58 fThread = -1;
613 fThread = spawn_thread(_frame_generator_, "frame generator",
615 if (fThread < B_OK)
618 resume_thread(fThread);
640 wait_for_thread(fThread, &fThread);
/haiku/src/apps/mediaplayer/media_node_framework/video/
H A DVideoProducer.cpp52 fThread(-1),
573 fThread = spawn_thread(_FrameGeneratorThreadEntry, "frame generator",
575 if (fThread < B_OK) {
580 resume_thread(fThread);
597 wait_for_thread(fThread, &fThread);
H A DVideoProducer.h117 thread_id fThread; member in class:VideoProducer
/haiku/headers/os/midi2/
H A DMidiConsumer.h112 thread_id fThread; member in class:BMidiLocalConsumer
/haiku/src/system/kernel/
H A Dcondition_variable.cpp104 fThread = thread_get_current_thread();
120 if (atomic_pointer_get_and_set(&fThread, (Thread*)NULL) == NULL) {
121 // If fThread was already NULL, that means the variable is already
144 // However, in the case where we were the ones to clear fThread, the
389 Thread* thread = atomic_pointer_get_and_set(&entry->fThread, (Thread*)NULL);
418 // fThread, so we are the ones responsible for decrementing fEntriesCount.
468 kprintf(" %" B_PRId32, entry->fThread->id);
/haiku/src/kits/debugger/debugger_interface/
H A DDebugEvent.h36 thread_id Thread() const { return fThread; }
44 thread_id fThread; member in class:DebugEvent
H A DDebugEvent.cpp19 fThread(thread),
/haiku/src/apps/magnify/
H A DMagnify.h98 long ThreadID() { return fThread; }
123 long fThread; // magnify thread id member in class:TMagnify
/haiku/src/apps/sudoku/
H A DSudokuWindow.cpp72 thread_id fThread; member in class:GenerateSudoku
87 fThread = spawn_thread(_GenerateThread, "sudoku generator",
89 if (fThread >= B_OK)
90 resume_thread(fThread);
108 wait_for_thread(fThread, &status);
/haiku/src/system/kernel/fs/
H A Dfifo.cpp79 fThread(thread_get_current_thread()),
98 thread_unblock(fThread, status);
105 return fThread;
115 Thread* fThread; member in class:fifo::ReadRequest
125 fThread(thread),
132 return fThread;
141 Thread* fThread; member in class:fifo::WriteRequest
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DRPCServer.h94 thread_id fThread; member in class:RPC::Server
/haiku/src/servers/app/
H A DDelayedMessage.cpp97 thread_id fThread; member in class:DelayedMessageSender
669 fThread(spawn_thread(&_thread_func, kName, kPriority, this)),
673 resume_thread(fThread);
683 while (wait_for_thread(fThread, &status) == B_OK);
H A DEventDispatcher.h134 thread_id fThread; member in class:EventDispatcher
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPConnectionWorker.cpp607 fThread = spawn_thread(&_Worker, "imap connection worker",
609 if (fThread < 0)
610 return fThread;
612 resume_thread(fThread);
/haiku/src/system/kernel/device_manager/
H A DIORequest.h280 thread_id ThreadID() const { return fThread; }
344 thread_id fThread; member in struct:IORequest

Completed in 144 milliseconds

123456