HomeSort by relevance Sort by last modified time
    Searched defs:fs (Results 1 - 25 of 950) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /build/soong/finder/fs/
readdir_test.go 15 package fs package
fs_darwin.go 15 package fs package
fs_linux.go 15 package fs package
  /external/libcxx/test/std/input.output/file.streams/fstreams/fstream.cons/
default.pass.cpp 23 std::fstream fs; local
26 std::wfstream fs; local
move.pass.cpp 29 std::fstream fs = move(fso); local
31 fs << 3.25;
32 fs.seekg(0);
33 fs >> x;
40 std::wfstream fs = move(fso); local
42 fs << 3.25;
43 fs.seekg(0);
44 fs >> x;
  /external/libcxx/test/std/input.output/file.streams/fstreams/fstream.members/
rdbuf.pass.cpp 23 std::fstream fs; local
24 assert(fs.rdbuf());
27 std::wfstream fs; local
28 assert(fs.rdbuf());
close.pass.cpp 25 std::fstream fs; local
26 assert(!fs.is_open());
27 fs.open(temp.c_str(), std::ios_base::out);
28 assert(fs.is_open());
29 fs.close();
30 assert(!fs.is_open());
34 std::wfstream fs; local
35 assert(!fs.is_open());
36 fs.open(temp.c_str(), std::ios_base::out);
37 assert(fs.is_open())
    [all...]
open_pointer.pass.cpp 25 std::fstream fs; local
26 assert(!fs.is_open());
27 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
29 assert(fs.is_open());
31 fs << 3.25;
32 fs.seekg(0);
33 fs >> x;
38 std::wfstream fs; local
39 assert(!fs.is_open());
40 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::ou
    [all...]
open_string.pass.cpp 25 std::fstream fs; local
26 assert(!fs.is_open());
27 fs.open(temp, std::ios_base::in | std::ios_base::out
29 assert(fs.is_open());
31 fs << 3.25;
32 fs.seekg(0);
33 fs >> x;
38 std::wfstream fs; local
39 assert(!fs.is_open());
40 fs.open(temp, std::ios_base::in | std::ios_base::ou
    [all...]
  /external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.cons/
default.pass.cpp 23 std::ifstream fs; local
26 std::wifstream fs; local
  /external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.members/
close.pass.cpp 23 std::ifstream fs; local
24 assert(!fs.is_open());
25 fs.open("test.dat");
26 assert(fs.is_open());
27 fs.close();
28 assert(!fs.is_open());
31 std::wifstream fs; local
32 assert(!fs.is_open());
33 fs.open("test.dat");
34 assert(fs.is_open())
    [all...]
  /external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.cons/
default.pass.cpp 23 std::ofstream fs; local
26 std::wofstream fs; local
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/fstream.cons/
default.pass.cpp 23 std::fstream fs; local
26 std::wfstream fs; local
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/fstream.members/
rdbuf.pass.cpp 23 std::fstream fs; local
24 assert(fs.rdbuf());
27 std::wfstream fs; local
28 assert(fs.rdbuf());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ifstream.cons/
default.pass.cpp 23 std::ifstream fs; local
26 std::wifstream fs; local
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ifstream.members/
close.pass.cpp 23 std::ifstream fs; local
24 assert(!fs.is_open());
25 fs.open("test.dat");
26 assert(fs.is_open());
27 fs.close();
28 assert(!fs.is_open());
31 std::wifstream fs; local
32 assert(!fs.is_open());
33 fs.open("test.dat");
34 assert(fs.is_open())
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ofstream.cons/
default.pass.cpp 23 std::ofstream fs; local
26 std::wofstream fs; local
  /system/extras/tests/kernel.config/
nfs_test.cpp 23 std::string fs; local
24 EXPECT_TRUE(android::base::ReadFileToString("/proc/filesystems", &fs));
25 EXPECT_TRUE(fs.find("\tnfs\n") == std::string::npos);
26 EXPECT_TRUE(fs.find("\tnfs4\n") == std::string::npos);
27 EXPECT_TRUE(fs.find("\tnfsd\n") == std::string::npos);
  /external/e2fsprogs/contrib/
add_ext4_encrypt.c 26 ext2_filsys fs; local
38 unix_io_manager, &fs);
45 if (!ext2fs_has_feature_encrypt(fs->super)) {
46 ext2fs_set_feature_encrypt(fs->super);
47 fs->super->s_encrypt_algos[0] =
49 fs->super->s_encrypt_algos[1] =
51 ext2fs_mark_super_dirty(fs);
56 retval = ext2fs_close(fs);
  /external/e2fsprogs/lib/ext2fs/
dupfs.c 25 ext2_filsys fs; local
30 retval = ext2fs_get_mem(sizeof(struct struct_ext2_filsys), &fs);
34 *fs = *src;
35 fs->device_name = 0;
36 fs->super = 0;
37 fs->orig_super = 0;
38 fs->group_desc = 0;
39 fs->inode_map = 0;
40 fs->block_map = 0;
41 fs->badblocks = 0
    [all...]
  /external/libcxx/test/libcxx/input.output/file.streams/fstreams/fstream.members/
open_wchar_pointer.pass.cpp 26 std::fstream fs; local
27 assert(!fs.is_open());
28 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
30 assert(fs.is_open());
32 fs << 3.25;
33 fs.seekg(0);
34 fs >> x;
39 std::wfstream fs; local
40 assert(!fs.is_open());
41 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::ou
    [all...]
  /external/libcxx/test/libcxx/input.output/file.streams/fstreams/ifstream.members/
open_wchar_pointer.pass.cpp 24 std::ifstream fs; local
25 assert(!fs.is_open());
27 fs >> c;
28 assert(fs.fail());
30 fs.open(L"test.dat");
31 assert(fs.is_open());
32 fs >> c;
36 std::wifstream fs; local
37 assert(!fs.is_open());
39 fs >> c
    [all...]
  /external/libcxx/test/libcxx/input.output/file.streams/fstreams/ofstream.members/
open_wchar_pointer.pass.cpp 26 std::ofstream fs; local
27 assert(!fs.is_open());
29 fs << c;
30 assert(fs.fail());
31 fs.open(temp.c_str());
32 assert(fs.is_open());
33 fs << c;
36 std::ifstream fs(temp.c_str());
38 fs >> c;
43 std::wofstream fs; local
    [all...]
  /external/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/
move_assign.pass.cpp 29 std::fstream fs; local
30 fs = move(fso);
32 fs << 3.25;
33 fs.seekg(0);
34 fs >> x;
41 std::wfstream fs; local
42 fs = move(fso);
44 fs << 3.25;
45 fs.seekg(0);
46 fs >> x
    [all...]
  /external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.assign/
move_assign.pass.cpp 26 std::ifstream fs; local
27 fs = move(fso);
29 fs >> x;
34 std::wifstream fs; local
35 fs = move(fso);
37 fs >> x;

Completed in 193 milliseconds

1 2 3 4 5 6 7 8 91011>>