Lines Matching refs:job_handle
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()
403 zx_status_t status = job_handle.kill(); in LaunchChildTestProcessWithOptions()