Home
last modified time | relevance | path

Searched refs:directory (Results 1 – 25 of 2995) sorted by relevance

12345678910>>...120

/external/e2fsprogs/tests/f_h_reindex/
Dexpect.14 Pass 2: Checking directory structure
5 Problem in HTREE directory inode 16001: block #1 has bad max hash
6 Problem in HTREE directory inode 16001: block #2 has bad min hash
7 Problem in HTREE directory inode 16001: block #2 has bad max hash
8 Problem in HTREE directory inode 16001: block #3 has bad min hash
9 Problem in HTREE directory inode 16001: block #3 has bad max hash
10 Problem in HTREE directory inode 16001: block #4 has bad min hash
11 Problem in HTREE directory inode 16001: block #4 has bad max hash
12 Problem in HTREE directory inode 16001: block #5 has bad min hash
13 Problem in HTREE directory inode 16001: block #5 has bad max hash
[all …]
/external/skia/tools/
Dgit-sync-deps76 def git_repository_sync_is_disabled(git, directory): argument
79 [git, 'config', 'sync-deps.disable'], cwd=directory)
85 def is_git_toplevel(git, directory): argument
96 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip()
97 return os.path.realpath(directory) == os.path.realpath(toplevel)
102 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument
121 if not os.path.isdir(directory):
123 [git, 'clone', '--quiet', repo, directory])
125 if not is_git_toplevel(git, directory):
128 sys.stdout.write('%s\n IS NOT TOP-LEVEL GIT DIRECTORY.\n' % directory)
[all …]
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DTrialOutputFactoryService.java60 private File directory; field in TrialOutputFactoryService
74 if (directory == null) { in getTrialOutputFile()
78 dir = directory; in getTrialOutputFile()
105 File directory; in startUp() local
109 directory = new File(dirName); in startUp()
110 if (!directory.exists()) { in startUp()
111 if (!directory.mkdirs()) { in startUp()
116 } else if (!directory.isDirectory()) { in startUp()
122 directory = new File(directory, String.format("run-%s", run.id())); in startUp()
123 if (!directory.mkdir()) { in startUp()
[all …]
/external/dng_sdk/source/
Ddng_preview.cpp53 dng_preview_tag_set (dng_tiff_directory &directory,
63 dng_preview_tag_set::dng_preview_tag_set (dng_tiff_directory &directory, in dng_preview_tag_set() argument
67 : dng_basic_tag_set (directory, ifd) in dng_preview_tag_set()
105 directory.Add (&fApplicationNameTag); in dng_preview_tag_set()
112 directory.Add (&fApplicationVersionTag); in dng_preview_tag_set()
119 directory.Add (&fSettingsNameTag); in dng_preview_tag_set()
126 directory.Add (&fSettingsDigestTag); in dng_preview_tag_set()
133 directory.Add (&fColorSpaceTag); in dng_preview_tag_set()
140 directory.Add (&fDateTimeTag); in dng_preview_tag_set()
147 directory.Add (&fRawToPreviewGainTag); in dng_preview_tag_set()
[all …]
/external/okhttp/okio/okio/src/main/java/okio/
DSegmentedByteString.java52 transient final int[] directory; field in SegmentedByteString
71 this.directory = new int[segmentCount * 2]; in SegmentedByteString()
77 directory[segmentCount] = offset; in SegmentedByteString()
78 directory[segmentCount + segments.length] = s.pos; in SegmentedByteString()
125 checkOffsetAndCount(directory[segments.length - 1], pos, 1); in getByte()
127 int segmentOffset = segment == 0 ? 0 : directory[segment - 1]; in getByte()
128 int segmentPos = directory[segment + segments.length]; in getByte()
135 int i = Arrays.binarySearch(directory, 0, segments.length, pos + 1); in segment()
140 return directory[segments.length - 1]; in size()
144 byte[] result = new byte[directory[segments.length - 1]]; in toByteArray()
[all …]
/external/e2fsprogs/tests/f_h_badroot/
Dexpect.14 HTREE directory inode 13345 has an invalid root node.
7 HTREE directory inode 26689 has an unsupported hash version (240)
10 HTREE directory inode 40033 has an invalid root node.
13 HTREE directory inode 53377 has a tree depth (8) which is too big
16 HTREE directory inode 66721 uses an incompatible htree root node flag.
19 Pass 2: Checking directory structure
20 Problem in HTREE directory inode 80065: block #0 has an unordered hash table
23 Problem in HTREE directory inode 86737: block #0 has invalid limit (511)
26 Problem in HTREE directory inode 93409: block #0 has invalid count (234)
29 Problem in HTREE directory inode 73393: block #1 has bad min hash
[all …]
/external/e2fsprogs/tests/f_baddotdir/
Dexpect.14 Pass 2: Checking directory structure
5 Missing '.' in directory inode 12.
8 Missing '..' in directory inode 12.
11 First entry 'X' (inode=11) in directory inode 13 (/b) should be '.'
14 Missing '..' in directory inode 14.
17 Second entry 'XX' (inode=11) in directory inode 15 should be '..'
20 '.' directory entry in directory inode 17 is not NULL terminated
23 '..' directory entry in directory inode 17 is not NULL terminated
26 Missing '.' in directory inode 16.
29 Missing '..' in directory inode 16.
[all …]
/external/protobuf/gtest/test/
Drun_tests_util.py262 def _FindFilesByRegex(self, directory, regex): argument
273 return [self.os.path.join(directory, file_name)
274 for file_name in self.os.listdir(directory)
372 for directory in build_dirs:
374 config = _GetConfigFromBuildDir(directory)
380 python_test_pairs.append((directory, test))
383 for directory in build_dirs:
386 [(directory, self.os.path.join(directory, test))
389 tests = self._FindFilesByRegex(directory, BINARY_TEST_SEARCH_REGEX)
390 binary_test_pairs.extend([(directory, test) for test in tests])
[all …]
/external/conscrypt/src/main/java/org/conscrypt/
DFileClientSessionCache.java58 final File directory; field in FileClientSessionCache.Impl
77 Impl(File directory) throws IOException { in Impl() argument
78 boolean exists = directory.exists(); in Impl()
79 if (exists && !directory.isDirectory()) { in Impl()
80 throw new IOException(directory + " exists but is not a directory."); in Impl()
90 initialFiles = directory.list(); in Impl()
94 throw new IOException(directory + " exists but cannot list contents."); in Impl()
100 if (!directory.mkdirs()) { in Impl()
101 throw new IOException("Creation of " + directory + " directory failed."); in Impl()
106 this.directory = directory; in Impl()
[all …]
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/groovy/org/mockftpserver/fake/filesystem/
DFileInfo.groovy19 * Represents the information describing a single file or directory in the file system.
29 final boolean directory
33 * Construct and return a new instance representing a directory entry.
34 * @param name - the directory name
35 * @param lastModified - the lastModified Date for the directory
36 * @return a new FileInfo instance representing a directory
44 * @param name - the directory name
46 * @param lastModified - the lastModified Date for the directory
47 * @return a new FileInfo instance representing a directory
53 private FileInfo(boolean directory, String name, long size, Date lastModified) {
[all …]
/external/e2fsprogs/tests/f_h_badnode/
Dexpect.12 Pass 2: Checking directory structure
3 Problem in HTREE directory inode 12929: block #531 has bad max hash
4 Problem in HTREE directory inode 12929: block #993 referenced twice
5 Problem in HTREE directory inode 12929: block #1061 has bad min hash
6 Problem in HTREE directory inode 12929: block #1062 has invalid depth (2)
7 Problem in HTREE directory inode 12929: block #1062 has bad max hash
8 Problem in HTREE directory inode 12929: block #1062 not referenced
9 Invalid HTREE directory inode 12929 (/test2). Clear HTree index? yes
11 Pass 3: Checking directory connectivity
/external/proguard/src/proguard/io/
DDirectoryPump.java34 private final File directory; field in DirectoryPump
37 public DirectoryPump(File directory) in DirectoryPump() argument
39 this.directory = directory; in DirectoryPump()
48 if (!directory.exists()) in pumpDataEntries()
53 readFiles(directory, dataEntryReader); in pumpDataEntries()
65 dataEntryReader.read(new FileDataEntry(directory, file)); in readFiles()
/external/icu/icu4c/source/samples/csdet/
Dreadme.txt21 2. Add ICU's bin directory to the path, e.g.
24 3. cd into the uresb directory, e.g.
28 …WARNING: The .txt files must be in the same directory as the executable, which is not the case by …
32 Specify an ICU install directory when running configure,
35 cd <icu directory>/source
36 runConfigureICU <platform-name> --prefix <icu install directory> [other options]
43 cd <icu directory>/source/samples/uresb
44 gmake ICU_PREFIX=<icu install directory) ICU_PATH=<icu source directory>
47 cd <icu directory>/source/samples/uresb
49 gmake ICU_PREFIX=<icu install directory> check
[all …]
/external/e2fsprogs/tests/f_resize_inode/
Dexpect22 Pass 2: Checking directory structure
23 Pass 3: Checking directory connectivity
35 Pass 2: Checking directory structure
36 Pass 3: Checking directory connectivity
50 Pass 2: Checking directory structure
51 Pass 3: Checking directory connectivity
63 Pass 2: Checking directory structure
64 Pass 3: Checking directory connectivity
78 Pass 2: Checking directory structure
79 Pass 3: Checking directory connectivity
[all …]
/external/mockftpserver/tags/2.0.1/src/site/apt/
Dfakeftpserver-filesystems.apt8 …ver>> provides a simulated server file system, including support for file and directory permissions
31 Windows file system. The rules for file and directory names include:
45 file system. The rules for file and directory names include:
59 then creating a directory or file will automatically create any parent directories (recursively)
60 that do not already exist. If <false>, then creating a directory or file throws an
61 exception if its parent directory does not exist. This value defaults to <true>.
64 used by the <formatDirectoryListing> method to format directory listings in a
71 …Each <file> or <directory> entry within a <<<FileSystem>>> has associated <owner>, <group> and <pe…
72 …attributes. All of these attributes are optional. If none are specified for a file or directory, t…
76 read, written or deleted, and whether a directory can be created, listed or deleted.
[all …]
/external/mockftpserver/tags/2.0.2/src/site/apt/
Dfakeftpserver-filesystems.apt8 …ver>> provides a simulated server file system, including support for file and directory permissions
31 Windows file system. The rules for file and directory names include:
45 file system. The rules for file and directory names include:
59 then creating a directory or file will automatically create any parent directories (recursively)
60 that do not already exist. If <false>, then creating a directory or file throws an
61 exception if its parent directory does not exist. This value defaults to <true>.
64 used by the <formatDirectoryListing> method to format directory listings in a
71 …Each <file> or <directory> entry within a <<<FileSystem>>> has associated <owner>, <group> and <pe…
72 …attributes. All of these attributes are optional. If none are specified for a file or directory, t…
76 read, written or deleted, and whether a directory can be created, listed or deleted.
[all …]
/external/mockftpserver/tags/2.0-rc1/src/site/apt/
Dfakeftpserver-filesystems.apt8 …ver>> provides a simulated server file system, including support for file and directory permissions
31 Windows file system. The rules for file and directory names include:
45 file system. The rules for file and directory names include:
59 then creating a directory or file will automatically create any parent directories (recursively)
60 that do not already exist. If <false>, then creating a directory or file throws an
61 exception if its parent directory does not exist. This value defaults to <true>.
64 used by the <formatDirectoryListing> method to format directory listings in a
71 …Each <file> or <directory> entry within a <<<FileSystem>>> has associated <owner>, <group> and <pe…
72 …attributes. All of these attributes are optional. If none are specified for a file or directory, t…
76 read, written or deleted, and whether a directory can be created, listed or deleted.
[all …]
/external/mockftpserver/tags/2.1/src/site/apt/
Dfakeftpserver-filesystems.apt8 …ver>> provides a simulated server file system, including support for file and directory permissions
31 Windows file system. The rules for file and directory names include:
45 file system. The rules for file and directory names include:
59 then creating a directory or file will automatically create any parent directories (recursively)
60 that do not already exist. If <false>, then creating a directory or file throws an
61 exception if its parent directory does not exist. This value defaults to <true>.
64 used by the <formatDirectoryListing> method to format directory listings in a
71 …Each <file> or <directory> entry within a <<<FileSystem>>> has associated <owner>, <group> and <pe…
72 …attributes. All of these attributes are optional. If none are specified for a file or directory, t…
76 read, written or deleted, and whether a directory can be created, listed or deleted.
[all …]
/external/mockftpserver/tags/2.0/src/site/apt/
Dfakeftpserver-filesystems.apt8 …ver>> provides a simulated server file system, including support for file and directory permissions
31 Windows file system. The rules for file and directory names include:
45 file system. The rules for file and directory names include:
59 then creating a directory or file will automatically create any parent directories (recursively)
60 that do not already exist. If <false>, then creating a directory or file throws an
61 exception if its parent directory does not exist. This value defaults to <true>.
64 used by the <formatDirectoryListing> method to format directory listings in a
71 …Each <file> or <directory> entry within a <<<FileSystem>>> has associated <owner>, <group> and <pe…
72 …attributes. All of these attributes are optional. If none are specified for a file or directory, t…
76 read, written or deleted, and whether a directory can be created, listed or deleted.
[all …]
/external/mockftpserver/tags/2.2/src/site/apt/
Dfakeftpserver-filesystems.apt8 …ver>> provides a simulated server file system, including support for file and directory permissions
31 Windows file system. The rules for file and directory names include:
45 file system. The rules for file and directory names include:
59 then creating a directory or file will automatically create any parent directories (recursively)
60 that do not already exist. If <false>, then creating a directory or file throws an
61 exception if its parent directory does not exist. This value defaults to <true>.
64 used by the <formatDirectoryListing> method to format directory listings in a
71 …Each <file> or <directory> entry within a <<<FileSystem>>> has associated <owner>, <group> and <pe…
72 …attributes. All of these attributes are optional. If none are specified for a file or directory, t…
76 read, written or deleted, and whether a directory can be created, listed or deleted.
[all …]
/external/mockftpserver/MockFtpServer/src/site/apt/
Dfakeftpserver-filesystems.apt8 …ver>> provides a simulated server file system, including support for file and directory permissions
31 Windows file system. The rules for file and directory names include:
45 file system. The rules for file and directory names include:
59 then creating a directory or file will automatically create any parent directories (recursively)
60 that do not already exist. If <false>, then creating a directory or file throws an
61 exception if its parent directory does not exist. This value defaults to <true>.
64 used by the <formatDirectoryListing> method to format directory listings in a
71 …Each <file> or <directory> entry within a <<<FileSystem>>> has associated <owner>, <group> and <pe…
72 …attributes. All of these attributes are optional. If none are specified for a file or directory, t…
76 read, written or deleted, and whether a directory can be created, listed or deleted.
[all …]
/external/mockftpserver/tags/2.4/src/site/apt/
Dfakeftpserver-filesystems.apt8 …ver>> provides a simulated server file system, including support for file and directory permissions
31 Windows file system. The rules for file and directory names include:
45 file system. The rules for file and directory names include:
59 then creating a directory or file will automatically create any parent directories (recursively)
60 that do not already exist. If <false>, then creating a directory or file throws an
61 exception if its parent directory does not exist. This value defaults to <true>.
64 used by the <formatDirectoryListing> method to format directory listings in a
71 …Each <file> or <directory> entry within a <<<FileSystem>>> has associated <owner>, <group> and <pe…
72 …attributes. All of these attributes are optional. If none are specified for a file or directory, t…
76 read, written or deleted, and whether a directory can be created, listed or deleted.
[all …]
/external/mockftpserver/tags/2.5/src/site/apt/
Dfakeftpserver-filesystems.apt8 …ver>> provides a simulated server file system, including support for file and directory permissions
31 Windows file system. The rules for file and directory names include:
45 file system. The rules for file and directory names include:
59 then creating a directory or file will automatically create any parent directories (recursively)
60 that do not already exist. If <false>, then creating a directory or file throws an
61 exception if its parent directory does not exist. This value defaults to <true>.
64 used by the <formatDirectoryListing> method to format directory listings in a
71 …Each <file> or <directory> entry within a <<<FileSystem>>> has associated <owner>, <group> and <pe…
72 …attributes. All of these attributes are optional. If none are specified for a file or directory, t…
76 read, written or deleted, and whether a directory can be created, listed or deleted.
[all …]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/site/apt/
Dfakeftpserver-filesystems.apt8 …ver>> provides a simulated server file system, including support for file and directory permissions
31 Windows file system. The rules for file and directory names include:
45 file system. The rules for file and directory names include:
59 then creating a directory or file will automatically create any parent directories (recursively)
60 that do not already exist. If <false>, then creating a directory or file throws an
61 exception if its parent directory does not exist. This value defaults to <true>.
64 used by the <formatDirectoryListing> method to format directory listings in a
71 …Each <file> or <directory> entry within a <<<FileSystem>>> has associated <owner>, <group> and <pe…
72 …attributes. All of these attributes are optional. If none are specified for a file or directory, t…
76 read, written or deleted, and whether a directory can be created, listed or deleted.
[all …]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/site/apt/
Dfakeftpserver-filesystems.apt8 …ver>> provides a simulated server file system, including support for file and directory permissions
31 Windows file system. The rules for file and directory names include:
45 file system. The rules for file and directory names include:
59 then creating a directory or file will automatically create any parent directories (recursively)
60 that do not already exist. If <false>, then creating a directory or file throws an
61 exception if its parent directory does not exist. This value defaults to <true>.
64 used by the <formatDirectoryListing> method to format directory listings in a
71 …Each <file> or <directory> entry within a <<<FileSystem>>> has associated <owner>, <group> and <pe…
72 …attributes. All of these attributes are optional. If none are specified for a file or directory, t…
76 read, written or deleted, and whether a directory can be created, listed or deleted.
[all …]

12345678910>>...120