HomeSort by relevance Sort by last modified time
    Searched refs:file3 (Results 1 - 25 of 27) sorted by null

1 2

  /external/ltp/testcases/commands/ade/ldd/datafiles/
lddfile3.c 2 void file3(void) function
main.c 5 void file3(void);
13 file3();
  /external/toybox/tests/
xzcat.test 19 echo "Hi, Good morning !! I am a xzcat tester" > file3
22 tar -cJf file3.xz file3
25 $xzcatExe file1.xz file2.xz file3.xz > xzcatOut
26 testing "- decompresses multiple files" "xzcat file1.xz file2.xz file3.xz > Tempfile && echo "yes" ; diff Tempfile xzcatOut && echo "yes"; rm -rf file* xzcatOut Tempfile " "yes\nyes\n" "" ""
zcat.test 19 echo "Hi, Good morning !! I am a bzcat tester" > file3
22 tar -czf file3.gz file3
25 $zcatExe file1.gz file2.gz file3.gz > zcatOut
26 testing "- decompresses multiple files" "zcat file1.gz file2.gz file3.gz > Tempfile && echo "yes" ; diff Tempfile zcatOut && echo "yes"; rm -rf file* zcatOut Tempfile " "yes\nyes\n" "" ""
rm.test 34 "rm -rf file1.txt file2.txt file3.txt dir1 dir2 dir3 2>/dev/null &&
41 touch dir1/file1.txt dir1/dir2/file2.txt dir1/dir2/dir3/file3.txt
mv.test 35 touch file1 file2 dir1/file3
41 [ -f dir2/dir1/file3 ] && readlink dir2/link1" \
tar.test 36 touch dir/dir1/file1 dir/dir1/file2 dir/dir1/file3 dir/dir1/file4
37 testing "-t option" "tar -czf dir.tar.gz dir/; rm -rf dir; tar -tf dir.tar.gz | sort; rm -rf dir.tar.gz" "dir/\ndir/dir1/\ndir/dir1/file1\ndir/dir1/file2\ndir/dir1/file3\ndir/dir1/file4\n" "" ""
  /external/fio/examples/
e4defrag2.fio 56 donorname=file3.def
57 filename=file3
68 filename=file3
82 filename=file3
  /external/ltp/testcases/kernel/syscalls/open/
open07.c 192 char file1[100], file2[100], file3[100]; local
196 sprintf(file3, "open03.7.%d", getpid());
204 if (symlink(file2, file3) < 0)
207 strcpy(TC[2].filename, file3);
212 char file1[100], file2[100], file3[100]; local
216 sprintf(file3, "open03.10.%d", getpid());
223 if (symlink(file2, file3) < 0)
226 strcpy(TC[3].filename, file3);
  /frameworks/base/core/tests/coretests/src/android/os/storage/
StorageManagerIntegrationTest.java 86 File file3 = null; local
98 file3 = createObbFile(OBB_FILE_3, R.raw.obb_file3);
99 String filePath3 = file3.getAbsolutePath();
113 if (file3 != null) {
114 file3.delete();
148 File file3 = null; local
151 file3 = createObbFile(OBB_FILE_3_ENCRYPTED, R.raw.obb_enc_file100_orig3);
152 String filePath3 = file3.getAbsolutePath();
164 if (file3 != null) {
165 file3.delete()
    [all...]
  /external/ltp/testcases/commands/ade/ar/
ar01 51 LIST="file1.in file2.in file3.in file4.in file5.in file6.in file7.in file8.in file9.in file10.in"
123 ar -cr $TCtmp/lib.a file1.in file3.in
143 ar -cr $TCtmp/lib.a file1.in file2.in file3.in file4.in
165 ar -cr $TCtmp/lib.a file1.in file3.in
168 ar -rb file3.in $TCtmp/lib.a file2.in
187 ar -cr $TCtmp/lib.a file1.in file3.in file2.in
190 ar -mb file3.in $TCtmp/lib.a file2.in
246 ar -cr $TCtmp/lib.a file1.in file2.in file3.in
248 echo "file3.in" > $TCtmp/lib.a.exp
269 ar -cr $TCtmp/lib.a file1.in file2.in file3.i
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.rename/
rename.pass.cpp 104 const path file3 = env.create_file("file3", 100); local
107 rename(file2, file3, ec);
110 TEST_CHECK(is_regular_file(file3));
111 TEST_CHECK(file_size(file3) == 42);
  /build/kati/testcase/
find_command.mk 25 touch testdir/dir1/file3
29 touch testdir/dir2/file3
112 $(call run_find, build/tools/findleaves.py testdir file3)
113 $(call run_find, build/tools/findleaves.py --prune=dir1 testdir file3)
114 $(call run_find, build/tools/findleaves.py --prune=dir1 --prune=dir2 testdir file3)
120 $(call run_find, build/tools/findleaves.py --prune=dir1 --dir=testdir file3 link3)
  /cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/result/
ChecksumReporterTest.java 176 File file3 = new File(mRoot, "file3.txt"); local
177 try (FileWriter fileWriter = new FileWriter(file3, false)) {
181 mReporter.containsFile(file3, mRoot + "/"));
  /external/ltp/testcases/commands/ade/file/
file_test.sh 402 cat > $LTPTMP/file3 <<EOF
406 tar -cf $LTPTMP/files.tar $LTPTMP/file1 $LTPTMP/file2 $LTPTMP/file3 > /dev/null 2>&1
436 tar cf $LTPTMP/files.tar $LTPTMP/file1 $LTPTMP/file2 $LTPTMP/file3 \
458 rm -f $LTPTMP/files.tar.gz $LTPTMP/file1 $LTPTMP/file2 $LTPTMP/file3
  /cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
MyDocumentsProvider.java 179 Doc file3 = buildDoc("doc:file3", "FILE3", "mime3/file3", null); local
180 file3.contents = "filethree".getBytes();
181 file3.flags = Document.FLAG_SUPPORTS_WRITE;
182 dir1.children.add(file3);
  /external/google-breakpad/src/common/
module_unittest.cc 164 Module::File *file3 = m.FindFile("filename3"); local
176 file3, 28113549 };
382 Module::File *file3 = m.FindFile(string("foo")); local
385 EXPECT_EQ(file1, file3);
  /prebuilts/go/darwin-x86/src/go/build/
build_test.go 145 const file3 = "// Copyright The Go Authors.\n\n" +
171 if !ctx.shouldBuild([]byte(file3), m, nil) {
172 t.Errorf("shouldBuild(file3) = false, want true")
175 t.Errorf("shouldBuild(file3) tags = %v, want %v", m, want3)
  /prebuilts/go/linux-x86/src/go/build/
build_test.go 145 const file3 = "// Copyright The Go Authors.\n\n" +
171 if !ctx.shouldBuild([]byte(file3), m, nil) {
172 t.Errorf("shouldBuild(file3) = false, want true")
175 t.Errorf("shouldBuild(file3) tags = %v, want %v", m, want3)
  /libcore/luni/src/test/java/libcore/java/nio/file/
Files2Test.java 588 // ? ??? dir2 ? dir3-file1 - file3
631 // ? ??? file3
644 Path file3 = filesSetup.getPathInTestDir("root/dir1/file3"); local
650 Files.createFile(file3);
666 expectedDirMap.put(file3.getFileName(), VisitOption.VISIT_FILE);
737 // ? ??? file3
750 Path file3 = filesSetup.getPathInTestDir("root/dir1/file3"); local
757 Files.createFile(file3);
845 Path file3 = Paths.get(filesSetup.getTestDir(), "root\/dir1\/file3"); local
1361 Path file3 = Paths.get(filesSetup.getTestDir(), "root\/dir1\/file3"); local
1454 Path file3 = Paths.get(filesSetup.getTestDir(), "root\/dir1\/file3"); local
    [all...]
  /libcore/tzdata/shared2/src/test/libcore/tzdata/shared2/
FileUtilsTest.java 59 File file3 = createRegularFile(subDir, "subFile1"); local
69 File[] filesToDelete = { dir, file1, file2, symLink1, subDir, file3, file4, symLink2,
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
FileTest.java 224 File file3 = new File("\\", "\\dir1\\file1"); local
225 assertEquals("wrong result 3", ref1.getPath(), file3.getPath());
248 File file3 = new File(root, "\\dir1\\file1"); local
249 assertEquals("wrong result 3", ref1.getPath(), file3.getPath());
    [all...]
  /external/ltp/testscripts/
ltp-aiodio.sh 292 dd if=$file1 of=$TMP/aiodio/file3 bs=1024 conv=block,sync
  /prebuilts/go/darwin-x86/src/os/
os_windows_test.go 574 want := []string{"file1", "file2", "file3", "gopher.txt"}
  /prebuilts/go/linux-x86/src/os/
os_windows_test.go 574 want := []string{"file1", "file2", "file3", "gopher.txt"}

Completed in 3127 milliseconds

1 2