Home
last modified time | relevance | path

Searched defs:FileCopier (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/tools/treble/hacksaw/workspace/
H A Dcopier.go26 type FileCopier struct { struct
34 …eCopier) GetIsGitProjectFunc(codebaseDir string, gitProjects []string) func(string) (bool, error) {
54 …r) GetContainsGitProjectFunc(codebaseDir string, gitProjects []string) func(string) (bool, error) {
77 func (f FileCopier) Copy(codebaseDir string, gitProjects []string, workspaceDir string) error {
129 func (f FileCopier) GetDestPath(codebaseDir, sourcePath, workspaceDir string) (string, error) {
143 … FileCopier) CopyNode(sourceInfo os.FileInfo, codebaseDir, sourcePath, workspaceDir string) error {
158 func (f FileCopier) CopySymlink(sourcePath string, destPath string) error {
175 func (f FileCopier) CopyDirOnly(sourceInfo os.FileInfo, destPath string) error {
188 func (f FileCopier) CopyFile(sourceInfo os.FileInfo, sourcePath, destPath string) error {
214 func (f FileCopier) CopyDirRecursive(sourceInfo os.FileInfo, sourcePath, destPath string) error {
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
H A DFileCopier.java17 public class FileCopier { class