• Home
  • Raw
  • Download

Lines Matching refs:Process

224 Process::Process(ProcessHandle handle) : process_(handle) {  in Process()  function in base::Process
227 Process::~Process() = default;
229 Process::Process(Process&& other) : process_(other.process_) { in Process() function in base::Process
233 Process& Process::operator=(Process&& other) { in operator =()
240 Process Process::Current() { in Current()
241 return Process(GetCurrentProcessHandle()); in Current()
245 Process Process::Open(ProcessId pid) { in Open()
250 return Process(pid); in Open()
254 Process Process::OpenWithExtraPrivileges(ProcessId pid) { in OpenWithExtraPrivileges()
260 Process Process::DeprecatedGetProcessFromHandle(ProcessHandle handle) { in DeprecatedGetProcessFromHandle()
262 return Process(handle); in DeprecatedGetProcessFromHandle()
267 bool Process::CanBackgroundProcesses() { in CanBackgroundProcesses()
273 void Process::TerminateCurrentProcessImmediately(int exit_code) { in TerminateCurrentProcessImmediately()
277 bool Process::IsValid() const { in IsValid()
281 ProcessHandle Process::Handle() const { in Handle()
285 Process Process::Duplicate() const { in Duplicate()
289 return Process(process_); in Duplicate()
292 ProcessId Process::Pid() const { in Pid()
297 bool Process::is_current() const { in is_current()
301 void Process::Close() { in Close()
309 bool Process::Terminate(int exit_code, bool wait) const { in Terminate()
331 bool Process::WaitForExit(int* exit_code) const { in WaitForExit()
335 bool Process::WaitForExitWithTimeout(TimeDelta timeout, int* exit_code) const { in WaitForExitWithTimeout()
352 void Process::Exited(int exit_code) const {} in Exited()
355 bool Process::IsProcessBackgrounded() const { in IsProcessBackgrounded()
361 bool Process::SetProcessBackgrounded(bool value) { in SetProcessBackgrounded()
370 int Process::GetPriority() const { in GetPriority()