/external/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...] |
/ndk/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...] |
/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 | 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 | 17 void ext2fs_inode_alloc_stats2(ext2_filsys fs, ext2_ino_t ino, 20 int group = ext2fs_group_of_ino(fs, ino); 23 if (ino > fs->super->s_inodes_count) { 30 ext2fs_mark_inode_bitmap2(fs->inode_map, ino); 32 ext2fs_unmark_inode_bitmap2(fs->inode_map, ino); 33 ext2fs_bg_free_inodes_count_set(fs, group, ext2fs_bg_free_inodes_count(fs, group) - inuse); 35 ext2fs_bg_used_dirs_count_set(fs, group, ext2fs_bg_used_dirs_count(fs, group) + inuse); 39 ext2fs_bg_flags_clear(fs, group, EXT2_BG_INODE_UNINIT) [all...] |
/external/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...] |
/ndk/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...] |
/external/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());
|
/ndk/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());
|
/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/input.output/file.streams/fstreams/fstream.cons/ |
default.pass.cpp | 23 std::fstream fs; local 26 std::wfstream fs; local
|
/external/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/ |
default.pass.cpp | 23 std::ifstream fs; local 26 std::wifstream fs; local
|
pointer.pass.cpp | 23 std::ifstream fs("test.dat"); 25 fs >> x; 29 std::ifstream fs("test.dat", std::ios_base::out); 31 fs >> x; 35 std::wifstream fs("test.dat"); 37 fs >> x; 41 std::wifstream fs("test.dat", std::ios_base::out); 43 fs >> x;
|
/external/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/ |
default.pass.cpp | 23 std::ofstream fs; local 26 std::wofstream fs; local
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/fstream.cons/ |
default.pass.cpp | 23 std::fstream fs; local 26 std::wfstream fs; local
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/ |
default.pass.cpp | 23 std::ifstream fs; local 26 std::wifstream fs; local
|
pointer.pass.cpp | 23 std::ifstream fs("test.dat"); 25 fs >> x; 29 std::ifstream fs("test.dat", std::ios_base::out); 31 fs >> x; 35 std::wifstream fs("test.dat"); 37 fs >> x; 41 std::wifstream fs("test.dat", std::ios_base::out); 43 fs >> x;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/ |
default.pass.cpp | 23 std::ofstream fs; local 26 std::wofstream fs; local
|