Lines Matching defs:team

51 		team = -1;
62 status_t Init(team_id team, port_id nubPort)
64 return init_debug_context(this, team, nubPort);
71 team = -1;
81 DebugContextPool(team_id team, port_id nubPort)
84 fTeam(team),
238 LocalDebuggerInterface::LocalDebuggerInterface(team_id team)
241 fTeamID(team),
282 snprintf(buffer, sizeof(buffer), "team %" B_PRId32 " debugger", fTeamID);
287 // install as team debugger
368 if (message.origin.team != fTeamID)
534 ThreadInfo* info = new(std::nothrow) ThreadInfo(threadInfo.team,
549 // get the team's images
569 // get the team's areas
589 // get the team's semaphores
606 LocalDebuggerInterface::GetSymbolInfos(team_id team, image_id image,
611 status_t error = debug_create_symbol_lookup_context(team, image,
651 LocalDebuggerInterface::GetSymbolInfo(team_id team, image_id image, const char* name,
656 status_t error = debug_create_symbol_lookup_context(team, image,
687 info.SetTo(threadInfo.team, threadInfo.thread, threadInfo.name);
796 event = new(std::nothrow) ThreadDebuggedEvent(message.origin.team,
800 event = new(std::nothrow) DebuggerCallEvent(message.origin.team,
813 event = new(std::nothrow) BreakpointHitEvent(message.origin.team,
827 event = new(std::nothrow) WatchpointHitEvent(message.origin.team,
841 event = new(std::nothrow) SingleStepEvent(message.origin.team,
848 message.origin.team, message.origin.thread,
852 if (message.origin.team != fTeamID) {
856 event = new(std::nothrow) TeamDeletedEvent(message.origin.team,
860 if (message.origin.team != fTeamID) {
864 event = new(std::nothrow) TeamExecEvent(message.origin.team,
868 event = new(std::nothrow) ThreadCreatedEvent(message.origin.team,
872 event = new(std::nothrow) ThreadDeletedEvent(message.origin.team,
878 event = new(std::nothrow) ImageCreatedEvent(message.origin.team,
888 event = new(std::nothrow) ImageDeletedEvent(message.origin.team,
897 event = new(std::nothrow) PostSyscallEvent(message.origin.team,
907 event = new(std::nothrow) SignalReceivedEvent(message.origin.team,
915 printf("DebuggerInterface for team %" B_PRId32 ": unknown message "