Lines Matching defs:team

69 	AppInfo(team_id team)
70 : fTeam(team),
204 team_id *team)
214 team);
221 team_id *team)
224 status_t result = caller(type, messages, argc, argv, team);
225 if (result == B_OK && team)
226 CreateAppInfo(*team);
260 // add the message to the respective team's message list
262 // remote team. The R5 registrar seems to send a B_REPLY message
317 LaunchContext::TerminateApp(team_id team, bool wait)
320 if (AppInfo *info = AppInfoFor(team))
324 WaitForMessage(team, MSG_TERMINATED);
332 team_id team = B_ERROR;
334 team = info->Team();
335 return team;
340 LaunchContext::AppMessengerFor(team_id team) const
344 if (AppInfoFor(team)) {
359 fake.fTeam = team;
384 LaunchContext::NextMessageFrom(team_id team, int32 &cookie, bigtime_t *time)
388 if (AppInfo *info = AppInfoFor(team)) {
397 LaunchContext::CheckNextMessage(LaunchCaller &caller, team_id team,
400 BMessage *message = NextMessageFrom(team, cookie);
406 LaunchContext::CheckMainArgsMessage(LaunchCaller &caller, team_id team,
416 return CheckMainArgsMessage(caller, team, cookie, appRef, argc, argv,
422 LaunchContext::CheckMainArgsMessage(LaunchCaller &caller, team_id team,
428 return CheckArgsMessage(caller, team, cookie, appRef, ref, argc, argv,
434 LaunchContext::CheckArgvMessage(LaunchCaller &caller, team_id team,
440 result = CheckArgvMessage(caller, team, cookie, appRef, kStandardArgc,
448 LaunchContext::CheckArgvMessage(LaunchCaller &caller, team_id team,
453 return CheckArgvMessage(caller, team, cookie, appRef, ref , argc, argv);
458 LaunchContext::CheckArgvMessage(LaunchCaller &caller, team_id team,
463 return CheckArgsMessage(caller, team, cookie, appRef, ref, argc, argv,
469 LaunchContext::CheckArgsMessage(LaunchCaller &caller, team_id team,
474 BMessage *message = NextMessageFrom(team, cookie);
518 LaunchContext::CheckMessageMessages(LaunchCaller &caller, team_id team,
524 result &= CheckMessageMessage(caller, team, cookie, i);
530 LaunchContext::CheckMessageMessage(LaunchCaller &caller, team_id team,
537 result = CheckMessageMessage(caller, team, cookie, &message);
544 LaunchContext::CheckMessageMessage(LaunchCaller &caller, team_id team,
548 BMessage *message = NextMessageFrom(team, cookie);
560 LaunchContext::CheckRefsMessage(LaunchCaller &caller, team_id team,
565 result = CheckRefsMessage(caller, team, cookie, caller.Ref());
571 LaunchContext::CheckRefsMessage(LaunchCaller &caller, team_id team,
575 BMessage *message = NextMessageFrom(team, cookie);
616 LaunchContext::WaitForMessage(team_id team, uint32 messageCode, bool fromNow,
621 if (AppInfo *info = AppInfoFor(team)) {
664 LaunchContext::AppInfoFor(team_id team) const
667 if (info->Team() == team)
682 LaunchContext::CreateAppInfo(team_id team, const BMessenger *messenger)
684 AppInfo *info = AppInfoFor(team);
686 info = new AppInfo(team);