Home
last modified time | relevance | path

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

/build/blueprint/pathtools/
Dfs.go32 type ShouldFollowSymlinks bool type
35 FollowSymlinks = ShouldFollowSymlinks(true)
36 DontFollowSymlinks = ShouldFollowSymlinks(false)
95 …Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (matches, dirs []string, err … argument
113 ListDirsRecursive(name string, follow ShouldFollowSymlinks) (dirs []string, err error) argument
153 func (fs osFs) Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (matches, dirs …
170 func (osFs) ListDirsRecursive(name string, follow ShouldFollowSymlinks) (dirs []string, err error) {
303 func (m *mockFs) Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (matches, dir…
429 func (m *mockFs) ListDirsRecursive(name string, follow ShouldFollowSymlinks) ([]string, error) {
453 func listDirsRecursive(fs FileSystem, name string, follow ShouldFollowSymlinks) ([]string, error) { argument
[all …]
Dglob.go42 func Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (matches, deps []string, … argument
47 follow ShouldFollowSymlinks) (matches, deps []string, err error) { argument
105 follow ShouldFollowSymlinks) (matches, dirs []string, err error) { argument
/build/soong/zip/
Dzip.go191 followSymlinks pathtools.ShouldFollowSymlinks
275 followSymlinks := pathtools.ShouldFollowSymlinks(!args.StoreSymlinks)