Home
last modified time | relevance | path

Searched refs:Directory (Results 1 – 25 of 984) sorted by relevance

12345678910>>...40

/external/e2fsprogs/tests/f_holedir4/
Dexpect.12 Directory inode 12 block 211 should be at block 25. Fix? yes
9 Directory inode 12 has an unallocated block #2. Allocate? yes
11 Directory inode 12 has an unallocated block #3. Allocate? yes
13 Directory inode 12 has an unallocated block #4. Allocate? yes
15 Directory inode 12 has an unallocated block #5. Allocate? yes
17 Directory inode 12 has an unallocated block #6. Allocate? yes
19 Directory inode 12 has an unallocated block #7. Allocate? yes
21 Directory inode 12 has an unallocated block #8. Allocate? yes
23 Directory inode 12 has an unallocated block #9. Allocate? yes
25 Directory inode 12 has an unallocated block #10. Allocate? yes
[all …]
/external/e2fsprogs/tests/f_dir_bad_csum/
Dexpect.13 Directory inode 12, block #0: directory passes checks but fails checksum.
6 Directory inode 13, block #0, offset 0: directory has no checksum.
9 Directory inode 14, block #0, offset 0: directory has no checksum.
12 Directory inode 15, block #0, offset 0: directory has no checksum.
15 Directory inode 15, block #0, offset 1000: directory corrupted
18 Directory inode 16, block #0, offset 0: directory has no checksum.
21 Directory inode 16, block #0, offset 12: directory corrupted
24 Directory inode 17, block #0, offset 0: directory has no checksum.
27 Directory inode 17, block #0, offset 0: directory corrupted
/external/clang/unittests/Tooling/
DCompilationDatabaseTest.cpp113 EXPECT_EQ(Directory1, Commands[0].Directory) << ErrorMessage; in TEST()
117 EXPECT_EQ(Directory2, Commands[1].Directory) << ErrorMessage; in TEST()
132 EXPECT_EQ(Directory2, Commands[0].Directory) << ErrorMessage; in TEST()
136 EXPECT_EQ(Directory1, Commands[1].Directory) << ErrorMessage; in TEST()
157 StringRef Directory("//net/dir"); in TEST() local
165 ("[{\"directory\":\"" + Directory + "\"," in TEST()
170 EXPECT_EQ(Directory, FoundCommand.Directory) << ErrorMessage; in TEST()
256 EXPECT_TRUE(NotFound.Directory.empty()) << ErrorMessage; in TEST()
260 StringRef Directory("//net/some/directory"); in TEST() local
266 ("[{\"directory\":\"" + Directory + "\"," + in TEST()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/utils/
DGenLibDeps.pl31 my $Directory = $ARGV[0];
32 if (!defined($Directory) || ! -d "$Directory") {
69 opendir DIR,$Directory;
87 `$ranlibPath $Directory/$lib`;
109 open DEFS, "$nmPath -sg $Directory/$lib|";
149 open UDEFS, "$nmPath -Aup $Directory/$lib|";
165 open DEFS, "$nmPath -g $Directory/$lib|";
179 open DEFS, "$nmPath -g $Directory/$obj |";
204 "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' | sort | uniq |";
229 open UNDEFS, "$nmPath -u $Directory/$lib |";
Dfindsym.pl12 my $Directory = $ARGV[0];
17 opendir DIR,$Directory;
26 "nm $Directory/$lib | grep '$Symbol' | sort --key=3 | uniq |";
/external/llvm/utils/
DGenLibDeps.pl31 my $Directory = $ARGV[0];
32 if (!defined($Directory) || ! -d "$Directory") {
69 opendir DIR,$Directory;
87 `$ranlibPath $Directory/$lib`;
109 open DEFS, "$nmPath -sg $Directory/$lib|";
149 open UDEFS, "$nmPath -Aup $Directory/$lib|";
165 open DEFS, "$nmPath -g $Directory/$lib|";
179 open DEFS, "$nmPath -g $Directory/$obj |";
204 "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' | sort | uniq |";
229 open UNDEFS, "$nmPath -u $Directory/$lib |";
Dfindsym.pl12 my $Directory = $ARGV[0];
17 opendir DIR,$Directory;
26 "nm $Directory/$lib | grep '$Symbol' | sort --key=3 | uniq |";
/external/swiftshader/third_party/LLVM/utils/
DGenLibDeps.pl31 my $Directory = $ARGV[0];
32 if (!defined($Directory) || ! -d "$Directory") {
69 opendir DIR,$Directory;
87 `$ranlibPath $Directory/$lib`;
111 open DEFS, "$nmPath -sg $Directory/$lib|";
153 open UDEFS, "$nmPath -Aup $Directory/$lib|";
169 open DEFS, "$nmPath -g $Directory/$lib|";
183 open DEFS, "$nmPath -g $Directory/$obj |";
208 "$nmPath -u $Directory/$lib | sed -e 's/^[ 0]* U //' | sort | uniq |";
233 open UNDEFS, "$nmPath -u $Directory/$lib |";
Dfindsym.pl12 my $Directory = $ARGV[0];
17 opendir DIR,$Directory;
26 "nm $Directory/$lib | grep '$Symbol' | sort --key=3 | uniq |";
/external/clang/include/clang/Tooling/
DCompilationDatabase.h45 CompileCommand(Twine Directory, Twine Filename, in CompileCommand()
47 : Directory(Directory.str()), in CompileCommand()
52 std::string Directory; member
152 loadFromDirectory(StringRef Directory, std::string &ErrorMessage) = 0;
188 Twine Directory = ".");
192 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine);
/external/clang/lib/Tooling/
DCompilationDatabase.cpp57 findCompilationDatabaseFromDirectory(StringRef Directory, in findCompilationDatabaseFromDirectory() argument
61 while (!Directory.empty()) { in findCompilationDatabaseFromDirectory()
65 CompilationDatabase::loadFromDirectory(Directory, LoadErrorMessage)) in findCompilationDatabaseFromDirectory()
69 ErrorStream << "No compilation database found in " << Directory.str() in findCompilationDatabaseFromDirectory()
74 Directory = llvm::sys::path::parent_path(Directory); in findCompilationDatabaseFromDirectory()
84 StringRef Directory = llvm::sys::path::parent_path(AbsolutePath); in autoDetectFromSource() local
87 findCompilationDatabaseFromDirectory(Directory, ErrorMessage); in autoDetectFromSource()
283 int &Argc, const char *const *Argv, Twine Directory) { in loadFromCommandLine() argument
293 return new FixedCompilationDatabase(Directory, StrippedArgs); in loadFromCommandLine()
297 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine) { in FixedCompilationDatabase() argument
[all …]
DJSONCompilationDatabase.cpp122 loadFromDirectory(StringRef Directory, std::string &ErrorMessage) override { in loadFromDirectory() argument
123 SmallString<1024> JSONDatabasePath(Directory); in loadFromDirectory()
261 llvm::yaml::ScalarNode *Directory = nullptr; in parse() local
290 Directory = ValueString; in parse()
320 if (!Directory) { in parse()
330 Directory->getValue(DirectoryStorage)); in parse()
336 auto Cmd = CompileCommandRef(Directory, File, *Command); in parse()
/external/honggfuzz/examples/apache-httpd/
Dhttpd.conf.h164 <Directory />
67 </Directory>
71 <Directory /home/jagger/fuzz/apache/dist/htdocs>
74 </Directory>
75 <Directory /home/jagger/fuzz/apache/dist/htdocs/private>
81 </Directory>
82 <Directory /home/jagger/fuzz/apache/dist/cgi-bin>
85 </Directory>
Dhttpd.conf.h264 <Directory />
67 </Directory>
71 <Directory /home/jagger/fuzz/apache/dist/htdocs>
74 </Directory>
75 <Directory /home/jagger/fuzz/apache/dist/htdocs/private>
81 </Directory>
82 <Directory /home/jagger/fuzz/apache/dist/cgi-bin>
85 </Directory>
/external/ltp/testcases/kernel/controllers/cpuset/
DREADME25 Directory containing the shell script which is used to test the basis
30 Directory containing the shell script which is used to test exclusive
35 Directory containing the shell script is used to test hierarchy relation
40 Directory containing the shell script and program which are used to test
45 Directory containing the shell script and program which are used to test
50 Directory containing the shell script and program which are used to test
56 Directory containing the shell script and program which are used to test
61 Directory containing the shell script and program which are used to test
70 Directory containing the shell script and program which are used to test
/external/e2fsprogs/tests/f_resize_inode_meta_bg/
Dexpect.18 Directory inode 2, block #0, offset 0: directory has no checksum.
19 Directory inode 2, block #0, offset 860: directory corrupted
22 Directory inode 11, block #0, offset 0: directory corrupted
33 Directory inode 11, block #1, offset 0: directory corrupted
36 Directory inode 11, block #2, offset 0: directory corrupted
42 Directory inode 11, block #3, offset 864: directory corrupted
/external/ltp/testcases/kernel/fs/ext4-new-features/
DREADME72 Directory containing the shell script which is used to test multi-block
77 Directory containing the config of ffsb for test.
81 Directory containing the shell script which is used to test inode version field
86 Directory containing the shell script which is used to test journal checksumming
91 Directory containing the shell script which is used to test nanosec timestamps
96 Directory containing the shell script which is used to test online defrag
101 Directory containing the shell script which is used to test persist prealloc
106 Directory containing the shell script which is used to test subdirectory limit
112 Directory containing the shell script which is used to test uninitialized groups
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCDwarf.h226 Expected<unsigned> tryGetFile(StringRef &Directory, StringRef &FileName,
259 void maybeSetRootFile(StringRef Directory, StringRef FileName, in maybeSetRootFile() argument
263 Header.CompilationDir = Directory; in maybeSetRootFile()
272 unsigned getFile(StringRef Directory, StringRef FileName, in getFile() argument
274 return cantFail(Header.tryGetFile(Directory, FileName, Checksum, Source)); in getFile()
293 Expected<unsigned> tryGetFile(StringRef &Directory, StringRef &FileName,
297 unsigned getFile(StringRef &Directory, StringRef &FileName,
300 return cantFail(tryGetFile(Directory, FileName, Checksum, Source,
304 void setRootFile(StringRef Directory, StringRef FileName, in setRootFile() argument
306 Header.CompilationDir = Directory; in setRootFile()
/external/e2fsprogs/tests/f_inlinedata_repair/
Dexpect.112 Directory inode 20, block #0, offset 4: directory corrupted
15 Directory inode 28, block #0, offset 4: directory corrupted
18 Directory inode 32, block #0, offset 4: directory corrupted
21 Directory inode 32, block #0, offset 4: directory corrupted
/external/e2fsprogs/tests/f_salvage_dir/
Dexpect.13 Directory inode 13, block #0, offset 48: directory corrupted
6 Directory inode 12, block #1, offset 0: directory corrupted
10 Directory inode 12, block #1, offset 1016: directory corrupted
/external/ltp/testcases/kernel/controllers/
DREADME33 Directory containing the cgroup regression testcases.
37 Directory containing the cpu controller testcases. A similar directory will
42 Directory containing the memory controller testcases. A similar directory will
47 Directory containing the cpuset controller testcases. A similar directory will
56 Directory containing the cpu accounting controller testcases.
/external/swiftshader/third_party/LLVM/lib/MC/
DMCContext.cpp280 StringRef Directory = Slash.first; in GetDwarfFile() local
284 if (Directory == MCDwarfDirs[DirIndex]) in GetDwarfFile()
288 char *Buf = static_cast<char *>(Allocate(Directory.size())); in GetDwarfFile()
289 memcpy(Buf, Directory.data(), Directory.size()); in GetDwarfFile()
290 MCDwarfDirs.push_back(StringRef(Buf, Directory.size())); in GetDwarfFile()
/external/e2fsprogs/tests/f_uninit_dir/
Dexpect.12 Directory inode 12 has extent marked uninitialized at block 0. Fix? yes
4 Directory inode 14 has extent marked uninitialized at block 0. Fix? yes
7 Directory inode 14, block #0, offset 0: directory corrupted
/external/e2fsprogs/tests/f_holedir/
Dexpect.112 Directory inode 11 has an unallocated block #0. Allocate? yes
14 Directory inode 11 has an unallocated block #3. Allocate? yes
16 Directory inode 11 has an unallocated block #6. Allocate? yes
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/X86/
Ddwarfdump-line-dwo.s32 # Directory table
37 .byte 1 # Directory index
78 # Directory table
83 .byte 1 # Directory index

12345678910>>...40