Home
last modified time | relevance | path

Searched refs:proc_handle (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/openmp/libomptarget/plugins/ve/src/
Drtl.cpp262 struct veo_proc_handle *proc_handle; in __tgt_rtl_load_binary() local
269 proc_handle = veo_proc_create(DeviceInfo.NodeIds[ID]); in __tgt_rtl_load_binary()
270 if (!proc_handle) { in __tgt_rtl_load_binary()
275 proc_handle = veo_proc_create_static(DeviceInfo.NodeIds[ID], tmp_name); in __tgt_rtl_load_binary()
276 if (!proc_handle) { in __tgt_rtl_load_binary()
282 DeviceInfo.ProcHandles[ID] = proc_handle; in __tgt_rtl_load_binary()
342 struct veo_proc_handle *proc_handle; in __tgt_rtl_data_alloc() local
343 proc_handle = veo_proc_create(DeviceInfo.NodeIds[ID]); in __tgt_rtl_data_alloc()
344 if (!proc_handle) { in __tgt_rtl_data_alloc()
348 DeviceInfo.ProcHandles[ID] = proc_handle; in __tgt_rtl_data_alloc()
[all …]
/external/angle/src/tests/
Dcapture_replay_tests.py173 self.proc_handle = subprocess.Popen(
176 self.proc_handle = subprocess.Popen(command, env=env, shell=False)
180 output = self.proc_handle.communicate(timeout=timeout)[0]
185 return self.proc_handle.returncode, output
188 return self.proc_handle.pid
191 self.proc_handle.terminate()
192 self.proc_handle.wait()
/external/perfetto/src/base/
Dsubprocess_unittest.cc309 ScopedPlatformHandle proc_handle(::OpenProcess( in TEST() local
311 ASSERT_TRUE(proc_handle); in TEST()
312 ASSERT_TRUE(::TerminateProcess(*proc_handle, DBG_CONTROL_BREAK)); in TEST()
/external/perfetto/test/stress_test/
Dstress_test.cc429 base::ScopedPlatformHandle proc_handle( in CtrlCHandler() local
431 ::TerminateProcess(*proc_handle, STATUS_CONTROL_C_EXIT); in CtrlCHandler()