Searched refs:cmdline_path (Results 1 – 4 of 4) sorted by relevance
/external/chromium-trace/catapult/devil/devil/android/ |
D | flag_changer_devicetest.py | 39 self.cmdline_path = posixpath.join(flag_changer._CMDLINE_DIR, _CMDLINE_FILE) 45 self.device.RemovePath([self.cmdline_path, self.cmdline_path_legacy], 54 self.device.WriteFile(self.cmdline_path, 'chrome --some --old --flags') 75 self.device.RemovePath(self.cmdline_path, force=True) 76 self.assertFalse(self.device.PathExists(self.cmdline_path)) 80 self.assertTrue(self.device.PathExists(self.cmdline_path)) 82 self.assertFalse(self.device.PathExists(self.cmdline_path))
|
D | flag_changer_test.py | 42 self.cmdline_path = posixpath.join(flag_changer._CMDLINE_DIR, _CMDLINE_FILE) 53 self.cmdline_path) 57 self.device.WriteFile(self.cmdline_path, 'chrome --old --stuff') 58 self.assertTrue(self.device.PathExists(self.cmdline_path)) 65 self.assertFalse(self.device.PathExists(self.cmdline_path))
|
D | flag_changer.py | 69 cmdline_path = posixpath.join(_CMDLINE_DIR, cmdline_file) 73 cmdline_path, alternate_cmdline_path = (alternate_cmdline_path, 74 cmdline_path) 77 self._cmdline_path = cmdline_path
|
/external/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ |
D | ittnotify_static.cpp | 848 char cmdline_path[PATH_MAX] = {0}; in __itt_get_lib_name() local 854 res = snprintf(cmdline_path, PATH_MAX - 1, "/proc/%d/cmdline", my_pid); in __itt_get_lib_name() 861 ITT_ANDROID_LOGI("CMD file: %s\n", cmdline_path); in __itt_get_lib_name() 862 cmdline_fd = open(cmdline_path, O_RDONLY); in __itt_get_lib_name() 865 ITT_ANDROID_LOGE("Unable to open %s file!", cmdline_path); in __itt_get_lib_name() 871 ITT_ANDROID_LOGE("Unable to read %s file!", cmdline_path); in __itt_get_lib_name() 875 ITT_ANDROID_LOGE("Unable to close %s file!", cmdline_path); in __itt_get_lib_name() 882 ITT_ANDROID_LOGE("Unable to close %s file!", cmdline_path); in __itt_get_lib_name()
|