/test/vts/testcases/host/kernel_proc_file_api_test/ |
D | vts_kernel_proc_file_api_test.py | 147 filepath = "/proc/pagetypeinfo" 150 "cat %s | incident_helper -s 2001" % filepath) 153 "Failed to parse %s." % filepath) 156 filepath = "/proc/sysrq-trigger" 160 self.dut.shell.Execute("echo u > %s" % filepath) 163 self.dut.shell.Execute("echo b > %s" % filepath) 192 filepath = "/proc/uid_procstat/set" 198 self.dut.shell.Execute("echo %d %s > %s" % (root_uid, state, filepath)) 221 for filepath in filepaths: 222 self.assertTrue(self.dut.Exists(filepath), [all …]
|
D | proc_utils.py | 80 def GetPermission(self, filepath): argument 82 out, err, r_code = self.shell.Execute('stat -c %%a %s' % filepath) 85 (filepath, out, err)) 145 def ReadFileContent(self, filepath): argument 154 cmd = "cat %s" % filepath 160 % (filepath, err))
|
/test/vts/tools/vts-core-tradefed/src/com/android/tradefed/util/ |
D | TargetFileUtils.java | 71 public static String getPermission(String filepath, ITestDevice device) in getPermission() argument 73 CommandResult commandResult = device.executeShellV2Command("stat -c %a " + filepath); in getPermission() 169 public static boolean isReadOnly(String filepath, ITestDevice device) in isReadOnly() argument 171 String permissionBits = getPermission(filepath, device); in isReadOnly() 184 public static boolean isReadWriteOnly(String filepath, ITestDevice device) in isReadWriteOnly() argument 186 String permissionBits = getPermission(filepath, device); in isReadWriteOnly()
|
/test/vts/utils/python/file/ |
D | target_file_utils.py | 41 def Exists(filepath, shell): argument 51 return _Test(shell, "-e", filepath) 98 def ReadFileContent(filepath, shell): argument 111 cmd = "cat %s" % filepath 113 logging.debug("%s: Shell command '%s' results: %s", filepath, cmd, results)
|
/test/vts/drivers/resource/hidl_handle_driver/ |
D | VtsHidlHandleDriver.cpp | 43 HandleId VtsHidlHandleDriver::CreateFileHandle(string filepath, int flag, in CreateFileHandle() argument 55 int curr_fd = open(filepath.c_str(), flag, mode); in CreateFileHandle() 58 << filepath; in CreateFileHandle()
|
/test/vts-testcase/kernel/ltp/ |
D | test_cases_parser.py | 162 def ReadCommentedTxt(self, filepath): argument 171 if not filepath: 175 with open(filepath, 'r') as f:
|
D | KernelLtpTest.py | 143 filepath = os.path.join(dirpath, filename) 145 with open(filepath, 'rb') as f: 152 with open(filepath, 'wb') as f:
|
/test/vts-testcase/kernel/ltp/testcase/tools/ |
D | ltp_test_cases.py | 258 def ReadCommentedTxt(self, filepath): argument 267 if not filepath: 271 with open(filepath, 'r') as f:
|
/test/vts/drivers/resource/include/hidl_handle_driver/ |
D | VtsHidlHandleDriver.h | 72 HandleId CreateFileHandle(string filepath, int flag, int mode,
|
/test/vts/utils/python/mirror/ |
D | mirror_tracker.py | 241 filepath, argument 281 mirror._createHandleForSingleFile(filepath, mode, ints)
|
D | resource_mirror.py | 674 def _createHandleForSingleFile(self, filepath, mode, int_data): argument 700 fd_message.file_name = filepath
|
/test/vts/drivers/resource/resource_manager/ |
D | VtsResourceManager.cpp | 67 string filepath = file_desc_info.file_name(); in ProcessHidlHandleCommand() local 99 if (stat(filepath.c_str(), &buffer) == 0) { in ProcessHidlHandleCommand() 122 hidl_handle_driver_.CreateFileHandle(filepath, flag, mode, int_data); in ProcessHidlHandleCommand()
|