/ndk/sources/cxx-stl/llvm-libc++/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;
|
/ndk/sources/cxx-stl/llvm-libc++/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); 31 assert(fs.is_open()); 32 fs << c; 35 std::ifstream fs(temp); 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(std::string(temp)); 31 assert(fs.is_open()); 32 fs << c; 35 std::ifstream fs(temp); 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); 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); 37 assert(fs.is_open()) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/fstream.members/ |
close.pass.cpp | 25 std::fstream fs; local 26 assert(!fs.is_open()); 27 fs.open(temp, 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, std::ios_base::out); 37 assert(fs.is_open()) [all...] |
rdbuf.pass.cpp | 23 std::fstream fs; local 24 assert(fs.rdbuf()); 27 std::wfstream fs; local 28 assert(fs.rdbuf());
|
open_pointer.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...] |
open_string.pass.cpp | 25 std::fstream fs; local 26 assert(!fs.is_open()); 27 fs.open(std::string(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(std::string(temp), std::ios_base::in | std::ios_base::ou [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...] |
dupfs.c | 24 ext2_filsys fs; local 29 retval = ext2fs_get_mem(sizeof(struct struct_ext2_filsys), &fs); 33 *fs = *src; 34 fs->device_name = 0; 35 fs->super = 0; 36 fs->orig_super = 0; 37 fs->group_desc = 0; 38 fs->inode_map = 0; 39 fs->block_map = 0; 40 fs->badblocks = 0 [all...] |
openfs.c | 32 blk_t ext2fs_descriptor_block_loc(ext2_filsys fs, blk_t group_block, dgrp_t i) 38 if (!(fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) || 39 (i < fs->super->s_first_meta_bg)) 42 bg = EXT2_DESC_PER_BLOCK(fs->super) * i; 43 if (ext2fs_bg_has_super(fs, bg)) 45 ret_blk = ext2fs_group_first_block(fs, bg) + has_super; 54 if (group_block != fs->super->s_first_data_block && 55 ((ret_blk + fs->super->s_blocks_per_group) < 56 fs->super->s_blocks_count)) 57 ret_blk += fs->super->s_blocks_per_group 85 ext2_filsys fs; local [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_bitmap(fs->inode_map, ino); 32 ext2fs_unmark_inode_bitmap(fs->inode_map, ino); 33 fs->group_desc[group].bg_free_inodes_count -= inuse; 35 fs->group_desc[group].bg_used_dirs_count += inuse; 39 fs->group_desc[group].bg_flags &= ~EXT2_BG_INODE_UNINIT; 40 if (EXT2_HAS_RO_COMPAT_FEATURE(fs->super, 42 ext2_ino_t first_unused_inode = fs->super->s_inodes_per_group [all...] |
/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;
|
/frameworks/compile/mclinker/lib/Support/ |
FileSystem.cpp | 13 using namespace mcld::sys::fs;
|
/ndk/sources/cxx-stl/llvm-libc++/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++/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++/test/input.output/file.streams/fstreams/ofstream.cons/ |
default.pass.cpp | 23 std::ofstream fs; local 26 std::wofstream fs; local
|
pointer.pass.cpp | 25 std::ofstream fs(temp); 26 fs << 3.25; 29 std::ifstream fs(temp); 31 fs >> x; 36 std::wofstream fs(temp); 37 fs << 3.25; 40 std::wifstream fs(temp); 42 fs >> x;
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/ifstream.assign/ |
move_assign.pass.cpp | 25 std::ifstream fs; local 26 fs = move(fso); 28 fs >> x; 33 std::wifstream fs; local 34 fs = move(fso); 36 fs >> x;
|
/external/grub/stage2/ |
fs.h | 42 * @(#)fs.h 7.7 (Berkeley) 5/9/89 57 * For file system fs, the offsets of the various blocks of interest 59 * [fs->fs_sblkno] Super-block 60 * [fs->fs_cblkno] Cylinder group block 61 * [fs->fs_iblkno] Inode blocks 62 * [fs->fs_dblkno] Data blocks 63 * The beginning of cylinder group cg in fs, is given by 64 * the ``cgbase(fs, cg)'' macro. 89 * information in the inode, using the ``blksize(fs, ip, lbn)'' macro. 146 struct fs struct [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/ofstream.assign/ |
move_assign.pass.cpp | 27 std::ofstream fs; local 28 fs = move(fso); 29 fs << 3.25; 32 std::ifstream fs(temp); 34 fs >> x; 40 std::wofstream fs; local 41 fs = move(fso); 42 fs << 3.25; 45 std::wifstream fs(temp); 47 fs >> x [all...] |