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)
98 …Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (matches, dirs []string, err … argument
116 ListDirsRecursive(name string, follow ShouldFollowSymlinks) (dirs []string, err error) argument
197 func (fs *osFs) Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (matches, dirs…
216 func (fs *osFs) ListDirsRecursive(name string, follow ShouldFollowSymlinks) (dirs []string, err err…
349 func (m *mockFs) Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (matches, dir…
475 func (m *mockFs) ListDirsRecursive(name string, follow ShouldFollowSymlinks) ([]string, error) {
499 func listDirsRecursive(fs FileSystem, name string, follow ShouldFollowSymlinks) ([]string, error) { argument
[all …]
Dglob.go43 func Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (matches, deps []string, … argument
48 follow ShouldFollowSymlinks) (matches, deps []string, err error) { argument
106 follow ShouldFollowSymlinks) (matches, dirs []string, err error) { argument
/build/soong/zip/
Dzip.go191 followSymlinks pathtools.ShouldFollowSymlinks
276 followSymlinks := pathtools.ShouldFollowSymlinks(!args.StoreSymlinks)