Searched refs:job_handle (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/sandbox/win/src/
H A Djob_unittest.cc22 HANDLE job_handle = ::OpenJobObjectW(GENERIC_ALL, FALSE, local
24 ASSERT_TRUE(job_handle != NULL);
26 if (job_handle)
27 CloseHandle(job_handle);
31 HANDLE job_handle = ::OpenJobObjectW(GENERIC_ALL, FALSE, L"my_test_job_name"); local
32 ASSERT_TRUE(job_handle == NULL);
38 HANDLE job_handle; local
45 job_handle = job.Detach();
46 ASSERT_TRUE(job_handle != NULL);
59 if (job_handle)
70 HANDLE job_handle; local
176 HANDLE job_handle = job.Detach(); local
[all...]
H A Drestricted_token_utils.h50 // The output parameter job_handle is the handle to the job object. It has
64 HANDLE *job_handle);
/external/chromium_org/base/process/
H A Dlaunch.cc17 job_handle(NULL),
H A Dlaunch_win.cc166 if (options.job_handle) {
214 if (options.job_handle) {
215 if (0 == AssignProcessToJobObject(options.job_handle,
H A Dlaunch.h76 HANDLE job_handle; member in struct:base::LaunchOptions
/external/chromium_org/sandbox/win/tools/launcher/
H A Dlauncher.cc136 HANDLE job_handle; local
142 &job_handle);
153 ::CloseHandle(job_handle);
/external/chromium_org/base/message_loop/
H A Dmessage_pump_win.h285 bool RegisterJobObject(HANDLE job_handle, IOHandler* handler);
H A Dmessage_pump_win.cc450 bool MessagePumpForIO::RegisterJobObject(HANDLE job_handle, argument
459 return SetInformationJobObject(job_handle,
/external/chromium_org/base/test/launcher/
H A Dtest_launcher.cc256 DCHECK(!new_options.job_handle);
258 win::ScopedHandle job_handle; local
260 job_handle.Set(CreateJobObject(NULL, NULL));
261 if (!job_handle.IsValid()) {
275 if (!SetJobObjectLimitFlags(job_handle.Get(), job_flags)) {
280 new_options.job_handle = job_handle.Get();

Completed in 1125 milliseconds