Home
last modified time | relevance | path

Searched refs:pid_path (Results 1 – 5 of 5) sorted by relevance

/external/autotest/server/cros/repair/
Dmac_address_helper.py171 pid_path = _run(cmd_template % (pid, base_path, 'idProduct'))
172 if not pid_path:
177 (vid_path, pid_path))
/external/crosvm/tools/impl/
Dtestvm.py94 def pid_path(arch: Arch): function
202 with open(pid_path(arch), "w") as pid_file:
207 if not pid_path(arch).exists():
210 with open(pid_path(arch), "r") as pid_file:
/external/libbrillo/brillo/
Dprocess_test.cc346 FilePath pid_path = temp_dir_.GetPath().Append("pid"); in TEST_F() local
347 EXPECT_FALSE(process_.ResetPidByFile(pid_path.value())); in TEST_F()
348 EXPECT_TRUE(base::WriteFile(pid_path, "456\n", 4)); in TEST_F()
349 EXPECT_TRUE(process_.ResetPidByFile(pid_path.value())); in TEST_F()
/external/autotest/client/cros/power/
Dpower_utils.py890 pid_path = os.path.join(dirpath, '..', 'idProduct')
895 pid = utils.read_one_line(pid_path)
/external/autotest/client/common_lib/
Dutils.py1006 pid_path = '/proc/%d/'
1007 if not os.path.exists(pid_path % pid):