Searched refs:threadName (Results 1 - 25 of 29) sorted by path

12

/haiku/headers/private/fs_shell/
H A Dfssh_kernel_export.h17 const char *threadName, int32_t priority,
/haiku/headers/tools/cppunit/
H A DThreadManager.h20 BThreadManager(std::string threadName, TestClass *object, ThreadMethod method, sem_id &threadSem);
47 std::string threadName,
52 : fName(threadName)
46 BThreadManager( std::string threadName, TestClass *object, ThreadMethod method, sem_id &threadSem ) argument
H A DThreadedTestCaller.h32 //! Adds a thread to the test. \c threadName must be unique to this BThreadedTestCaller.
33 void addThread(std::string threadName, ThreadMethod method);
90 BThreadedTestCaller<TestClass, ExpectedException>::addThread(std::string threadName, ThreadMethod method) { argument
91 if (fThreads.find(threadName) == fThreads.end()) {
93 fThreads[threadName] = new BThreadManager<TestClass, ExpectedException>(threadName, fObject, method, fThreadSem);
97 + threadName + "')");
H A DThreadedTestCase.h36 void InitThreadInfo(thread_id id, std::string threadName);
/haiku/src/add-ons/input_server/devices/serial_mouse/
H A DMouseInputDevice.cpp187 char threadName[B_OS_NAME_LENGTH]; local
189 snprintf(threadName, B_OS_NAME_LENGTH, "%s Mouse", name);
192 device->device_watcher = spawn_thread(DeviceWatcher, threadName,
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/
H A Dkernel_emu.cpp1164 const char *threadName, long priority, void *arg)
1166 return spawn_thread(function, threadName, priority, arg);
1163 spawn_kernel_thread(thread_entry function, const char *threadName, long priority, void *arg) argument
H A Dkernel_emu.h78 thread_id spawn_kernel_thread(thread_entry function, const char *threadName,
/haiku/src/apps/expander/
H A DGenericThread.cpp10 GenericThread::GenericThread(const char* threadName, int32 priority, argument
14 fThreadId(spawn_thread(private_thread_function, threadName, priority,
H A DGenericThread.h14 const char* threadName = "generic_thread",
/haiku/src/bin/debug/profile/
H A DTeam.h35 const char* threadName);
H A DTeam.cpp196 Team::Exec(int32 event, const char* args, const char* threadName) argument
212 thread->UpdateInfo(threadName);
/haiku/src/kits/media/
H A DMediaEventLooper.cpp436 char threadName[32]; local
437 sprintf(threadName, "%.20s control", Name());
438 fControlThread = spawn_thread(_ControlThreadStart, threadName, fCurrentPriority, this);
/haiku/src/preferences/repositories/
H A DTaskLooper.cpp148 BString threadName(newTask->taskType == ENABLE_REPO ?
150 newTask->threadId = spawn_thread(_DoTask, threadName.String(),
/haiku/src/tests/system/kernel/
H A Dsem_acquire_test1.cpp13 const char* threadName = (const char*)data; local
14 printf("%s: going to acquire sem...\n", threadName);
16 printf("%s: acquire_sem_etc() returned: %s\n", threadName, strerror(error));
/haiku/src/tools/cppunit/
H A DThreadedTestCase.cpp99 BThreadedTestCase::InitThreadInfo(thread_id id, string threadName) { argument
103 i->second->name = threadName;
108 info->name = threadName;
/haiku/src/tools/fs_shell/
H A Dkernel_export.cpp17 fssh_spawn_kernel_thread(fssh_thread_func function, const char *threadName, argument
/haiku/headers/private/netservices/
H A DNetworkRequest.h29 const char* threadName,
H A DUrlRequest.h29 const char* threadName,
/haiku/src/add-ons/input_server/devices/easypen/
H A DEasyPenInputDevice.cpp168 char threadName[B_OS_NAME_LENGTH]; local
169 snprintf(threadName, B_OS_NAME_LENGTH, "%s watcher", name);
172 device->device_watcher = spawn_thread(DeviceWatcher, threadName,
/haiku/src/add-ons/input_server/devices/keyboard/
H A DKeyboardInputDevice.cpp202 char threadName[B_OS_NAME_LENGTH]; local
203 snprintf(threadName, B_OS_NAME_LENGTH, "%s watcher", fDeviceRef.name);
205 fThread = spawn_thread(_ControlThreadEntry, threadName,
/haiku/src/add-ons/input_server/devices/mouse/
H A DMouseInputDevice.cpp214 char threadName[B_OS_NAME_LENGTH]; local
215 snprintf(threadName, B_OS_NAME_LENGTH, "%s watcher", fDeviceRef.name);
217 fThread = spawn_thread(_ControlThreadEntry, threadName,
/haiku/src/add-ons/input_server/devices/tablet/
H A DTabletInputDevice.cpp182 char threadName[B_OS_NAME_LENGTH]; local
183 snprintf(threadName, B_OS_NAME_LENGTH, "%s watcher", fDeviceRef.name);
185 fThread = spawn_thread(_ControlThreadEntry, threadName,
/haiku/src/add-ons/input_server/devices/virtio/
H A DVirtioInputDevice.cpp248 char threadName[B_OS_NAME_LENGTH]; local
249 snprintf(threadName, B_OS_NAME_LENGTH, "%s watcher", fRef.name);
252 fWatcherThread = spawn_thread(Watcher, threadName,
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A Dbeos_kernel_emu.cpp399 spawn_kernel_thread(thread_entry function, const char *threadName, argument
402 return UserlandFS::KernelEmu::spawn_kernel_thread(function, threadName,
/haiku/src/apps/debugger/user_interface/cli/
H A DCliContext.cpp414 const char* threadName; local
415 message->FindString("threadName", &threadName);
420 threadName);
424 threadID, threadName);
433 threadID, threadName);
510 message.AddString("threadName", threadEvent.GetThread()->Name());
520 message.AddString("threadName", threadEvent.GetThread()->Name());
530 message.AddString("threadName", threadEvent.GetThread()->Name());
543 message.AddString("threadName", threadEven
[all...]

Completed in 143 milliseconds

12