Searched refs:team (Results 126 - 150 of 415) sorted by relevance

1234567891011>>

/haiku/src/apps/debugger/user_interface/gui/team_settings_window/
H A DImageStopConfigView.h28 ImageStopConfigView(::Team* team,
33 static ImageStopConfigView* Create(::Team* team,
53 // must be called with team lock held
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DBreakpointsView.h24 BreakpointsView(Team* team, Listener* listener);
27 static BreakpointsView* Create(Team* team, Listener* listener);
/haiku/src/kits/debugger/debug_managers/
H A DWatchpointManager.cpp20 WatchpointManager::WatchpointManager(Team* team, argument
24 fTeam(team),
/haiku/src/kits/debugger/model/
H A DImage.cpp14 Image::Image(Team* team,const ImageInfo& imageInfo, LocatableFile* imageFile) argument
16 fTeam(team),
/haiku/headers/private/debugger/model/
H A DAreaInfo.h18 AreaInfo(team_id team, area_id area,
23 void SetTo(team_id team, area_id area,
H A DImageInfo.h18 ImageInfo(team_id team, image_id image,
25 void SetTo(team_id team, image_id image,
H A DTeam.h25 // team event types
318 Event(uint32 type, Team* team);
353 ImageLoadEvent(uint32 type, Team* team,
370 ImageLoadNameEvent(uint32 type, Team* team,
383 Team* team, int32 disposition);
396 Team* team, int32 signal,
410 BreakpointEvent(uint32 type, Team* team,
422 ConsoleOutputEvent(uint32 type, Team* team,
436 DebugReportEvent(uint32 type, Team* team,
450 CoreFileChangedEvent(uint32 type, Team* team,
[all...]
/haiku/src/system/kernel/
H A Dcommpage.cpp64 clone_commpage_area(team_id team, void** address) argument
68 return vm_clone_area(team, "commpage", address,
/haiku/src/bin/
H A Drelease.c60 teamid = sinfo.team;
62 set_sem_owner(semid, tinfo.team);
H A Dpidof.cpp70 status_t status = get_extended_team_info(teamInfo.team, B_TEAM_INFO_BASIC, extendedInfo);
73 // The team might have simply ended between the last function calls.
87 printf("%" B_PRId32 "\n", teamInfo.team);
/haiku/src/system/libroot/os/
H A Darea.c82 _get_next_area_info(team_id team, ssize_t *cookie, area_info *areaInfo, size_t size) argument
87 return _kern_get_next_area_info(team, cookie, areaInfo);
/haiku/src/kits/print/
H A DBeUtils.cpp93 team_id team = msgr.Team(); local
95 if (be_roster->GetRunningAppInfo(team, &info) == B_OK) {
/haiku/src/apps/deskbar/
H A DTeamMenuItem.h39 // Individual team/application listing
59 TTeamMenuItem(BList* team, BBitmap* icon,
100 void _Init(BList* team, BBitmap* icon,
/haiku/src/apps/debugger/user_interface/cli/commands/
H A DCliStackTraceCommand.cpp33 Team* team = context.GetTeam(); local
34 AutoLocker<Team> teamLocker(team);
/haiku/src/build/libroot/
H A Dsem.cpp168 set_sem_owner(sem_id id, team_id team) argument
187 info->team = 1;
197 _get_next_sem_info(team_id team, int32 *cookie, struct sem_info *info, argument
200 if (team < 0 || team > 2)
/haiku/src/system/kernel/arch/ppc/
H A Darch_thread.cpp100 arch_team_init_team_struct(Team *team, bool kernel) argument
181 if (t_to->team->address_space != NULL) {
183 if (t_from->team != t_to->team) {
186 t_to->team->address_space->TranslationMap());
245 /** Restores the frame from a forked team as specified by the provided
247 * Needs to be called from within the child team, ie. instead of
250 * in the child team at the same position where the parent team left of.
/haiku/src/kits/debug/
H A DTeamDebugger.cpp37 BTeamDebugger::Install(team_id team) argument
43 snprintf(name, sizeof(name), "debugger for team %" B_PRId32, team);
48 port_id nubPort = install_team_debugger(team, fDebuggerPort);
55 status_t error = BDebugContext::Init(team, nubPort);
57 remove_team_debugger(team);
/haiku/src/apps/processcontroller/
H A DMemoryBarMenu.cpp36 fTeamList[k] = infos[k].team_info.team;
82 // create the list of items to remove, for their team is gone. Update the old teams.
114 while (j < fTeamCount && infos.team_info.team != fTeamList[j]) {
119 // new team
134 fTeamList[j] = infos.team_info.team;
136 // the team is already gone!
143 item->Reset(infos.team_name, infos.team_info.team, infos.team_icon, true);
146 infos.team_info.team, infos.team_icon, true, NULL));
/haiku/src/kits/debugger/debugger_interface/local/
H A DLocalDebuggerInterface.cpp51 team = -1;
62 status_t Init(team_id team, port_id nubPort) argument
64 return init_debug_context(this, team, nubPort);
71 team = -1;
81 DebugContextPool(team_id team, port_id nubPort) argument
84 fTeam(team),
238 LocalDebuggerInterface::LocalDebuggerInterface(team_id team) argument
241 fTeamID(team),
282 snprintf(buffer, sizeof(buffer), "team %" B_PRId32 " debugger", fTeamID);
287 // install as team debugge
606 GetSymbolInfos(team_id team, image_id image, BObjectList<SymbolInfo>& infos) argument
651 GetSymbolInfo(team_id team, image_id image, const char* name, int32 symbolType, SymbolInfo& info) argument
[all...]
H A DLocalDebuggerInterface.h14 LocalDebuggerInterface(team_id team);
48 virtual status_t GetSymbolInfos(team_id team, image_id image,
50 virtual status_t GetSymbolInfo(team_id team, image_id image,
/haiku/src/servers/debug/
H A DDebugServer.cpp87 // the expression in question is a team name match only,
149 KillTeam(team_id team, const char *appName = NULL) argument
151 // get a team info to verify the team still lives
154 status_t error = get_team_info(team, &info);
157 "team %" B_PRId32 ": %s\n", team, strerror(error));
164 debug_printf("debug_server: Killing team %" B_PRId32 " (%s)\n", team,
167 kill_team(team);
281 RemoveHandler(team_id team) argument
296 HandlerFor(team_id team) argument
316 team_id team = message->Data().origin.team; local
389 TeamDebugHandler(team_id team) argument
999 _NotifyAppServer(team_id team) argument
1009 _NotifyRegistrar(team_id team, bool openAlert, bool stopShutdown) argument
[all...]
/haiku/src/apps/switcher/
H A DLaunchButton.cpp118 team_id team; local
120 team = be_roster->TeamFor(fAppSig);
122 team = be_roster->TeamFor(fRef);
123 if (team < 0) {
125 be_roster->Launch(fAppSig, message, &team);
127 be_roster->Launch(fRef, message, &team);
130 if (team >= 0
131 && be_roster->GetRunningAppInfo(team,
134 team);
/haiku/src/system/kernel/device_manager/
H A DIORequest.h64 status_t LockMemory(team_id team, bool isWrite);
65 void UnlockMemory(team_id team, bool isWrite);
75 void _UnlockMemory(team_id team, size_t count,
313 team_id team, bool copyIn);
316 team_id team, bool copyIn);
319 team_id team, bool copyIn);
321 generic_size_t size, team_id team);
323 generic_size_t size, team_id team);
325 generic_size_t size, team_id team);
/haiku/headers/private/debug/
H A Ddebug_support.h17 team_id team; member in struct:debug_context
23 status_t init_debug_context(debug_context *context, team_id team,
65 status_t debug_create_symbol_lookup_context(team_id team, image_id image,
67 // imageID can be -1 if all images in the target team are
/haiku/src/kits/debugger/jobs/
H A DExpressionEvaluationJob.cpp25 ExpressionEvaluationJob::ExpressionEvaluationJob(Team* team, argument
31 fTeam(team),
34 fTypeInformation(team->GetTeamTypeInformation()),

Completed in 261 milliseconds

1234567891011>>