Searched refs:threadInfo (Results 1 - 25 of 27) sorted by relevance

12

/haiku/src/add-ons/tracker/zipomatic/
H A DGenericThread.cpp332 GenericThread::GetInfo(thread_info* threadInfo) argument
334 return get_thread_info(fThreadId, threadInfo);
341 thread_info threadInfo; local
342 GetInfo(&threadInfo);
343 return threadInfo.thread;
350 thread_info threadInfo; local
351 GetInfo(&threadInfo);
352 return threadInfo.team;
359 thread_info threadInfo; local
360 GetInfo(&threadInfo);
368 thread_info threadInfo; local
377 thread_info threadInfo; local
386 thread_info threadInfo; local
395 thread_info threadInfo; local
404 thread_info threadInfo; local
413 thread_info threadInfo; local
422 thread_info threadInfo; local
[all...]
H A DGenericThread.h49 status_t GetInfo(thread_info* threadInfo);
/haiku/src/bin/
H A Dps.c91 thread_info threadInfo; local
94 while (get_next_thread_info(teamInfo->team, &threadCookie, &threadInfo)
96 if (threadInfo.state < B_THREAD_RUNNING
97 || threadInfo.state > B_THREAD_WAITING)
101 threadState = sStates[threadInfo.state - 1];
104 B_PRId64 " ", threadInfo.name, threadInfo.thread, threadState,
105 threadInfo.priority, (threadInfo.user_time / 1000),
106 (threadInfo
[all...]
H A Dshutdown.cpp123 thread_info threadInfo; local
124 get_thread_info(find_thread(NULL), &threadInfo); local
126 team_id thisTeam = threadInfo.team;
136 &thread_cookie, &threadInfo) == B_OK) {
137 if (strcmp(threadInfo.name, "shutdown") == 0)
138 kill(threadInfo.thread, SIGUSR1);
/haiku/src/tests/servers/registrar/
H A Drun_test_registrar.cpp51 thread_info threadInfo; local
53 while (get_next_thread_info(teamInfo.team, &threadCookie, &threadInfo)
56 if (!strcmp(threadInfo.name, "roster")) {
/haiku/src/apps/processcontroller/
H A DThreadBarMenuItem.cpp96 thread_info threadInfo; local
98 if (get_thread_info(fThreadID, &threadInfo) == B_OK)
99 idleThread = threadInfo.priority == B_IDLE_PRIORITY;
/haiku/src/system/kernel/messaging/
H A DMessagingService.cpp311 thread_info threadInfo; local
312 error = get_thread_info(find_thread(NULL), &threadInfo);
325 if (threadInfo.team != lockSemInfo.team
326 || threadInfo.team != counterSemInfo.team) {
339 fServerTeam = threadInfo.team;
351 thread_info threadInfo; local
352 status_t error = get_thread_info(find_thread(NULL), &threadInfo);
356 if (threadInfo.team != fServerTeam)
H A DKMessage.cpp544 thread_info threadInfo; local
545 error = get_thread_info(find_thread(NULL), &threadInfo);
548 ourTeam = threadInfo.team;
/haiku/src/tests/kits/app/broster/
H A DGetAppInfoTester.cpp42 thread_info threadInfo; local
43 while (get_next_thread_info(team, &cookie, &threadInfo) == B_OK) {
44 if (thread < 0 || threadInfo.thread < thread)
45 thread = threadInfo.thread;
/haiku/src/kits/debugger/target_host_interface/local/
H A DLocalTargetHostInterface.cpp154 thread_info threadInfo; local
155 error = get_thread_info(threadID, &threadInfo);
159 teamID = threadInfo.team;
/haiku/src/kits/debugger/debugger_interface/local/
H A DLocalDebuggerInterface.cpp531 thread_info threadInfo; local
533 while (get_next_thread_info(fTeamID, &cookie, &threadInfo) == B_OK) {
534 ThreadInfo* info = new(std::nothrow) ThreadInfo(threadInfo.team,
535 threadInfo.thread, threadInfo.name);
682 thread_info threadInfo; local
683 status_t error = get_thread_info(thread, &threadInfo);
687 info.SetTo(threadInfo.team, threadInfo.thread, threadInfo
[all...]
/haiku/src/bin/debug/profile/
H A Dprofile.cpp160 thread_info threadInfo; local
161 status_t error = get_thread_info(threadID, &threadInfo);
165 return AddThread(threadInfo.team, threadID, threadInfo.name);
858 thread_info threadInfo; local
859 status_t error = get_thread_info(threadID, &threadInfo);
866 team_id teamID = threadInfo.team;
945 thread_info threadInfo; local
947 && get_thread_info(message.origin.team, &threadInfo)
950 threadInfo
[all...]
/haiku/src/kits/tracker/infowindow/
H A DFilePermissionsView.cpp288 thread_info threadInfo; local
289 get_thread_info(thisThread, &threadInfo);
291 get_team_info(threadInfo.team, &teamInfo);
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DFileSystem.cpp302 thread_info threadInfo; local
303 while (get_next_thread_info(fUserlandServerTeam, &cookie, &threadInfo)
306 threadInfo.thread, threadInfo.name));
/haiku/src/add-ons/kernel/drivers/graphics/s3/
H A Ddriver.cpp367 thread_info threadInfo; local
368 status_t status = get_thread_info(threadID, &threadInfo);
370 status = set_sem_owner(si.vertBlankSem, threadInfo.team);
/haiku/src/kits/support/
H A DArchivable.cpp251 thread_info threadInfo; local
252 status_t err = get_thread_info(find_thread(NULL), &threadInfo);
269 && get_next_image_info(threadInfo.team, &cookie, &imageInfo)
/haiku/src/system/libroot/posix/malloc_debug/
H A Dguarded_heap.cpp289 thread_info threadInfo; local
290 status_t result = get_thread_info(find_thread(NULL), &threadInfo);
294 *stackBase = (void*)threadInfo.stack_base;
295 *stackEnd = (void*)threadInfo.stack_end;
/haiku/src/kits/debugger/model/
H A DTeam.cpp137 Team::AddThread(const ThreadInfo& threadInfo, Thread** _thread) argument
139 Thread* thread = new(std::nothrow) Thread(this, threadInfo.ThreadID());
149 thread->SetName(threadInfo.Name());
/haiku/src/add-ons/kernel/drivers/graphics/ati/
H A Ddriver.cpp753 thread_info threadInfo; local
754 status_t status = get_thread_info(threadID, &threadInfo);
756 status = set_sem_owner(si.vertBlankSem, threadInfo.team);
/haiku/src/kits/app/
H A DLooper.cpp216 thread_info threadInfo; local
217 if (get_thread_info(Thread(), &threadInfo) == B_OK)
218 status = data->AddInt32("_prio", threadInfo.priority);
H A DRoster.cpp1965 thread_info threadInfo; local
1966 error = get_thread_info(appThread, &threadInfo);
1968 team = threadInfo.team;
/haiku/src/bin/debug/strace/
H A Dstrace.cpp765 thread_info threadInfo; local
766 status_t error = get_thread_info(threadID, &threadInfo);
772 teamID = threadInfo.team;
/haiku/src/add-ons/kernel/drivers/graphics/intel_extreme/
H A Dintel_extreme.cpp438 thread_info threadInfo; local
439 if (get_thread_info(thread, &threadInfo) != B_OK
440 || set_sem_owner(info.shared_info->vblank_sem, threadInfo.team)
/haiku/headers/private/debugger/model/
H A DTeam.h130 status_t AddThread(const ThreadInfo& threadInfo,
/haiku/src/servers/debug/
H A DDebugServer.cpp1095 thread_info threadInfo; local
1096 if (get_thread_info(debuggerThread, &threadInfo) != B_OK) {

Completed in 293 milliseconds

12