Searched refs:team (Results 176 - 200 of 415) sorted by relevance

1234567891011>>

/haiku/src/build/libbe/app/
H A DMessenger.cpp118 /*! \brief Returns the ID of the team the messenger's target lives in.
120 \return The team of the messenger's target.
132 /*! \brief Sets the messenger's team, target looper port and handler token.
136 \param team The target's team.
141 BMessenger::_SetTo(team_id team, port_id port, int32 token) argument
143 fTeam = team;
/haiku/src/kits/debugger/jobs/
H A DLoadSourceCodeJob.cpp23 Team* team, FunctionInstance* functionInstance, bool loadForFunction)
28 fTeam(team),
21 LoadSourceCodeJob( DebuggerInterface* debuggerInterface, Architecture* architecture, Team* team, FunctionInstance* functionInstance, bool loadForFunction) argument
H A DJobs.h160 Architecture* architecture, Team* team,
239 RetrieveMemoryBlockJob(Team* team,
257 WriteMemoryJob(Team* team,
278 ExpressionEvaluationJob(Team* team,
311 WriteCoreFileJob(Team* team,
/haiku/src/add-ons/kernel/file_systems/netfs/netfs_server_prefs/
H A DNetFSServerRoster.cpp45 // get the server team
46 team_id team = BRoster().TeamFor(kNetFSServerSignature); local
47 if (team < 0)
48 return team;
50 // create a semaphore an transfer its ownership to the server team
52 set_sem_owner(deathSem, team);
57 kill_team(team);
63 BMessenger messenger(NULL, team);
/haiku/src/apps/switcher/
H A DWindowsView.cpp29 WindowModel(team_id team) argument
35 // TODO: more than one team via signature!
37 int32* tokens = get_token_list(team, &count);
79 BMessenger::Private(window).SetTo(info->team, info->client_port,
274 WindowsView::WindowsView(team_id team, uint32 location) argument
279 be_roster->GetRunningAppInfo(team, &info);
291 fListView = new GroupListView("list", new WindowModel(team),
/haiku/src/tests/kits/app/broster/
H A DGetAppInfoTester.cpp38 team_id team = runner.Team(); local
43 while (get_next_thread_info(team, &cookie, &threadInfo) == B_OK) {
54 //" team: %ld vs %ld\n"
57 //" signature: `%s' vs `%s'\n", info.thread, thread, info.team, team,
62 return (info.thread == thread && info.team == team && info.port == port
207 status_t GetRunningAppInfo(team_id team, app_info *info) const
216 // invalid team ID
218 // valid team I
245 team_id team = runner.Team(); local
[all...]
/haiku/src/kits/debugger/model/
H A DTeam.cpp77 fLock("team lock"),
479 // breakpoints with the team and sorting them by source code.
644 // Go the long and stony way over the source file and the team debug info.
930 Team::Event::Event(uint32 type, Team* team) argument
933 fTeam(team)
963 Team::ImageLoadEvent::ImageLoadEvent(uint32 type, Team* team, argument
966 Event(type, team),
976 Team::ImageLoadNameEvent::ImageLoadNameEvent(uint32 type, Team* team, argument
979 Event(type, team),
989 Team* team, int3
988 DefaultSignalDispositionEvent(uint32 type, Team* team, int32 disposition) argument
1000 CustomSignalDispositionEvent(uint32 type, Team* team, int32 signal, int32 disposition) argument
1013 BreakpointEvent(uint32 type, Team* team, Breakpoint* breakpoint) argument
1025 ConsoleOutputEvent(uint32 type, Team* team, int32 fd, const BString& output) argument
1038 DebugReportEvent(uint32 type, Team* team, const char* reportPath, status_t finalStatus) argument
1051 CoreFileChangedEvent(uint32 type, Team* team, const char* targetPath) argument
1063 MemoryChangedEvent(uint32 type, Team* team, target_addr_t address, target_size_t size) argument
1076 WatchpointEvent(uint32 type, Team* team, Watchpoint* watchpoint) argument
1088 UserBreakpointEvent(uint32 type, Team* team, UserBreakpoint* breakpoint) argument
[all...]
/haiku/src/kits/debugger/settings/
H A DTeamSettings.cpp53 TeamSettings::SetTo(Team* team) argument
57 AutoLocker<Team> locker(team);
59 fTeamName = team->Name();
63 = team->UserBreakpoints().GetIterator();
84 team->DefaultSignalDisposition());
87 = team->GetSignalDispositionMappings();
/haiku/src/servers/app/stackandtile/
H A DStacking.cpp47 team_id team; local
50 link.Read<team_id>(&team);
91 team_id team; local
94 if (link.Read<team_id>(&team) != B_OK)
178 team_id team; local
181 if (link.Read<team_id>(&team) != B_OK)
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DImageListView.cpp35 ImagesTableModel(Team* team) argument
37 fTeam(team)
149 ImageListView::ImageListView(Team* team, Listener* listener) argument
152 fTeam(team),
174 ImageListView::Create(Team* team, Listener* listener) argument
176 ImageListView* self = new ImageListView(team, listener);
H A DThreadListView.cpp36 ThreadsTableModel(Team* team) argument
38 fTeam(team)
206 ThreadListView::ThreadListView(Team* team, Listener* listener) argument
209 fTeam(team),
228 ThreadListView::Create(Team* team, Listener* listener) argument
230 ThreadListView* self = new ThreadListView(team, listener);
/haiku/src/apps/processcontroller/
H A DTeamBarMenuItem.cpp18 TeamBarMenuItem::TeamBarMenuItem(BMenu* menu, BMessage* kill_team, team_id team, argument
22 fTeamID(team)
220 TeamBarMenuItem::Reset(char* name, team_id team, BBitmap* icon, bool deleteIcon) argument
225 fTeamID = team;
228 Message()->ReplaceInt32("team", team);
229 ((ThreadBarMenu*)Submenu())->Reset(team);
H A DProcessController.cpp247 ProcessController::_HandleDebugRequest(team_id team, thread_id thread) argument
251 strlcpy(paramString, thread > 0 ? "--thread" : "--team",
254 thread > 0 ? thread : team);
287 team_id team; local
298 if (message->FindInt32("team", &team) == B_OK) {
301 (void*)(addr_t)team));
306 if (message->FindInt32("team", &team) == B_OK) {
308 if (get_team_info(team,
[all...]
/haiku/src/add-ons/kernel/file_cache/
H A Dlog.cpp36 team_id team; member in struct:cache_log
87 log->team = thread->team->id;
169 // cut off path from parent team name
170 Team *team = thread_get_current_thread()->team; local
177 log->launch.parent = team->parent->id;
178 strlcpy(name, team->parent->main_thread->name, B_OS_NAME_LENGTH);
276 log->team, log->timestamp, log->team_name,
304 log->team, lo
[all...]
/haiku/src/apps/deskbar/
H A DTeamMenuItem.cpp73 TTeamMenuItem::TTeamMenuItem(BList* team, BBitmap* icon, char* name, argument
76 TTruncatableMenuItem(new TWindowMenu(team, signature))
78 _Init(team, icon, name, signature, width, height);
98 /*! Vulcan Death Grip and other team mouse button handling
131 team_id team = (addr_t)fTeam->ItemAt(index); local
132 appMessage.AddInt32("be:team", team);
133 quitMessage.AddInt32("team", team);
135 kill_team(team);
488 _Init(BList* team, BBitmap* icon, char* name, char* signature, float width, float height) argument
[all...]
/haiku/src/tests/kits/support/barchivable/
H A DInstantiateObjectTester.cpp182 // the team.
223 by this team
302 by this team, but with an invalid signature
360 containing signature of current team
387 by this team with signature of add-on
502 team_id team; local
514 team = ti.team;
516 err = get_team_info(team, &info);
522 team
[all...]
/haiku/src/bin/debug/strace/
H A Dstrace.cpp74 "Usage: %s [ <options> ] [ <thread or team ID> | <executable with args> ]\n"
76 "Traces the syscalls of a thread or a team. If an executable with\n"
101 " thread or team.\n"
103 " team. If an ID is supplied, it is interpreted as a team\n"
161 fprintf(stderr, "%s: Failed to install team debugger: %s\n",
166 // set team debugging flags
749 // get thread/team to be debugged
763 // get the team ID, if we have none yet
772 teamID = threadInfo.team;
789 Team* team = new Team(teamID); local
843 Team* team = it->second; local
870 Team* team = it->second; local
919 Team* team = new(std::nothrow) Team( local
944 Team* team = it->second; local
[all...]
/haiku/src/apps/launchbox/
H A DLaunchButton.cpp120 team_id team; local
122 team = be_roster->TeamFor(fAppSig);
124 team = be_roster->TeamFor(fRef);
125 if (team < 0) {
127 be_roster->Launch(fAppSig, message, &team);
129 be_roster->Launch(fRef, message, &team);
132 if (team >= 0
133 && be_roster->GetRunningAppInfo(team,
136 team);
/haiku/src/kits/debug/
H A DDebugLooper.cpp103 RemoveDebuggerJob(team_id team) argument
105 fTeam(team)
240 BDebugLooper::RemoveTeamDebugger(team_id team) argument
242 if (team < 0)
245 RemoveDebuggerJob job(team);
/haiku/headers/private/kernel/
H A Dthread.h42 team_id team; member in struct:BKernel::ThreadCreationAttributes
60 team_id team = -1, Thread* thread = NULL);
123 status_t thread_create_user_stack(Team* team, Thread* thread, void* stackBase,
129 void *args, team_id team);
161 status_t _user_get_next_thread_info(team_id team, int32 *cookie, thread_info *info);
/haiku/src/system/kernel/
H A Dsem.cpp33 #include <team.h>
143 if (!strcmp(argv[1], "team") || !strcmp(argv[1], "owner"))
152 kprintf("%-*s id count team last name\n", B_PRINTF_POINTER_WIDTH,
311 info->team = sem->u.used.owner;
438 "Dump a list of all active semaphores (for team, with name, etc.)",
439 "[ ([ \"team\" | \"owner\" ] <team>) | (\"name\" <name>) ]"
443 " <team> - The team owning the semaphores.\n"
482 // get the owning team
483 Team* team = Team::Get(owner); local
648 sem_delete_owned_sems(Team* team) argument
1267 _user_get_next_sem_info(team_id team, int32 *userCookie, struct sem_info *userInfo, size_t size) argument
1292 _user_set_sem_owner(sem_id id, team_id team) argument
[all...]
/haiku/headers/private/app/
H A DServerLink.h46 void SetTargetTeam(team_id team);
116 ServerLink::SetTargetTeam(team_id team) argument
118 fSender->SetTargetTeam(team);
/haiku/src/apps/cortex/NodeManager/
H A DAddOnHost.cpp111 team_id team;
117 &team);
124 team,
207 // // now solely owned by the add-on host team
/haiku/src/kits/interface/
H A DWindowStack.cpp191 team_id team; local
194 status_t status = fLink->Read<team_id>(&team);
198 messengerPrivate.SetTo(team, port, token);
/haiku/src/apps/debuganalyzer/gui/main_window/
H A DThreadsPage.cpp53 Model::Team* team = thread->GetTeam(); local
55 team->Name(), team->ID());

Completed in 209 milliseconds

1234567891011>>