Searched refs:fThread (Results 51 - 75 of 120) sorted by relevance

12345

/haiku-fatelf/src/tests/add-ons/kernel/kernelland_emu/
H A Dcondition_variable.cpp61 fThread = get_current_thread();
123 fThread = get_current_thread();
226 _kern_unblock_thread(get_thread_id(entry->fThread), result);
/haiku-fatelf/src/kits/tracker/
H A DStatusWindow.h158 thread_id fThread; member in class:BPrivate::BStatusView
195 return fThread;
/haiku-fatelf/src/add-ons/input_server/devices/keyboard/
H A DKeyboardInputDevice.cpp131 fThread(-1),
201 fThread = spawn_thread(_ControlThreadEntry, threadName,
203 if (fThread < B_OK)
204 return fThread;
207 resume_thread(fThread);
224 if (fThread >= 0) {
225 suspend_thread(fThread);
226 resume_thread(fThread);
228 wait_for_thread(fThread, &dummy);
238 if (fThread <
[all...]
H A DKeyboardInputDevice.h57 thread_id fThread; member in class:KeyboardDevice
/haiku-fatelf/headers/private/kernel/
H A DUserEvent.h74 Thread* fThread; member in struct:BKernel::ThreadSignalEvent
H A Dcondition_variable.h44 Thread* fThread; member in struct:ConditionVariableEntry
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
/haiku-fatelf/src/apps/debugger/user_interface/gui/team_window/
H A DThreadListView.h56 Thread* fThread; member in class:ThreadListView
H A DVariablesView.cpp456 Thread* fThread; member in class:VariablesView::VariableTableModel
837 fThread(NULL),
892 fThread = thread;
1222 Architecture* architecture = fThread->GetTeam()->GetArchitecture();
1344 fThread(NULL),
1395 if (thread == fThread && stackFrame == fStackFrame)
1402 if (fThread != NULL)
1403 fThread->ReleaseReference();
1407 fThread = thread;
1410 if (fThread !
[all...]
/haiku-fatelf/src/apps/powerstatus/
H A DDriverInterface.h76 thread_id fThread; member in class:PowerStatusDriverInterface
/haiku-fatelf/src/tests/kits/app/bmessagerunner/
H A DMessageRunnerTestHelpers.h68 thread_id fThread; member in class:MessageRunnerTestApp
/haiku-fatelf/src/tests/kits/midi/patchbay/
H A DTToolTip.h83 thread_id fThread; member in class:TToolTipView
/haiku-fatelf/src/apps/debugger/debug_managers/
H A DValueNodeManager.h50 Thread* fThread; member in class:ValueNodeManager
H A DValueNodeManager.cpp23 fThread(NULL)
50 fThread = thread;
/haiku-fatelf/src/servers/app/
H A DEventDispatcher.cpp234 fThread(-1),
279 if (fThread < B_OK)
280 return fThread;
297 wait_for_thread(fThread, &status);
300 fThread = fCursorThread = -1;
310 fThread = spawn_thread(_event_looper, "event loop",
312 if (fThread < B_OK)
313 return fThread;
326 return resume_thread(fThread);
992 fThread
[all...]
/haiku-fatelf/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPInboundProtocol.cpp89 fThread(-1)
119 fThread = spawn_thread(_WatchThreadFunction, "IMAPMailboxThread",
121 if (resume_thread(fThread) != B_OK) {
122 fThread = -1;
152 return wait_for_thread(fThread, &exitCode);
176 fThread = -1;
/haiku-fatelf/src/add-ons/media/media-add-ons/opensound/
H A DOpenSoundNode.cpp87 fThread(-1),
174 thread_id fThread; member in class:OpenSoundNode::NodeInput
193 fThread(-1),
302 thread_id fThread; member in class:OpenSoundNode::NodeOutput
2264 if (input->fThread < 0) {
2287 if (input->fEngineIndex == 0 && input->fThread >= 0) {
2308 if (input->fThread >= 0)
2315 } while (input->fThread > -1);
2380 } while (output->fThread > -1);
2394 if (input->fThread > B_O
[all...]
/haiku-fatelf/src/apps/debuganalyzer/model/
H A DThreadModel.h25 Model::Thread* GetThread() const { return fThread; }
48 Model::Thread* fThread; member in class:ThreadModel
H A DThreadModel.cpp42 fThread(thread),
/haiku-fatelf/src/apps/debugger/debugger_interface/
H A DDebugEvent.h33 thread_id Thread() const { return fThread; }
41 thread_id fThread; member in class:DebugEvent
/haiku-fatelf/src/system/kernel/
H A DUserEvent.cpp139 fThread(thread)
174 status_t error = send_signal_to_thread_locked(fThread, fSignal->Number(),
/haiku-fatelf/src/tests/add-ons/kernel/drivers/tty/
H A Dtty-test.cpp232 fThread = spawn_thread(_Entry, name, B_NORMAL_PRIORITY, this);
233 if (fThread < 0) {
234 sprintf("Failed to spawn thread: %s\n", strerror(fThread));
247 resume_thread(fThread);
253 wait_for_thread(fThread, &result);
258 kill_thread(fThread);
264 return (get_thread_info(fThread, &info) == B_OK);
273 thread_id fThread; member in struct:Thread
/haiku-fatelf/src/kits/midi2/
H A DMidiLocalConsumer.cpp37 fThread = spawn_thread(
39 resume_thread(fThread);
54 wait_for_thread(fThread, &result);
/haiku-fatelf/src/kits/app/
H A DLooper.cpp418 return fThread;
421 fThread = spawn_thread(_task0_, Name(), fInitPriority, this);
422 if (fThread < B_OK)
423 return fThread;
431 status_t err = resume_thread(fThread);
435 return fThread;
462 } else if (find_thread(NULL) == fThread) {
566 return fThread;
942 fThread = B_ERROR;
1212 int32 thread = fThread;
[all...]
/haiku-fatelf/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);

Completed in 133 milliseconds

12345