Searched refs:new_file_path (Results 1 – 3 of 3) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_suppressions.cc | 34 /*out*/char *new_file_path, in GetPathAssumingFileIsRelativeToExec() argument 40 internal_strncat(new_file_path, exec.data(), in GetPathAssumingFileIsRelativeToExec() 42 internal_strncat(new_file_path, file_path, in GetPathAssumingFileIsRelativeToExec() 43 new_file_path_size - internal_strlen(new_file_path) - 1); in GetPathAssumingFileIsRelativeToExec() 55 InternalScopedString new_file_path(kMaxPathLength); in ParseFromFile() local 57 GetPathAssumingFileIsRelativeToExec(filename, new_file_path.data(), in ParseFromFile() 58 new_file_path.size())) { in ParseFromFile() 59 filename = new_file_path.data(); in ParseFromFile()
|
/external/owasp/sanitizer/tools/ |
D | cut_release.py | 176 for new_file_path in new_file_paths: 177 mime_type = mime_type_from_path(new_file_path) 179 print "svn propset svn:mime-type '%s' '%s'" % (mime_type, new_file_path)
|
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/ |
D | fake_filesystem_test.py | 855 new_file_path = '%s/plugh_new' % directory 858 self.assertFalse(self.filesystem.Exists(new_file_path)) 859 self.os.rename(old_file_path, new_file_path) 861 self.assertTrue(self.filesystem.Exists(new_file_path)) 863 self.filesystem.GetObject(new_file_path).contents) 881 new_file_path = '%s/plugh_new' % directory 883 self.filesystem.CreateFile(new_file_path, contents='test contents 2') 885 self.assertTrue(self.filesystem.Exists(new_file_path)) 886 self.os.rename(old_file_path, new_file_path) 888 self.assertTrue(self.filesystem.Exists(new_file_path)) [all …]
|