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

1 2 3 4 5 6 7 8 91011>>

  /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...]
open_pointer.pass.cpp 23 std::ifstream fs; local
24 assert(!fs.is_open());
26 fs >> c;
27 assert(fs.fail());
29 fs.open("test.dat");
30 assert(fs.is_open());
31 fs >> c;
35 std::wifstream fs; local
36 assert(!fs.is_open());
38 fs >> c
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/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...]
open_pointer.pass.cpp 23 std::ifstream fs; local
24 assert(!fs.is_open());
26 fs >> c;
27 assert(fs.fail());
29 fs.open("test.dat");
30 assert(fs.is_open());
31 fs >> c;
35 std::wifstream fs; local
36 assert(!fs.is_open());
38 fs >> c
    [all...]
  /prebuilts/ndk/r13/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...]
open_pointer.pass.cpp 23 std::ifstream fs; local
24 assert(!fs.is_open());
26 fs >> c;
27 assert(fs.fail());
29 fs.open("test.dat");
30 assert(fs.is_open());
31 fs >> c;
35 std::wifstream fs; local
36 assert(!fs.is_open());
38 fs >> c
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
package-info.java 21 * the {@link de.waldheinz.fs.FileSystemFactory} for creating
22 * {@link de.waldheinz.fs.FileSystem} instances.
24 package de.waldheinz.fs;
  /external/e2fsprogs/lib/ext2fs/
freefs.c 21 void ext2fs_free(ext2_filsys fs)
23 if (!fs || (fs->magic != EXT2_ET_MAGIC_EXT2FS_FILSYS))
25 if (fs->image_io != fs->io) {
26 if (fs->image_io)
27 io_channel_close(fs->image_io);
29 if (fs->io) {
30 io_channel_close(fs->io);
32 if (fs->device_name
    [all...]
alloc_stats.c 18 void ext2fs_inode_alloc_stats2(ext2_filsys fs, ext2_ino_t ino,
21 int group = ext2fs_group_of_ino(fs, ino);
23 if (ino > fs->super->s_inodes_count) {
31 ext2fs_mark_inode_bitmap2(fs->inode_map, ino);
33 ext2fs_unmark_inode_bitmap2(fs->inode_map, ino);
34 ext2fs_bg_free_inodes_count_set(fs, group, ext2fs_bg_free_inodes_count(fs, group) - inuse);
36 ext2fs_bg_used_dirs_count_set(fs, group, ext2fs_bg_used_dirs_count(fs, group) + inuse);
40 ext2fs_bg_flags_clear(fs, group, EXT2_BG_INODE_UNINIT)
    [all...]
  /external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.members/
open_pointer.pass.cpp 25 std::ofstream fs; local
26 assert(!fs.is_open());
28 fs << c;
29 assert(fs.fail());
30 fs.open(temp.c_str());
31 assert(fs.is_open());
32 fs << c;
35 std::ifstream fs(temp.c_str());
37 fs >> c;
42 std::wofstream fs; local
    [all...]
open_string.pass.cpp 25 std::ofstream fs; local
26 assert(!fs.is_open());
28 fs << c;
29 assert(fs.fail());
30 fs.open(temp);
31 assert(fs.is_open());
32 fs << c;
35 std::ifstream fs(temp.c_str());
37 fs >> c;
42 std::wofstream fs; local
    [all...]
close.pass.cpp 25 std::ofstream fs; local
26 assert(!fs.is_open());
27 fs.open(temp.c_str());
28 assert(fs.is_open());
29 fs.close();
30 assert(!fs.is_open());
34 std::wofstream fs; local
35 assert(!fs.is_open());
36 fs.open(temp.c_str());
37 assert(fs.is_open())
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.members/
open_pointer.pass.cpp 25 std::ofstream fs; local
26 assert(!fs.is_open());
28 fs << c;
29 assert(fs.fail());
30 fs.open(temp.c_str());
31 assert(fs.is_open());
32 fs << c;
35 std::ifstream fs(temp.c_str());
37 fs >> c;
42 std::wofstream fs; local
    [all...]
open_string.pass.cpp 25 std::ofstream fs; local
26 assert(!fs.is_open());
28 fs << c;
29 assert(fs.fail());
30 fs.open(temp);
31 assert(fs.is_open());
32 fs << c;
35 std::ifstream fs(temp.c_str());
37 fs >> c;
42 std::wofstream fs; local
    [all...]
close.pass.cpp 25 std::ofstream fs; local
26 assert(!fs.is_open());
27 fs.open(temp.c_str());
28 assert(fs.is_open());
29 fs.close();
30 assert(!fs.is_open());
34 std::wofstream fs; local
35 assert(!fs.is_open());
36 fs.open(temp.c_str());
37 assert(fs.is_open())
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ofstream.members/
open_pointer.pass.cpp 25 std::ofstream fs; local
26 assert(!fs.is_open());
28 fs << c;
29 assert(fs.fail());
30 fs.open(temp.c_str());
31 assert(fs.is_open());
32 fs << c;
35 std::ifstream fs(temp.c_str());
37 fs >> c;
42 std::wofstream fs; local
    [all...]
open_string.pass.cpp 25 std::ofstream fs; local
26 assert(!fs.is_open());
28 fs << c;
29 assert(fs.fail());
30 fs.open(temp);
31 assert(fs.is_open());
32 fs << c;
35 std::ifstream fs(temp.c_str());
37 fs >> c;
42 std::wofstream fs; local
    [all...]
close.pass.cpp 25 std::ofstream fs; local
26 assert(!fs.is_open());
27 fs.open(temp.c_str());
28 assert(fs.is_open());
29 fs.close();
30 assert(!fs.is_open());
34 std::wofstream fs; local
35 assert(!fs.is_open());
36 fs.open(temp.c_str());
37 assert(fs.is_open())
    [all...]
  /external/autotest/client/site_tests/security_Minijail0/src/
test-tmpfs 15 fs=$(stat -f /tmp -c %T)
16 [ "$fs" != "tmpfs" ] && die "tmpfs"
  /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());
  /external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.cons/
pointer.pass.cpp 23 std::ifstream fs("test.dat");
25 fs >> x;
32 std::wifstream fs("test.dat");
34 fs >> x;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/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/r13/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());
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
package-info.java 22 package de.waldheinz.fs.fat;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
package-info.java 23 package de.waldheinz.fs.util;

Completed in 322 milliseconds

1 2 3 4 5 6 7 8 91011>>