Searched refs:threadName (Results 1 - 25 of 29) sorted by last modified time

12

/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...]
/haiku/src/system/kernel/
H A Dteam.cpp1753 const char* threadName = strrchr(path, '/'); local
1754 if (threadName != NULL)
1755 threadName++;
1757 threadName = path;
1761 status = Thread::Create(threadName, mainThread);
1874 threadName, B_NORMAL_PRIORITY, teamArgs, teamID, mainThread);
1967 const char* threadName; local
2057 threadName = strrchr(path, '/');
2058 if (threadName != NULL)
2059 threadName
2062 rename_thread(thread_get_current_thread_id(), threadName); local
[all...]
/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/kits/interface/
H A DWindow.cpp2902 char threadName[B_OS_NAME_LENGTH]; local
2903 strcpy(threadName, "w>");
2905 strlcat(threadName, title, B_OS_NAME_LENGTH);
2909 memcpy(threadName + 2, title, length);
2910 threadName[length + 2] = '\0';
2914 SetName(threadName);
2918 rename_thread(Thread(), threadName); local
/haiku/src/kits/network/libnetservices/
H A DUrlRequest.cpp22 const char* threadName, const char* protocolName)
32 fThreadName(threadName),
20 BUrlRequest(const BUrl& url, BDataIO* output, BUrlProtocolListener* listener, BUrlContext* context, const char* threadName, const char* protocolName) argument
H A DNetworkRequest.cpp21 const char* threadName, const char* protocolName)
23 BUrlRequest(url, output, listener, context, threadName, protocolName),
19 BNetworkRequest(const BUrl& url, BDataIO* output, BUrlProtocolListener* listener, BUrlContext* context, const char* threadName, const char* protocolName) argument
/haiku/headers/private/netservices/
H A DUrlRequest.h29 const char* threadName,
H A DNetworkRequest.h29 const char* 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/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/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/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/bin/debug/profile/
H A DTeam.cpp196 Team::Exec(int32 event, const char* args, const char* threadName) argument
212 thread->UpdateInfo(threadName);
H A DTeam.h35 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/tools/fs_shell/
H A Dkernel_export.cpp17 fssh_spawn_kernel_thread(fssh_thread_func function, const char *threadName, argument
/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/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/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/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/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/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));

Completed in 163 milliseconds

12