HomeSort by relevance Sort by last modified time
    Searched refs:fs (Results 1 - 25 of 2590) 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/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...]
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/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/e2fsprogs/lib/ext2fs/
freefs.c 22 void ext2fs_free(ext2_filsys fs)
24 if (!fs || (fs->magic != EXT2_ET_MAGIC_EXT2FS_FILSYS))
26 if (fs->image_io != fs->io) {
27 if (fs->image_io)
28 io_channel_close(fs->image_io);
30 if (fs->io) {
31 io_channel_close(fs->io);
33 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...]
openfs.c 36 blk64_t ext2fs_descriptor_block_loc2(ext2_filsys fs, blk64_t group_block,
44 * On a bigalloc FS with 1K blocks, block 0 is reserved for non-ext4
47 if (i == 0 && fs->blocksize == 1024 && EXT2FS_CLUSTER_RATIO(fs) > 1)
50 if (!ext2fs_has_feature_meta_bg(fs->super) ||
51 (i < fs->super->s_first_meta_bg))
54 bg = EXT2_DESC_PER_BLOCK(fs->super) * i;
55 if (ext2fs_bg_has_super(fs, bg))
57 ret_blk = ext2fs_group_first_block2(fs, bg);
66 if (group_block != fs->super->s_first_data_block &
122 ext2_filsys fs; local
    [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/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/r16/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;
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/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/
pointer.pass.cpp 23 std::ifstream fs("test.dat");
25 fs >> x;
32 std::wifstream fs("test.dat");
34 fs >> x;
  /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;
  /external/libcxx/test/std/input.output/file.streams/fstreams/fstream.cons/
default.pass.cpp 23 std::fstream fs; local
26 std::wfstream fs; local

Completed in 399 milliseconds

1 2 3 4 5 6 7 8 91011>>