Searched refs:teamID (Results 1 - 25 of 48) sorted by relevance

12

/haiku-fatelf/src/system/libroot/os/
H A Dmemory.cpp13 get_memory_properties(team_id teamID, const void* address, uint32* _protected, argument
16 return _kern_get_memory_properties(teamID, address, _protected, _lock);
H A Dextended_system_info.cpp20 get_extended_team_info(team_id teamID, uint32 flags, KMessage& info) argument
35 status_t error = _kern_get_extended_team_info(teamID, flags, buffer,
/haiku-fatelf/headers/private/libroot/
H A Dextended_system_info.h22 status_t get_extended_team_info(team_id teamID, uint32 flags, KMessage& info);
H A Dmemory_private.h15 status_t get_memory_properties(team_id teamID, const void* address,
/haiku-fatelf/src/tests/system/libroot/os/
H A Dsystem_watching_test.cpp24 "Usage: %s [ <teamID> [ <events> ] ]\n"
25 " teamID - The team ID of the team to watch or -1 for all teams\n"
144 int32 teamID; local
145 if (message.FindInt32("team", &teamID) == B_OK)
146 printf("team: %" B_PRId32 "\n", teamID);
155 int32 teamID; local
156 if (message.FindInt32("team", &teamID) == B_OK)
157 printf("team: %" B_PRId32 "\n", teamID);
166 int32 teamID; local
167 if (message.FindInt32("team", &teamID)
[all...]
/haiku-fatelf/src/bin/debug/profile/
H A Dprofile.cpp147 status_t AddTeam(team_id teamID, Team** _team = NULL) argument
149 return _AddTeam(teamID, NULL, _team);
167 status_t AddThread(team_id teamID, thread_id threadID, const char* name) argument
172 Team* team = FindTeam(teamID);
196 void RemoveTeam(team_id teamID) argument
198 if (Team* team = FindTeam(teamID)) {
214 Team* FindTeam(team_id teamID) const
217 if (team->ID() == teamID)
242 status_t AddImage(team_id teamID, const image_info& imageInfo, int32 event) argument
246 status_t error = _GetSharedImage(teamID, imageInf
266 RemoveImage(team_id teamID, image_id imageID, int32 event) argument
303 _AddTeam(team_id teamID, system_profiler_team_added* addedInfo, Team** _team = NULL) argument
332 _InitDebuggedTeam(Team* team, team_id teamID) argument
370 _LoadTeamImages(Team* team, team_id teamID) argument
433 _GetSharedImage(team_id teamID, const image_info& imageInfo, SharedImage** _sharedImage) argument
859 team_id teamID = threadInfo.team; local
[all...]
H A DTeam.cpp59 Team::Init(team_id teamID, port_id debuggerPort) argument
63 status_t error = get_team_info(teamID, &teamInfo);
67 fID = teamID;
71 fNubPort = install_team_debugger(teamID, debuggerPort);
74 "%s\n", kCommandName, teamID, strerror(fNubPort));
79 error = init_debug_context(&fDebugContext, teamID, fNubPort);
82 "%s\n", kCommandName, teamID, strerror(error));
H A DTeam.h28 status_t Init(team_id teamID, port_id debuggerPort);
/haiku-fatelf/src/apps/debugger/
H A DDebugger.cpp280 start_team_debugger(team_id teamID, SettingsManager* settingsManager, argument
284 if (teamID < 0)
304 error = debugger->Init(teamID, threadID, stopInMain);
308 teamID, strerror(error));
313 "successfully!\n", teamID);
343 TeamDebugger* _FindTeamDebugger(team_id teamID) const;
429 int32 teamID; local
430 if (message->FindInt32("team", &teamID) != B_OK)
433 start_team_debugger(teamID, &fSettingsManager, this);
548 Debugger::_FindTeamDebugger(team_id teamID) cons
[all...]
/haiku-fatelf/src/system/kernel/vm/
H A DVMAddressSpace.cpp181 VMAddressSpace::Create(team_id teamID, addr_t base, size_t size, bool kernel, argument
185 ? (VMAddressSpace*)new(std::nothrow) VMKernelAddressSpace(teamID, base,
187 : (VMAddressSpace*)new(std::nothrow) VMUserAddressSpace(teamID, base,
199 "bytes starting at %#lx => %p\n", teamID, kernel ? "" : "!", size,
259 VMAddressSpace::Get(team_id teamID) argument
262 VMAddressSpace* addressSpace = sAddressSpaceTable.Lookup(teamID);
292 VMAddressSpace::DebugGet(team_id teamID) argument
294 return sAddressSpaceTable.Lookup(teamID);
/haiku-fatelf/src/apps/terminal/
H A DTerminalRoster.h55 status_t Register(team_id teamID, BLooper* looper);
91 bool _TeamIsRunning(team_id teamID);
H A DTerminalRoster.cpp170 \param teamID The team ID of this team.
175 TerminalRoster::Register(team_id teamID, BLooper* looper) argument
203 fOurInfo = new(std::nothrow) Info(id, teamID);
503 TerminalRoster::_TeamIsRunning(team_id teamID) argument
506 if (fOurInfo != NULL && fOurInfo->team == teamID)
510 return get_team_info(teamID, &info) == B_OK;
/haiku-fatelf/headers/private/kernel/
H A Duser_debugger.h260 void user_debug_team_created(team_id teamID);
261 void user_debug_team_deleted(team_id teamID, port_id debuggerPort);
265 void user_debug_thread_deleted(team_id teamID, thread_id threadID);
H A Ddebug.h178 extern status_t debug_memcpy(team_id teamID, void* to, const void* from,
180 extern ssize_t debug_strlcpy(team_id teamID, char* to, const char* from,
220 extern bool debug_is_debugged_team(team_id teamID);
H A DUserTimer.h105 TeamTimeUserTimer(team_id teamID);
139 TeamUserTimeUserTimer(team_id teamID);
H A Dteam.h85 status_t _user_get_extended_team_info(team_id teamID, uint32 flags,
/haiku-fatelf/headers/private/kernel/vm/
H A DVMAddressSpace.h107 static status_t Create(team_id teamID, addr_t base, size_t size,
120 static VMAddressSpace* Get(team_id teamID);
124 static VMAddressSpace* DebugGet(team_id teamID);
H A Dvm.h120 status_t vm_delete_area(team_id teamID, area_id areaID, bool kernel);
157 status_t vm_debug_copy_page_memory(team_id teamID, void* unsafeMemory,
173 status_t _user_get_memory_properties(team_id teamID, const void *address,
/haiku-fatelf/src/system/kernel/
H A DUserTimer.cpp467 TeamTimeUserTimer::TeamTimeUserTimer(team_id teamID) argument
469 fTeamID(teamID),
709 TeamUserTimeUserTimer::TeamUserTimeUserTimer(team_id teamID) argument
711 fTeamID(teamID),
1459 team_id teamID; local
1461 teamID = B_CURRENT_TEAM;
1468 teamID = clockID;
1472 Team* team = Team::Get(teamID);
1611 team_id teamID; local
1613 teamID
[all...]
H A Dsystem_info.cpp238 int32 teamID; local
240 || event->FindInt32("team", &teamID) != B_OK) {
268 object = teamID;
296 _AddTargets(fTeamListeners.Lookup(teamID), flags, targets,
/haiku-fatelf/src/tests/servers/registrar/
H A DRosterShell.cpp117 team_id teamID; local
118 error = roster.Launch(&ref, (const BMessage*)NULL, &teamID);
120 printf("launched \"%s\", team id: %ld\n", program.c_str(), teamID);
/haiku-fatelf/src/system/kernel/debug/
H A Duser_debugger.cpp369 prepare_debugger_change(team_id teamID, ConditionVariable& condition, argument
374 if (teamID == B_CURRENT_TEAM)
375 teamID = thread_get_current_thread()->team->id;
379 team = Team::GetAndLock(teamID);
975 user_debug_team_created(team_id teamID) argument
988 message.new_team = teamID;
996 user_debug_team_deleted(team_id teamID, port_id debuggerPort) argument
1000 "%" B_PRId32 ")\n", teamID, debuggerPort));
1004 message.origin.team = teamID;
1071 user_debug_thread_deleted(team_id teamID, thread_i argument
2478 install_team_debugger(team_id teamID, port_id debuggerPort, thread_id causingThread, bool useDefault, bool dontReplace) argument
2818 _user_install_team_debugger(team_id teamID, port_id debuggerPort) argument
2825 _user_remove_team_debugger(team_id teamID) argument
[all...]
H A Ddebug.cpp1902 The supplied \a teamID specifies the address space in which to interpret
1908 debug_memcpy(team_id teamID, void* to, const void* from, size_t size) argument
1917 || debug_is_debugged_team(teamID)) {
1938 if (vm_debug_copy_page_memory(teamID, (void*)from, buffer, toCopy,
1940 || vm_debug_copy_page_memory(teamID, to, buffer, toCopy, true)
1956 The supplied \a teamID specifies the address space in which to interpret
1962 debug_strlcpy(team_id teamID, char* to, const char* from, size_t size) argument
1976 || debug_is_debugged_team(teamID)) {
2004 if (vm_debug_copy_page_memory(teamID, (void*)from, buffer, toCopy,
2033 if (vm_debug_copy_page_memory(teamID, t
2214 debug_is_debugged_team(team_id teamID) argument
[all...]
/haiku-fatelf/src/apps/debugger/debugger_interface/
H A DDebuggerInterface.h31 DebuggerInterface(team_id teamID);
/haiku-fatelf/src/bin/debug/strace/
H A Dstrace.cpp514 team_id teamID = -1; local
516 || !get_id(*programArgs, (traceTeam ? teamID : threadID))) {
527 if (teamID < 0) {
535 teamID = threadInfo.team;
552 Team* team = new Team(teamID);

Completed in 231 milliseconds

12