Searched refs:team (Results 276 - 300 of 415) sorted by relevance

<<11121314151617

/haiku/headers/private/kernel/
H A DUserTimer.h251 status_t user_timer_create_thread_timers(Team* team, Thread* thread);
252 status_t user_timer_create_team_timers(Team* team);
260 void user_timer_check_team_user_timers(Team* team);
H A Dksignal.h209 bool is_team_signal_blocked(Team* team, int signal);
219 status_t send_signal_to_team_locked(Team* team, uint32 signalNumber,
221 status_t send_signal_to_team(Team* team, const Signal& signal, uint32 flags);
/haiku/src/system/kernel/vm/
H A DVMAddressSpace.cpp204 TRACE(("VMAddressSpace::Create(): team %" B_PRId32 " (%skernel): %#lx "
240 if (thread != NULL && thread->team->address_space != NULL)
241 return thread->team->id;
253 VMAddressSpace* addressSpace = thread->team->address_space;
/haiku/src/system/kernel/arch/x86/
H A Darch_user_debugger.cpp14 #include <team.h>
276 /*! Sets a break-/watchpoint in the given team info.
277 Interrupts must be disabled and the team debug info lock be held.
326 /*! Clears a break-/watchpoint in the given team info.
327 Interrupts must be disabled and the team debug info lock be held.
371 GRAB_TEAM_DEBUG_INFO_LOCK(thread->team->debug_info);
373 status_t error = set_breakpoint(thread->team->debug_info.arch_info, address,
376 RELEASE_TEAM_DEBUG_INFO_LOCK(thread->team->debug_info);
392 GRAB_TEAM_DEBUG_INFO_LOCK(thread->team->debug_info);
394 status_t error = clear_breakpoint(thread->team
[all...]
H A Dasm_offsets.cpp41 DEFINE_OFFSET_MACRO(THREAD, Thread, team);
/haiku/src/apps/processcontroller/
H A DUtilities.cpp43 status_t status = be_roster->GetRunningAppInfo(infoPack.team_info.team, &info);
45 if (infoPack.team_info.team == B_SYSTEM_TEAM) {
55 status = BPrivate::get_app_ref(infoPack.team_info.team, &info.ref);
/haiku/headers/private/system/
H A Dsyscalls.h109 extern status_t _kern_get_next_sem_info(team_id team, int32 *cookie,
143 /* team & thread syscalls */
149 extern status_t _kern_kill_team(team_id team);
151 extern status_t _kern_wait_for_team(team_id team, status_t *_returnCode);
189 extern status_t _kern_get_next_thread_info(team_id team, int32 *cookie,
195 extern status_t _kern_get_team_usage_info(team_id team, int32 who,
248 extern status_t _kern_get_next_image_info(team_id team, int32 *cookie,
353 extern status_t _kern_get_next_fd_info(team_id team, uint32 *_cookie,
437 extern status_t _kern_get_next_area_info(team_id team, ssize_t *cookie,
474 extern status_t _kern_get_next_port_info(team_id team, int3
[all...]
/haiku/src/apps/debuganalyzer/model_loader/
H A DModelLoader.cpp891 if (Model::Team* team = fModel->TeamByID(event->team))
892 team->SetDeletionTime(fState->LastEventTime());
894 printf("Warning: Removed event for unknown team: %" B_PRId32 "\n",
895 event->team);
1264 event->team = _AddUnknownTeam()->ID();
1281 Model::Team* team = fModel->TeamByID(teamID); local
1282 if (team != NULL)
1283 return team;
1285 // create a dummy "add team" even
[all...]
/haiku/headers/os/drivers/
H A DKernelExport.h188 extern status_t lock_memory_etc(team_id team, void *buffer, size_t numBytes,
191 extern status_t unlock_memory_etc(team_id team, void *address,
194 extern status_t get_memory_map_etc(team_id team, const void *address,
/haiku/src/apps/debugger/user_interface/gui/expression_eval_window/
H A DExpressionEvaluationWindow.cpp41 ::Team* team, UserInterfaceListener* listener)
54 fTeam(team),
59 team->AddListener(this);
82 ExpressionEvaluationWindow::Create(BHandler* closeTarget, ::Team* team, argument
86 closeTarget, team, listener);
40 ExpressionEvaluationWindow(BHandler* closeTarget, ::Team* team, UserInterfaceListener* listener) argument
/haiku/src/system/kernel/arch/arm/
H A Darch_thread.cpp74 arch_team_init_team_struct(Team *team, bool kernel) argument
143 VMAddressSpace *oldAddressSpace = from->team->address_space;
148 VMAddressSpace *newAddressSpace = to->team->address_space;
194 addr_t commPageAddress = (addr_t)thread->team->commpage_address;
294 addr_t commpageAddr = (addr_t)thread->team->commpage_address;
363 /** Restores the frame from a forked team as specified by the provided
365 * Needs to be called from within the child team, ie. instead of
368 * in the child team at the same position where the parent team left of.
/haiku/src/kits/debugger/user_interface/util/
H A DUiUtils.cpp248 UiUtils::ReportNameForTeam(::Team* team, char* buffer, size_t bufferSize) argument
250 BPath teamPath(team->Name());
255 B_PRId32 ".report", teamPath.Leaf(), team->ID(),
265 UiUtils::CoreFileNameForTeam(::Team* team, char* buffer, size_t bufferSize) argument
267 BPath teamPath(team->Name());
272 B_PRId32 ".core", teamPath.Leaf(), team->ID(),
/haiku/src/bin/
H A Durlwrapper.cpp439 team_id team; local
443 be_roster->Launch(kBeShareSig, (BMessage*)NULL, &team);
444 msgr = BMessenger(NULL, team);
463 team_id team; local
464 be_roster->Launch(kIMSig, (BMessage*)NULL, &team);
465 BMessenger msgr(NULL, team);
H A Drenice.c130 while (get_next_thread_info(teaminfo.team, &thcookie, &thinfo) == B_OK) {
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DFileSystem.cpp235 FileSystem::Init(const char* name, team_id team, Port::Info* infos, int32 count, argument
255 fTeam = team;
291 // get the userland team
296 fUserlandServerTeam = portInfo.team;
298 // print some info about the userland team
300 PRINT((" userland team is: %" B_PRId32 "\n", fUserlandServerTeam));
607 return (info.team == fUserlandServerTeam);
738 request->team = thread->team->id;
/haiku/src/apps/deskbar/
H A DSwitcher.cpp395 team_id team = (addr_t)TeamList()->ItemAt(index); local
396 fSmallIcon = app->FetchTeamIcon(team, smallIconSize);
397 fLargeIcon = app->FetchTeamIcon(team, largeIconSize);
484 // This is only sent when last team of a matching set quits
488 message->FindInt32("team", &teamID);
536 team_id team = message->FindInt32("team"); local
544 && !group->TeamList()->HasItem((void*)(addr_t)team)) {
546 group->TeamList()->AddItem((void*)(addr_t)team);
555 team_id team local
774 team_id team; local
1024 team_id team = (addr_t)teamGroup->TeamList()->ItemAt(i); local
1052 team_id team = (addr_t)teamGroup->TeamList()->ItemAt(i); local
1055 do_minimize_team(BRect(), team, false); local
1150 SwitchWindow(team_id team, bool, bool activate) argument
[all...]
/haiku/src/system/kernel/arch/x86/32/
H A Dthread.cpp22 #include <team.h>
236 addr_t commPageAddress = (addr_t)thread->team->commpage_address;
361 thread->team->commpage_address);
/haiku/headers/os/kernel/
H A Ddebugger.h54 extern port_id install_team_debugger(team_id team, port_id debuggerPort);
55 extern status_t remove_team_debugger(team_id team);
59 // EXPERIMENTAL: Self-debugging functions. Will fail when a team debugger is
61 // be installed for the team.
69 // team debugging flags
71 // event mask: If a flag is set, any of the team's threads will stop when
74 // the deletion of the debugged team.
92 // event occurs. If there is a corresponding team flag, it is sufficient,
124 // CPU fault kills the team,...)
153 B_DEBUG_MESSAGE_READ_MEMORY = 0, // read from the team'
471 team_id team; // the thread's team member in struct:__anon62
[all...]
/haiku/src/bin/debug/profile/
H A DThread.h40 Team* team);
H A DThread.cpp44 Thread::Thread(thread_id threadID, const char* name, Team* team) argument
48 fTeam(team),
/haiku/src/add-ons/kernel/file_systems/packagefs/volume/
H A DPackagesDirectory.cpp12 #include <team.h>
/haiku/src/add-ons/kernel/debugger/disasm/x86/
H A Ddisasm_arch.cpp49 debug_get_debugged_thread()->team, address, &baseAddress,
/haiku/src/kits/media/
H A DMediaFiles.cpp45 request.team = BPrivate::current_team();
95 request.team = BPrivate::current_team();
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DTeamWindow.h59 TeamWindow(::Team* team,
63 static TeamWindow* Create(::Team* team,
/haiku/src/servers/registrar/
H A DRegistrar.cpp172 // Sanity check roster after team deletion
365 team_id team = (team_id)message->GetInt32("team", -1); local
366 if (team >= 0 && message->GetInt32("opcode", 0) == B_TEAM_DELETED)

Completed in 179 milliseconds

<<11121314151617