Searched refs:job_handle (Results 1 – 9 of 9) sorted by relevance
/external/libchrome/base/test/launcher/ |
D | test_launcher.cc | 294 DCHECK(!new_options.job_handle); in LaunchChildTestProcessWithOptions() 296 win::ScopedHandle job_handle; in LaunchChildTestProcessWithOptions() local 298 job_handle.Set(CreateJobObject(NULL, NULL)); in LaunchChildTestProcessWithOptions() 299 if (!job_handle.IsValid()) { in LaunchChildTestProcessWithOptions() 313 if (!SetJobObjectLimitFlags(job_handle.Get(), job_flags)) { in LaunchChildTestProcessWithOptions() 318 new_options.job_handle = job_handle.Get(); in LaunchChildTestProcessWithOptions() 321 DCHECK(!new_options.job_handle); in LaunchChildTestProcessWithOptions() 323 zx::job job_handle; in LaunchChildTestProcessWithOptions() local 324 zx_status_t result = zx::job::create(*GetDefaultJob(), 0, &job_handle); in LaunchChildTestProcessWithOptions() 326 new_options.job_handle = job_handle.get(); in LaunchChildTestProcessWithOptions() [all …]
|
/external/cronet/base/task/thread_pool/ |
D | thread_group_unittest.cc | 622 JobHandle job_handle = internal::JobTaskSource::CreateJobHandle(task_source); in TEST_F() local 632 job_handle.Cancel(); in TEST_F() 737 JobHandle job_handle = internal::JobTaskSource::CreateJobHandle(task_source); in TEST_F() local 738 job_handle.Join(); in TEST_F() 763 JobHandle job_handle = internal::JobTaskSource::CreateJobHandle(task_source); in TEST_F() local 769 job_handle.Join(); in TEST_F() 787 JobHandle job_handle = internal::JobTaskSource::CreateJobHandle(task_source); in TEST_F() local 789 job_handle.Cancel(); in TEST_F()
|
/external/cronet/base/test/launcher/ |
D | test_launcher.cc | 421 DCHECK(!new_options.job_handle); in LaunchChildTestProcessWithOptions() 423 win::ScopedHandle job_handle; in LaunchChildTestProcessWithOptions() local 425 job_handle.Set(CreateJobObject(NULL, NULL)); in LaunchChildTestProcessWithOptions() 426 if (!job_handle.is_valid()) { in LaunchChildTestProcessWithOptions() 433 if (!SetJobObjectLimitFlags(job_handle.get(), job_flags)) { in LaunchChildTestProcessWithOptions() 438 new_options.job_handle = job_handle.get(); in LaunchChildTestProcessWithOptions() 441 DCHECK(!new_options.job_handle); in LaunchChildTestProcessWithOptions() 467 zx::job job_handle; in LaunchChildTestProcessWithOptions() local 468 result = zx::job::create(*GetDefaultJob(), 0, &job_handle); in LaunchChildTestProcessWithOptions() 470 new_options.job_handle = job_handle.get(); in LaunchChildTestProcessWithOptions() [all …]
|
/external/libchrome/base/process/ |
D | launch.h | 135 HANDLE job_handle = nullptr; member 191 zx_handle_t job_handle = ZX_HANDLE_INVALID; member
|
/external/cronet/base/process/ |
D | launch.h | 154 HANDLE job_handle = nullptr; member 246 zx_handle_t job_handle = ZX_HANDLE_INVALID; member
|
D | launch_fuchsia.cc | 150 zx::unowned_job job = options.job_handle != ZX_HANDLE_INVALID in LaunchProcess() 151 ? zx::unowned_job(options.job_handle) in LaunchProcess()
|
D | launch_win.cc | 416 if (options.job_handle && in LaunchProcess() 417 !AssignProcessToJobObject(options.job_handle, in LaunchProcess()
|
/external/cronet/base/message_loop/ |
D | message_pump_win.h | 273 bool RegisterJobObject(HANDLE job_handle, IOHandler* handler);
|
D | message_pump_win.cc | 686 bool MessagePumpForIO::RegisterJobObject(HANDLE job_handle, in RegisterJobObject() argument 693 return ::SetInformationJobObject(job_handle, in RegisterJobObject()
|