Searched refs:find_thread (Results 1 - 25 of 199) sorted by relevance

12345678

/haiku-fatelf/src/system/libroot/os/arch/arm/
H A Dthread.c6 find_thread(const char *name) function
/haiku-fatelf/src/system/libroot/os/arch/m68k/
H A Dthread.c6 find_thread(const char *name) function
/haiku-fatelf/src/system/libroot/os/arch/mipsel/
H A Dthread.c6 find_thread(const char *name) function
/haiku-fatelf/src/system/libroot/os/arch/ppc/
H A Dthread.c6 find_thread(const char *name) function
/haiku-fatelf/src/system/libroot/os/arch/x86_64/
H A Dthread.cpp12 find_thread(const char* name) function
/haiku-fatelf/src/system/libroot/posix/signal/
H A Draise.c22 RETURN_AND_SET_ERRNO(send_signal(find_thread(NULL), sig));
/haiku-fatelf/src/bin/
H A Dwaitfor.cpp28 while (find_thread(argv[1]) < 0) {
33 while (find_thread(argv[2]) >= 0) {
/haiku-fatelf/src/system/libroot/posix/time/
H A Dclock.cpp19 get_thread_info(find_thread(NULL), &info);
30 get_thread_info(find_thread(NULL), &info);
/haiku-fatelf/src/system/libroot/os/locks/
H A Drecursive_lock.cpp23 if (lock->holder == find_thread(NULL))
59 thread_id thread = find_thread(NULL);
74 if (find_thread(NULL) != lock->holder) {
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/bfs_shell/
H A DDebug.h58 #define PRINT(x) { __out("bfs@%ld: ", find_thread(NULL)); __out x; }
59 #define REPORT_ERROR(status) __out("bfs@%ld: %s:%s:%d: %s\n", find_thread(NULL), __FILE__, __FUNCTION__, __LINE__, strerror(status));
61 #define FATAL(x) { __out("bfs@%ld: ", find_thread(NULL)); __out x; }
62 #define INFORM(x) { __out("bfs@%ld: ", find_thread(NULL)); __out x; }
63 #define FUNCTION() __out("bfs@%ld: %s:%s()\n", find_thread(NULL), __FILE__, __FUNCTION__);
64 #define FUNCTION_START(x) { __out("bfs@%ld: %s:%s() ", find_thread(NULL), __FILE__, __FUNCTION__); __out x; }
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/server/
H A DLockable.cpp11 fThread(find_thread(NULL))
67 thread_id thread = find_thread(NULL);
79 thread_id thread = find_thread(NULL);
97 return (fLockOwner == find_thread(NULL));
/haiku-fatelf/src/build/libroot/
H A Dthread.cpp30 // find_thread
32 find_thread(const char *name) function
/haiku-fatelf/src/kits/network/libnetapi/
H A DSSL.cpp22 int64 seed = find_thread(NULL) ^ system_time();
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/server/
H A DLockable.cpp11 fThread(find_thread(NULL))
67 thread_id thread = find_thread(NULL);
79 thread_id thread = find_thread(NULL);
97 return (fLockOwner == find_thread(NULL));
/haiku-fatelf/src/tests/add-ons/kernel/kernelland_emu/
H A Dthread.h21 return (Thread*)(addr_t)find_thread(NULL);
/haiku-fatelf/src/libs/compat/freebsd_network/compat/sys/
H A Dmutex.h50 mutex->u.mutex.owner = find_thread(NULL);
79 return mutex->u.mutex.owner == find_thread(NULL);
82 return mutex->u.recursive.lock.holder == find_thread(NULL);
84 return mutex->u.recursive.holder == find_thread(NULL);
/haiku-fatelf/src/tests/kits/support/bautolock/
H A DAutolockLockerTest.cpp64 CPPUNIT_ASSERT(theLocker->LockingThread() == find_thread(NULL));
73 CPPUNIT_ASSERT(theLocker->LockingThread() == find_thread(NULL));
79 CPPUNIT_ASSERT(theLocker->LockingThread() != find_thread(NULL));
84 CPPUNIT_ASSERT(theLocker->LockingThread() == find_thread(NULL));
90 CPPUNIT_ASSERT(theLocker->LockingThread() != find_thread(NULL));
H A DAutolockLooperTest.cpp64 CPPUNIT_ASSERT(theLooper->LockingThread() == find_thread(NULL));
70 CPPUNIT_ASSERT(theLooper->LockingThread() != find_thread(NULL));
/haiku-fatelf/src/tests/system/kernel/
H A Dcow_bug113_test.cpp14 thread_id parent = find_thread(NULL);
32 child = find_thread(NULL);
H A Dport_multi_read_test.cpp21 printf("[%ld] read port...\n", find_thread(NULL));
25 printf("[%ld] buffer size %ld waiting\n", find_thread(NULL), bytes);
30 printf("[%ld] read port result (code %lx): %s\n", find_thread(NULL),
/haiku-fatelf/src/system/libroot/os/arch/x86/
H A Dthread.c12 find_thread(const char *name) function
14 // BeOS R5 applications also use this trick as find_thread was available
28 // there find_thread (see above) is provided as inline function
/haiku-fatelf/src/tools/fs_shell/
H A Dthread.cpp39 return find_thread(name);
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/shared/
H A DThreadLocal.cpp50 thread_id thread = find_thread(NULL);
67 thread_id thread = find_thread(NULL);
83 return fMap->Get(find_thread(NULL));
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/shared/
H A DThreadLocal.cpp50 thread_id thread = find_thread(NULL);
67 thread_id thread = find_thread(NULL);
83 return fMap->Get(find_thread(NULL));
/haiku-fatelf/src/tests/kits/net/urlRequest/
H A DurlProtocolListener_test.cpp15 printf("Thread<#%5d> ", find_thread(NULL));
29 printf("Thread<#%5d> ", find_thread(NULL));
62 printf("Launching test from thread #%5ld\n", find_thread(NULL));

Completed in 173 milliseconds

12345678