Home
last modified time | relevance | path

Searched refs:destPath (Results 1 – 3 of 3) sorted by relevance

/tools/treble/hacksaw/workspace/
Dcopier.go116 destPath, err := f.GetDestPath(codebaseDir, path, workspaceDir)
120 if err = f.CopyDirRecursive(info, path, destPath); err != nil {
137 destPath := filepath.Join(workspaceDir, relPath)
138 return destPath, err
144 destPath, err := f.GetDestPath(codebaseDir, sourcePath, workspaceDir)
150 return f.CopySymlink(sourcePath, destPath)
152 return f.CopyDirOnly(sourceInfo, destPath)
154 return f.CopyFile(sourceInfo, sourcePath, destPath)
158 func (f FileCopier) CopySymlink(sourcePath string, destPath string) error {
160 _, err := os.Lstat(destPath)
[all …]
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DTestOutputUploader.java64 public String uploadFile(File file, String destPath) throws IOException { in uploadFile() argument
68 String uploadUrl = joinSegments(mUploadUrl, destPath); in uploadFile()
85 String fullPath = joinSegments(destPath, file.getName()); in uploadFile()
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DTestDeviceTest.java6677 public boolean doesFileExist(String destPath) in testGetBugreportz()