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

12

/haiku/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/headers/private/libroot/
H A Dmemory_private.h15 status_t get_memory_properties(team_id teamID, const void* address,
H A Dextended_system_info.h22 status_t get_extended_team_info(team_id teamID, uint32 flags, KMessage& info);
/haiku/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/src/bin/debug/profile/
H A Dprofile.cpp148 status_t AddTeam(team_id teamID, Team** _team = NULL) argument
150 return _AddTeam(teamID, NULL, _team);
168 status_t AddThread(team_id teamID, thread_id threadID, const char* name) argument
173 Team* team = FindTeam(teamID);
197 void RemoveTeam(team_id teamID) argument
199 if (Team* team = FindTeam(teamID)) {
215 Team* FindTeam(team_id teamID) const
218 if (team->ID() == teamID)
243 status_t AddImage(team_id teamID, const image_info& imageInfo, int32 event) argument
247 status_t error = _GetSharedImage(teamID, imageInf
267 RemoveImage(team_id teamID, image_id imageID, int32 event) argument
304 _AddTeam(team_id teamID, system_profiler_team_added* addedInfo, Team** _team = NULL) argument
333 _InitDebuggedTeam(Team* team, team_id teamID) argument
371 _LoadTeamImages(Team* team, team_id teamID) argument
434 _GetSharedImage(team_id teamID, const image_info& imageInfo, SharedImage** _sharedImage) argument
866 team_id teamID = threadInfo.team; local
[all...]
H A DTeam.cpp60 Team::Init(team_id teamID, port_id debuggerPort) argument
64 status_t error = get_team_info(teamID, &teamInfo);
68 fID = teamID;
72 fNubPort = install_team_debugger(teamID, debuggerPort);
76 "%s\n", kCommandName, teamID, strerror(fNubPort));
81 error = init_debug_context(&fDebugContext, teamID, fNubPort);
85 "%s\n", kCommandName, teamID, strerror(error));
H A DTeam.h28 status_t Init(team_id teamID, port_id debuggerPort);
/haiku/src/system/kernel/vm/
H A DVMAddressSpace.cpp187 VMAddressSpace::Create(team_id teamID, addr_t base, size_t size, bool kernel, argument
191 ? (VMAddressSpace*)new(std::nothrow) VMKernelAddressSpace(teamID, base,
193 : (VMAddressSpace*)new(std::nothrow) VMUserAddressSpace(teamID, base,
205 "bytes starting at %#lx => %p\n", teamID, kernel ? "" : "!", size,
265 VMAddressSpace::Get(team_id teamID) argument
268 VMAddressSpace* addressSpace = sAddressSpaceTable.Lookup(teamID);
298 VMAddressSpace::DebugGet(team_id teamID) argument
300 return sAddressSpaceTable.Lookup(teamID);
/haiku/src/kits/debugger/target_host_interface/
H A DTargetHostInterface.cpp181 int32 teamID; local
182 if (message->FindInt32("team", &teamID) != B_OK)
185 TeamDebugger* debugger = FindTeamDebugger(teamID);
247 TargetHostInterface::_StartTeamDebugger(team_id teamID, argument
259 threadID = teamID;
265 error = Attach(teamID, options.thread, interface);
268 ": %s!\n", teamID, strerror(error));
/haiku/src/kits/debugger/target_host_interface/network/
H A DNetworkTargetHostInterface.cpp72 NetworkTargetHostInterface::Attach(team_id teamID, thread_id threadID, argument
/haiku/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/src/kits/debugger/target_host_interface/local/
H A DLocalTargetHostInterface.cpp146 LocalTargetHostInterface::Attach(team_id teamID, thread_id threadID, argument
149 if (teamID < 0 && threadID < 0)
153 if (teamID < 0) {
159 teamID = threadInfo.team;
163 = new(std::nothrow) LocalDebuggerInterface(teamID);
/haiku/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 Dkimage.h56 struct image* image_iterate_through_team_images(team_id teamID,
H A Ddebug.h185 extern status_t debug_memcpy(team_id teamID, void* to, const void* from,
187 extern ssize_t debug_strlcpy(team_id teamID, char* to, const char* from,
227 extern bool debug_is_debugged_team(team_id teamID);
H A DUserTimer.h108 TeamTimeUserTimer(team_id teamID);
144 TeamUserTimeUserTimer(team_id teamID);
/haiku/src/system/kernel/
H A DUserTimer.cpp493 TeamTimeUserTimer::TeamTimeUserTimer(team_id teamID) argument
495 fTeamID(teamID),
741 TeamUserTimeUserTimer::TeamUserTimeUserTimer(team_id teamID) argument
743 fTeamID(teamID),
1505 team_id teamID; local
1507 teamID = B_CURRENT_TEAM;
1514 teamID = clockID;
1518 Team* team = Team::Get(teamID);
1657 team_id teamID; local
1659 teamID
[all...]
H A Dimage.cpp254 _get_next_image_info(team_id teamID, int32 *cookie, image_info *info, argument
261 Team* team = Team::Get(teamID);
338 image_iterate_through_team_images(team_id teamID, argument
342 Team* team = Team::Get(teamID);
/haiku/src/tests/servers/registrar/
H A DRosterShell.cpp131 team_id teamID; local
132 error = roster.Launch(&ref, (const BMessage*)NULL, &teamID);
135 teamID);
/haiku/headers/private/kernel/vm/
H A DVMAddressSpace.h117 static status_t Create(team_id teamID, addr_t base, size_t size,
130 static VMAddressSpace* Get(team_id teamID);
134 static VMAddressSpace* DebugGet(team_id teamID);
H A Dvm.h120 status_t vm_delete_area(team_id teamID, area_id areaID, bool kernel);
159 status_t vm_debug_copy_page_memory(team_id teamID, void* unsafeMemory,
175 status_t _user_get_memory_properties(team_id teamID, const void *address,
/haiku/src/system/kernel/debug/
H A Duser_debugger.cpp372 prepare_debugger_change(team_id teamID, ConditionVariable& condition, argument
377 if (teamID == B_CURRENT_TEAM)
378 teamID = thread_get_current_thread()->team->id;
382 team = Team::GetAndLock(teamID);
982 user_debug_team_created(team_id teamID) argument
995 message.new_team = teamID;
1003 user_debug_team_deleted(team_id teamID, port_id debuggerPort) argument
1007 "%" B_PRId32 ")\n", teamID, debuggerPort));
1011 message.origin.team = teamID;
1078 user_debug_thread_deleted(team_id teamID, thread_i argument
2523 install_team_debugger(team_id teamID, port_id debuggerPort, thread_id causingThread, bool useDefault, bool dontReplace) argument
2868 _user_install_team_debugger(team_id teamID, port_id debuggerPort) argument
2878 _user_remove_team_debugger(team_id teamID) argument
[all...]
/haiku/headers/private/debugger/target_host_interface/
H A DTargetHostInterface.h76 status_t _StartTeamDebugger(team_id teamID,

Completed in 1196 milliseconds

12