Searched refs:team (Results 51 - 75 of 415) sorted by relevance

1234567891011>>

/haiku/src/tests/servers/registrar/
H A DRosterShell.cpp21 "activate, a [ <team> ] activates the application specified by <team>\n"
80 // get a list of team IDs
94 // activate the team
95 team_id team = (team_id)(uintptr_t)teamList.ItemAt(0); local
96 status_t error = roster.ActivateApp(team);
99 ": %s\n", team, strerror(error));
134 printf("launched \"%s\", team id: %" B_PRId32 "\n", program.c_str(),
147 team_id team = -1; local
148 if (sscanf(arg.c_str(), "%" B_PRId32, &team) >
170 team_id team = (team_id)(uintptr_t)teamList.ItemAt(i); local
198 team_id team = (team_id)(uintptr_t)teamList.ItemAt(i); local
235 team_id team = (team_id)(uintptr_t)teamList.ItemAt(i); local
[all...]
/haiku/src/servers/registrar/
H A DRosterAppInfo.h21 // team is -1.
25 void Init(thread_id thread, team_id team, port_id port, uint32 flags,
/haiku/src/tests/servers/input/portspy/
H A DPortSpy.cpp20 (unsigned int)info.team,
/haiku/src/servers/media/
H A DBufferManager.h29 status_t RegisterBuffer(team_id team,
33 status_t RegisterBuffer(team_id team, size_t size,
37 status_t UnregisterBuffer(team_id team,
40 void CleanupTeam(team_id team);
/haiku/src/kits/debugger/model/
H A DAreaInfo.cpp38 AreaInfo::AreaInfo(team_id team, area_id area, const BString& name, argument
42 fTeam(team),
55 AreaInfo::SetTo(team_id team, area_id area, const BString& name, argument
59 fTeam = team;
H A DImageInfo.cpp35 ImageInfo::ImageInfo(team_id team, image_id image, const BString& name, argument
39 fTeam(team),
52 ImageInfo::SetTo(team_id team, image_id image, const BString& name, argument
56 fTeam = team;
/haiku/headers/private/debugger/model/
H A DTargetHost.h37 void RemoveTeam(team_id team);
40 TeamInfo* TeamInfoByID(team_id team) const;
53 void _NotifyTeamRemoved(team_id team);
70 virtual void TeamRemoved(team_id team);
/haiku/src/apps/debugger/user_interface/gui/team_settings_window/
H A DTeamSettingsWindow.cpp17 TeamSettingsWindow::TeamSettingsWindow(::Team* team, argument
22 fTeam(team),
37 TeamSettingsWindow::Create(::Team* team, argument
41 team, listener, target);
H A DExceptionStopConfigView.h24 ExceptionStopConfigView(::Team* team,
29 static ExceptionStopConfigView* Create(::Team* team,
/haiku/src/kits/app/
H A DAppMisc.cpp38 \param team The application's team ID.
47 get_app_path(team_id team, char *buffer) argument
51 // Several images may belong to the team (libraries, add-ons), but only
59 while (get_next_image_info(team, &cookie, &info) == B_OK) {
86 \param team The application's team ID.
96 get_app_ref(team_id team, entry_ref *ref, bool traverse) argument
102 error = get_app_path(team, appFilePath);
129 /*! \brief Returns the ID of the current team
159 main_thread_for(team_id team) argument
176 is_app_showing_modal_window(team_id team) argument
[all...]
/haiku/src/system/kernel/
H A DUserTimer.cpp17 #include <team.h>
42 Team* team; member in struct:__anon1876::TimerLocker
47 team(NULL),
57 void Lock(Team* team, Thread* thread) argument
59 this->team = team;
60 team->Lock();
69 // We don't check thread->team != team here, since this method can be
70 // called for new threads not added to the team ye
1231 create_timer(clockid_t clockID, int32 timerID, Team* team, Thread* thread, uint32 flags, const struct sigevent& event, ThreadCreationAttributes* threadAttributes, bool isDefaultEvent) argument
1395 team_clock_changed(Team* team, bigtime_t changedBy) argument
1417 user_timer_create_thread_timers(Team* team, Thread* thread) argument
1439 user_timer_create_team_timers(Team* team) argument
1495 Team* team = thread_get_current_thread()->team; local
1518 Team* team = Team::Get(teamID); local
1591 user_timer_check_team_user_timers(Team* team) argument
1670 Team* team = Team::Get(teamID); local
1718 Team* team = thread_get_current_thread()->team; local
[all...]
H A Dthread.cpp45 #include <team.h>
132 event.AddInt32("team", teamID);
142 return Notify(eventCode, thread->id, thread->team->id, thread);
189 team(NULL),
434 if (timer->ID() < 0 && !team->CheckAddUserDefinedTimer())
456 team->UserDefinedTimersRemoved(1);
472 team->UserDefinedTimersRemoved(count);
506 // get the next team -- if there is one, get reference for it
520 const char* name, int32 priority, void* arg, team_id team,
533 this->team
519 ThreadCreationAttributes(thread_func function, const char* name, int32 priority, void* arg, team_id team, Thread* thread) argument
600 insert_thread_into_team(Team *team, Thread *thread) argument
619 remove_thread_from_team(Team *team, Thread *thread) argument
797 create_thread_user_stack(Team* team, Thread* thread, void* _stackBase, size_t stackSize, size_t additionalSize, size_t guardSize, char* nameBuffer) argument
[all...]
H A Dsignal.cpp32 #include <team.h>
184 team holds a reference and the reference count is one greater than the
274 Also enforces the current team's signal queuing limit.
297 = thread_get_current_thread()->team->QueuedSignalsCounter();
317 Team* team = thread_get_current_thread()->team; local
322 fSendingProcess = team->id;
323 fSendingUser = team->effective_uid;
756 The caller must hold \c team->signal_lock.
771 The caller must hold \c team
785 update_team_threads_signal_flag(Team* team) argument
857 Team* team = thread->team; local
934 Team* team = thread->team; local
1305 is_team_signal_blocked(Team* team, int signal) argument
1363 has_permission_to_signal(Team* team) argument
1617 send_signal_to_team_locked(Team* team, uint32 signalNumber, Signal* signal, uint32 flags) argument
1751 send_signal_to_team(Team* team, const Signal& signal, uint32 flags) argument
1795 Team* team = Team::Get(teamID); local
[all...]
/haiku/src/tools/fs_shell/
H A Dsem.cpp20 info->team = systemInfo->team;
81 fssh_set_sem_owner(fssh_sem_id id, fssh_team_id team) argument
83 // return set_sem_owner(id, team);
105 _fssh_get_next_sem_info(fssh_team_id team, int32_t *cookie, argument
109 status_t result = get_next_sem_info(team, (int32*)cookie, &systemInfo);
/haiku/headers/os/app/
H A DRoster.h23 team_id team; member in struct:app_info
78 status_t GetRunningAppInfo(team_id team,
99 status_t ActivateApp(team_id team) const;
154 team_id team, thread_id thread,
158 status_t _SetSignature(team_id team,
161 void _SetThread(team_id team,
165 thread_id thread, team_id team,
168 status_t _CompleteRegistration(team_id team,
172 team_id team, app_info* info) const;
175 team_id team, uint3
[all...]
/haiku/src/system/kernel/vm/
H A DVMAddressSpaceLocking.h28 AddressSpaceReadLocker(team_id team);
34 status_t SetTo(team_id team);
55 AddressSpaceWriteLocker(team_id team);
61 status_t SetTo(team_id team);
65 status_t SetFromArea(team_id team, area_id areaID,
67 status_t SetFromArea(team_id team, area_id areaID,
90 inline status_t AddTeam(team_id team, bool writeLock,
129 MultiAddressSpaceLocker::AddTeam(team_id team, bool writeLock, argument
132 return _AddAddressSpace(VMAddressSpace::Get(team), writeLock, _space);
/haiku/src/bin/
H A Dfdinfo.cpp49 printf("Team: (%" B_PRId32 ") %s\n", teamInfo.team, teamInfo.args);
54 while (_kern_get_next_fd_info(teamInfo.team, &cookie, &info, sizeof(fd_info)) == B_OK) {
67 while (_kern_get_next_fd_info(teamInfo.team, &cookie, &info, sizeof(fd_info)) == B_OK) {
72 printf("%5" B_PRId32 " %s\n", teamInfo.team, teamInfo.args);
77 teamInfo.team, info.number, open_mode_to_string(info.open_mode),
89 while (_kern_get_next_fd_info(teamInfo.team, &cookie, &info, sizeof(fd_info)) == B_OK) {
94 printf("%5" B_PRId32 " %s\n", teamInfo.team, teamInfo.args);
98 printf("%5" B_PRId32 " %3d %3s %s\n", teamInfo.team, info.number,
176 if ((id != -1 && id != info.team)
/haiku/headers/private/fs_shell/
H A Dfssh_os.h40 fssh_team_id team; member in struct:fssh_sem_info
75 extern fssh_status_t fssh_set_sem_owner(fssh_sem_id id, fssh_team_id team);
80 extern fssh_status_t _fssh_get_next_sem_info(fssh_team_id team,
87 #define fssh_get_next_sem_info(team, cookie, info) \
88 _fssh_get_next_sem_info((team), (cookie), (info), sizeof(*(info)))
120 fssh_team_id team; member in struct:__anon369
184 extern fssh_status_t _fssh_get_next_thread_info(fssh_team_id team,
191 #define fssh_get_next_thread_info(team, cookie, info) \
192 _fssh_get_next_thread_info((team), (cookie), (info), sizeof(*(info)))
/haiku/src/kits/debugger/target_host_interface/local/
H A DLocalTargetHostInterface.cpp70 info.team);
159 teamID = threadInfo.team;
186 // main thread ID == team ID.
236 _teamID = info.team;
252 team_id team; local
262 team = *it;
263 error = interface->_HandleTeamEvent(team,
290 team = -1;
291 if (message.FindInt32("team", &team) !
312 _HandleTeamEvent(team_id team, int32 opcode, bool& addToWaiters) argument
[all...]
/haiku/src/bin/debug/profile/
H A Dprofile.cpp72 " profile all teams created by a profiled team.\n"
124 for (int32 i = 0; Team* team = fTeams.ItemAt(i); i++)
125 team->ReleaseReference();
155 return _AddTeam(addedInfo->team, addedInfo, _team);
165 return AddThread(threadInfo.team, threadID, threadInfo.name);
173 Team* team = FindTeam(teamID);
174 if (team == NULL)
177 Thread* thread = new(std::nothrow) Thread(threadID, name, team);
187 error = team->InitThread(thread);
199 if (Team* team
333 _InitDebuggedTeam(Team* team, team_id teamID) argument
349 _InitUndebuggedTeam(Team* team, system_profiler_team_added* addedInfo) argument
371 _LoadTeamImages(Team* team, team_id teamID) argument
[all...]
/haiku/src/tests/kits/app/broster/
H A DTeamForTester.cpp63 the ID of the second team; B_ERROR.
74 team_id team = roster.TeamFor("application/x-vnd.obos-app-run-testapp1"); local
75 CHK(team == runner1.Team() || team == runner2.Team());
117 the ID of the second team; B_ERROR.
130 team_id team = roster.TeamFor(&ref); local
131 CHK(team == runner1.Team() || team == runner2.Team());
H A DLaunchTesterHelper.cpp69 AppInfo(team_id team) argument
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
203 operator ()(LaunchCaller &caller, const char *type, team_id *team) argument
219 operator ()(LaunchCaller &caller, const char *type, BList *messages, int32 argc, const char **argv, team_id *team) argument
317 TerminateApp(team_id team, bool wait) argument
332 team_id team = B_ERROR; local
384 NextMessageFrom(team_id team, int32 &cookie, bigtime_t *time) argument
397 CheckNextMessage(LaunchCaller &caller, team_id team, int32 &cookie, uint32 what) argument
406 CheckMainArgsMessage(LaunchCaller &caller, team_id team, int32 &cookie, const entry_ref *appRef, bool useRef) argument
422 CheckMainArgsMessage(LaunchCaller &caller, team_id team, int32 &cookie, const entry_ref *appRef, int32 argc, const char **argv, bool useRef) argument
434 CheckArgvMessage(LaunchCaller &caller, team_id team, int32 &cookie, const entry_ref *appRef, bool useRef) argument
448 CheckArgvMessage(LaunchCaller &caller, team_id team, int32 &cookie, const entry_ref *appRef, int32 argc, const char **argv, bool useRef) argument
458 CheckArgvMessage(LaunchCaller &caller, team_id team, int32 &cookie, const entry_ref *appRef, const entry_ref *ref , int32 argc, const char **argv) argument
469 CheckArgsMessage(LaunchCaller &caller, team_id team, int32 &cookie, const entry_ref *appRef, const entry_ref *ref , int32 argc, const char **argv, uint32 messageCode) argument
518 CheckMessageMessages(LaunchCaller &caller, team_id team, int32 &cookie) argument
530 CheckMessageMessage(LaunchCaller &caller, team_id team, int32 &cookie, int32 index) argument
544 CheckMessageMessage(LaunchCaller &caller, team_id team, int32 &cookie, const BMessage *expectedMessage) argument
560 CheckRefsMessage(LaunchCaller &caller, team_id team, int32 &cookie) argument
571 CheckRefsMessage(LaunchCaller &caller, team_id team, int32 &cookie, const entry_ref *refs, int32 count) argument
616 WaitForMessage(team_id team, uint32 messageCode, bool fromNow, bigtime_t timeout, int32 startIndex) argument
682 CreateAppInfo(team_id team, const BMessenger *messenger) argument
[all...]
/haiku/headers/build/os/app/
H A DRoster.h42 team_id team; member in struct:app_info
94 status_t GetRunningAppInfo(team_id team, app_info *info) const;
111 status_t ActivateApp(team_id team) const;
152 uint32 flags, team_id team, thread_id thread,
155 status_t SetSignature(team_id team, const char *mimeSig) const;
156 void SetThread(team_id team, thread_id thread) const;
158 team_id team) const;
159 status_t CompleteRegistration(team_id team, thread_id thread,
161 bool IsAppPreRegistered(const entry_ref *ref, team_id team,
164 status_t RemoveApp(team_id team) cons
[all...]
/haiku/src/apps/debugger/user_interface/cli/commands/
H A DCliStopCommand.cpp57 Team* team = context.GetTeam(); local
58 thread = team->ThreadByID(threadID);
/haiku/src/apps/debugger/user_interface/gui/utility_windows/
H A DBreakpointEditWindow.h27 ::Team* team,
34 static BreakpointEditWindow* Create(::Team* team,

Completed in 155 milliseconds

1234567891011>>