Searched refs:fThread (Results 101 - 125 of 128) sorted by relevance

123456

/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DNetFSServer.cpp64 fThread(-1)
75 fThread = spawn_thread(&_ThreadEntry, "connection initializer",
77 if (fThread < 0)
78 return fThread;
79 resume_thread(fThread);
121 thread_id fThread; member in class:NetFSServer::ConnectionInitializer
/haiku/src/add-ons/media/media-add-ons/usb_vision/
H A DProducer.cpp110 fThread = -1;
968 fThread = spawn_thread(_frame_generator_, "frame generator",
970 if (fThread < B_OK)
973 resume_thread(fThread);
995 wait_for_thread(fThread, &fThread);
H A DProducer.h130 thread_id fThread; member in class:VideoProducer
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DProducer.cpp77 fThread = -1;
804 fThread = spawn_thread(_frame_generator_, "frame generator",
806 if (fThread < B_OK)
809 resume_thread(fThread);
837 wait_for_thread(fThread, &fThread);
H A DProducer.h128 thread_id fThread; member in class:VideoProducer
/haiku/headers/private/debugger/model/
H A DTeam.h333 ::Thread* GetThread() const { return fThread; }
336 ::Thread* fThread; member in class:Team::ThreadEvent
/haiku/src/add-ons/media/media-add-ons/esound_sink/
H A DESDSinkNode.h352 thread_id fThread; member in class:ESDSinkNode
H A DESDSinkNode.cpp88 fThread(-1),
/haiku/src/add-ons/media/media-add-ons/finepix_webcam/FinePixProducer/
H A DProducer.h122 thread_id fThread; member in class:FinePixProducer
/haiku/src/add-ons/media/media-add-ons/video_producer_demo/
H A DProducer.h114 thread_id fThread; member in class:VideoProducer
/haiku/headers/private/kernel/
H A DUserTimer.h189 Thread* fThread; // != NULL only when active member in struct:BKernel::ThreadTimeUserTimer
/haiku/src/apps/mail/
H A DContent.h225 thread_id fThread; member in class:TTextView
H A DContent.cpp800 fThread(0),
1777 resume_thread(fThread = spawn_thread(Reader::Run, "reader", B_NORMAL_PRIORITY, reader));
1997 if (fThread != 0 && get_thread_info(fThread, &info) == B_NO_ERROR) {
2001 wait_for_thread(fThread, &result);
2002 fThread = 0;
2014 if (fThread == 0)
2019 if (get_thread_info(fThread, &info) != B_OK)
/haiku/headers/os/app/
H A DLooper.h168 thread_id fThread; member in class:BLooper
/haiku/src/system/kernel/debug/
H A Dtracing.cpp816 out.Print("[%6" B_PRId32 ":%6" B_PRId32 "] %10" B_PRId64 ": ", fThread,
819 out.Print("[%6" B_PRId32 "] %10" B_PRId64 ": ", fThread, time);
838 fThread = thread->id;
974 return (entry != NULL && entry->ThreadID() == fThread);
1152 filter->fThread = strtol(arg, NULL, 0);
/haiku/src/add-ons/media/media-add-ons/multi_audio/
H A DMultiAudioNode.cpp181 fThread(-1),
2039 if (fThread >= 0)
2044 fThread = spawn_thread(_OutputThreadEntry, "multi_audio audio output",
2046 if (fThread < 0)
2047 return fThread;
2049 resume_thread(fThread);
2060 wait_for_thread(fThread, NULL);
2061 fThread = -1;
H A DMultiAudioNode.h257 thread_id fThread; member in class:MultiAudioNode
/haiku/src/system/kernel/device_manager/
H A DIORequest.cpp797 fThread = thread->id;
863 subRequest->fThread = fThread;
1460 kprintf(" thread: %" B_PRId32 "\n", fThread);
/haiku/src/kits/tracker/
H A DFSUtils.h155 thread_id fThread; member in class:BPrivate::TrackerCopyLoopControl
H A DFSUtils.cpp302 fThread(find_thread(NULL)),
310 fThread(find_thread(NULL)),
320 fThread(find_thread(NULL)),
330 gStatusWindow->RemoveStatusItem(fThread);
338 gStatusWindow->CreateStatusItem(fThread, (StatusWindowState)jobKind);
347 gStatusWindow->InitStatusItem(fThread, totalItems, totalSize,
381 gStatusWindow->UpdateStatus(fThread, name, count, optional);
391 if (gStatusWindow->CheckCanceledOrPaused(fThread))
H A DStatusWindow.cpp443 fThread(thread)
/haiku/src/apps/magnify/
H A DMagnify.cpp1267 fThread(-1),
1287 kill_thread(fThread);
1299 fThread = spawn_thread(TMagnify::MagnifyTask, "MagnifyTask",
1302 resume_thread(fThread);
/haiku/src/kits/debugger/controllers/
H A DTeamDebugger.cpp156 fThread(thread)
171 return fThread;
176 thread_id fThread; member in struct:TeamDebugger::ImageInfoPendingThread
/haiku/src/kits/app/
H A DApplication.cpp598 return fThread;
620 } else if (find_thread(NULL) != fThread) {
/haiku/src/kits/debugger/model/
H A DTeam.cpp944 fThread(thread)

Completed in 206 milliseconds

123456