Searched refs:team (Results 101 - 125 of 415) sorted by relevance

1234567891011>>

/haiku/src/system/kernel/vm/
H A DVMAddressSpaceLocking.cpp43 AddressSpaceReadLocker::AddressSpaceReadLocker(team_id team) argument
48 SetTo(team);
89 AddressSpaceReadLocker::SetTo(team_id team) argument
91 fSpace = VMAddressSpace::Get(team);
166 AddressSpaceWriteLocker::AddressSpaceWriteLocker(team_id team) argument
172 SetTo(team);
212 AddressSpaceWriteLocker::SetTo(team_id team) argument
214 fSpace = VMAddressSpace::Get(team);
259 AddressSpaceWriteLocker::SetFromArea(team_id team, area_id areaID, argument
266 && (area->address_space->ID() == team
295 SetFromArea(team_id team, area_id areaID, VMArea*& area) argument
[all...]
/haiku/src/servers/registrar/
H A DTRoster.cpp56 are pre-registered and currently have no team ID assigned to them yet,
58 team ID are to be found in \a fRegisteredApps.
62 have no team ID assigned yet, the reply to the request has to be
63 postponed until the status of the requesting team is clear. The request
168 team_id team; local
178 if (request->FindInt32("team", &team) != B_OK)
179 team = -1;
187 PRINT("team: %" B_PRId32 ", signature: %s\n", team, signatur
316 team_id team; local
381 team_id team; local
488 team_id team; local
527 team_id team; local
622 team_id team; local
660 team_id team; local
769 team_id team; local
809 team_id team; local
837 BroadcastMessagingTargetSet(AppInfoList& list, team_id team) argument
1482 AddAppInfo(AppInfoList& apps, team_id team) argument
[all...]
/haiku/src/kits/debug/
H A DDebugContext.cpp12 fContext.team = -1;
23 BDebugContext::Init(team_id team, port_id nubPort) argument
27 status_t error = init_debug_context(&fContext, team, nubPort);
29 fContext.team = -1;
40 if (fContext.team >= 0) {
42 fContext.team = -1;
/haiku/src/system/kernel/
H A DUserEvent.cpp101 TeamSignalEvent::TeamSignalEvent(Team* team, EventSignal* signal) argument
104 fTeam(team)
110 TeamSignalEvent::Create(Team* team, uint32 signalNumber, int32 signalCode, argument
115 signalCode, errorCode, team->id);
120 TeamSignalEvent* event = new TeamSignalEvent(team, signal);
133 // We need a reference to the team to guarantee that it is still there when
220 SpinLocker locker(fThread->team->signal_lock);
/haiku/src/apps/terminal/
H A DTerminalRoster.cpp28 /*! Creates an Info with the given \a id and \a team ID.
31 TerminalRoster::Info::Info(int32 id, team_id team) argument
34 team(team),
47 if (archive.FindInt32("team", &team) != B_OK)
48 team = -1;
64 || (error = archive.AddInt32("team", team)) != B_OK
80 return id == other.id && team
[all...]
/haiku/headers/private/kernel/
H A Dport.h35 void delete_owned_ports(Team* team);
55 status_t _user_get_next_port_info(team_id team, int32 *cookie,
63 status_t _user_set_port_owner(port_id port, team_id team);
H A Delf.h30 status_t elf_load_user_image(const char *path, Team *team, uint32 flags,
34 status_t elf32_load_user_image(const char *path, Team *team, uint32 flags,
45 status_t elf_debug_lookup_user_symbol_address(Team* team, addr_t address,
H A Dsem.h25 extern void sem_delete_owned_sems(Team* team);
49 status_t _user_set_sem_owner(sem_id id, team_id team);
/haiku/src/tests/servers/registrar/
H A Drun_test_registrar.cpp53 while (get_next_thread_info(teamInfo.team, &threadCookie, &threadInfo)
60 && portInfo.team == teamInfo.team) {
/haiku/headers/os/kernel/
H A Dimage.h91 #define get_next_image_info(team, cookie, info) \
92 _get_next_image_info((team), (cookie), (info), sizeof(*(info)))
96 status_t _get_next_image_info(team_id team, int32 *cookie, image_info *info,
H A DOS.h60 team_id team; member in struct:area_info
110 extern status_t _get_next_area_info(team_id team, ssize_t *cookie,
115 #define get_next_area_info(team, cookie, areaInfo) \
116 _get_next_area_info((team), (cookie), (areaInfo), sizeof(*(areaInfo)))
123 team_id team; member in struct:port_info
147 extern status_t set_port_owner(port_id port, team_id team);
152 extern status_t _get_next_port_info(team_id team, int32 *cookie,
157 #define get_next_port_info(team, cookie, info) \
158 _get_next_port_info((team), (cookie), (info), sizeof(*(info)))
184 team_id team; member in struct:sem_info
240 team_id team; member in struct:__anon3
312 team_id team; member in struct:__anon7
[all...]
/haiku/src/apps/deskbar/
H A DExpandoMenuBar.h110 void AddTeam(BList* team, BBitmap* icon, char* name,
112 void AddTeam(team_id team, const char* signature);
113 void RemoveTeam(team_id team, bool partial);
/haiku/headers/private/debug/
H A DTeamDebugger.h22 status_t Install(team_id team);
H A DDebugContext.h17 status_t Init(team_id team, port_id nubPort);
20 team_id Team() const { return fContext.team; }
/haiku/headers/private/kernel/posix/
H A Dxsi_semaphore.h27 extern void xsi_sem_undo(Team *team);
/haiku/src/bin/
H A Dlistimage.c86 /* search for the team by name */
90 result = list_images_for_team_by_id(info.team);
92 printf("\nCould not retrieve information about team %"
93 B_PRId32 ": %s\n", info.team, strerror(result));
110 result = list_images_for_team_by_id(info.team);
112 printf("\nCould not retrieve information about team %"
113 B_PRId32 ": %s\n", info.team, strerror(result));
/haiku/src/apps/debugger/user_interface/gui/team_settings_window/
H A DExceptionStopConfigView.cpp27 ExceptionStopConfigView::ExceptionStopConfigView(::Team* team, argument
31 fTeam(team),
46 ExceptionStopConfigView::Create(::Team* team, UserInterfaceListener* listener) argument
49 team, listener);
/haiku/src/apps/debugger/user_interface/gui/utility_windows/
H A DBreakpointEditWindow.cpp29 BreakpointEditWindow::BreakpointEditWindow(::Team* team, argument
35 fTeam(team),
54 BreakpointEditWindow::Create(::Team* team, UserBreakpoint* breakpoint, argument
58 team, breakpoint, listener, target);
/haiku/src/system/libroot/os/
H A Dport.c77 set_port_owner(port_id port, team_id team) argument
79 return _kern_set_port_owner(port, team);
98 _get_next_port_info(team_id team, int32 *cookie, port_info *info, size_t size) argument
103 return _kern_get_next_port_info(team, cookie, info);
/haiku/src/apps/processcontroller/
H A DQuitMenu.cpp18 QuitMenuItem(team_id team, BBitmap* icon, const char* title,
27 QuitMenuItem::QuitMenuItem(team_id team, BBitmap* icon, const char* title, argument
30 IconMenuItem(icon, title, m, true, purge), fTeam(team)
96 while (t < fInfosCount && tmid != fInfos[t].team_info.team) {
101 message->AddInt32 ("team", tmid);
129 if (msg->FindInt32("be:team", &tmid) == B_OK)
136 if (msg->FindInt32("be:team", &tmid) == B_OK) {
H A DThreadBarMenu.cpp18 ThreadBarMenu::ThreadBarMenu(const char *title, team_id team, int32 threadCount) argument
21 fTeam(team)
50 ThreadBarMenu::Reset(team_id team) argument
52 fTeam = team;
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DImageListView.h20 ImageListView(Team* team, Listener* listener);
23 static ImageListView* Create(Team* team, Listener* listener);
H A DThreadListView.h24 ThreadListView(Team* team, Listener* listener);
27 static ThreadListView* Create(Team* team, Listener* listener);
H A DBreakpointListView.h50 BreakpointListView(Team* team,
54 static BreakpointListView* Create(Team* team, Listener* listener,
/haiku/src/tests/system/kernel/
H A Dtransfer_area_test.cpp45 B_ANY_ADDRESS, info.team);
77 printf(" name = \"%s\", base = %p, size = %#lx, team = %ld\n",
78 info.name, info.address, info.size, info.team);

Completed in 116 milliseconds

1234567891011>>