/prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/ |
highmem.h | 15 #include <linux/fs.h>
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/ |
highmem.h | 15 #include <linux/fs.h>
|
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/ |
highmem.h | 15 #include <linux/fs.h>
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/ |
AbstractFileSystem.java | 20 package de.waldheinz.fs;
|
FsDirectory.java | 20 package de.waldheinz.fs;
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
FatFile.java | 19 package de.waldheinz.fs.fat; 21 import de.waldheinz.fs.AbstractFsObject; 23 import de.waldheinz.fs.FsFile; 24 import de.waldheinz.fs.ReadOnlyException;
|
/external/e2fsprogs/e2fsck/ |
util.c | 50 if (ctx->fs && ctx->fs->io) { 51 if (ctx->fs->io->magic == EXT2_ET_MAGIC_IO_CHANNEL) 52 io_channel_flush(ctx->fs->io); 215 ext2_filsys fs = ctx->fs; local 227 retval = ext2fs_read_bitmaps(fs); 239 ext2_filsys fs = ctx->fs; local 244 retval = ext2fs_write_bitmaps(fs); 256 ext2_filsys fs = ctx->fs; local [all...] |
/external/clang/test/Analysis/ |
simple-stream-checks.c | 88 FileStruct fs; local 89 fs.p = fopen("myfile.txt", "w"); 90 fakeSystemHeaderCall(&fs);
|
/external/e2fsprogs/lib/ext2fs/ |
lookup.c | 49 errcode_t ext2fs_lookup(ext2_filsys fs, ext2_ino_t dir, const char *name, 55 EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS); 62 retval = ext2fs_dir_iterate(fs, dir, 0, buf, lookup_proc, &ls);
|
get_pathname.c | 14 * ext2fs_get_pathname(fs, dir, ino, name) 71 static errcode_t ext2fs_get_pathname_int(ext2_filsys fs, ext2_ino_t dir, 100 retval = ext2fs_dir_iterate(fs, dir, 0, buf, get_pathname_proc, &gp); 108 retval = ext2fs_get_pathname_int(fs, gp.parent, dir, maxdepth-1, 143 errcode_t ext2fs_get_pathname(ext2_filsys fs, ext2_ino_t dir, ext2_ino_t ino, 149 EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS); 151 retval = ext2fs_get_mem(fs->blocksize, &buf); 156 retval = ext2fs_get_pathname_int(fs, dir, ino, 32, buf, name);
|
tst_badblocks.c | 206 static void invalid_proc(ext2_filsys fs, blk_t blk) 221 ext2_filsys fs; local 224 fs = malloc(sizeof(struct struct_ext2_filsys)); 225 memset(fs, 0, sizeof(struct struct_ext2_filsys)); 226 fs->magic = EXT2_ET_MAGIC_EXT2FS_FILSYS; 227 fs->super = malloc(SUPERBLOCK_SIZE); 228 memset(fs->super, 0, SUPERBLOCK_SIZE); 229 fs->super->s_first_data_block = 1; 230 fs->super->s_blocks_count = 100; 247 retval = ext2fs_read_bb_FILE(fs, f, &new_bb, invalid_proc) [all...] |
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
config_standalone.py | 61 fs = filesystem_mock.MockFileSystem({'foo/Configuration': argv[2]}) 64 fs = filesystem.FileSystem() 66 c = config.Config(e, fs)
|
/external/v8/src/mips/ |
assembler-mips.h | 797 void swc1(FPURegister fs, const MemOperand& dst); 798 void sdc1(FPURegister fs, const MemOperand& dst); 800 void mtc1(Register rt, FPURegister fs); 801 void mfc1(Register rt, FPURegister fs); 803 void ctc1(Register rt, FPUControlRegister fs); 804 void cfc1(Register rt, FPUControlRegister fs); 807 void add_d(FPURegister fd, FPURegister fs, FPURegister ft); 808 void sub_d(FPURegister fd, FPURegister fs, FPURegister ft); 809 void mul_d(FPURegister fd, FPURegister fs, FPURegister ft); 810 void div_d(FPURegister fd, FPURegister fs, FPURegister ft) [all...] |
/frameworks/compile/mclinker/lib/Support/ |
Path.cpp | 20 using namespace mcld::sys::fs; 180 bool mcld::sys::fs::operator==(const Path& pLHS,const Path& pRHS) 185 bool mcld::sys::fs::operator!=(const Path& pLHS,const Path& pRHS) 190 Path mcld::sys::fs::operator+(const Path& pLHS, const Path& pRHS) 192 mcld::sys::fs::Path result = pLHS; 197 bool mcld::sys::fs::is_separator(char value) 206 bool mcld::sys::fs::exists(const Path &pPath) 213 bool mcld::sys::fs::is_directory(const Path &pPath) 220 std::ostream &mcld::sys::fs::operator<<(std::ostream& pOS, 226 std::istream &mcld::sys::fs::operator>>(std::istream& pOS [all...] |
/external/e2fsprogs/debugfs/ |
htree.c | 31 static void htree_dump_leaf_node(ext2_filsys fs, ext2_ino_t ino, 47 errcode = ext2fs_bmap(fs, ino, inode, buf, 0, blk, &pblk); 65 (fs->super->s_flags & EXT2_FLAGS_UNSIGNED_HASH)) 68 while (offset < fs->blocksize) { 70 errcode = ext2fs_get_rec_len(fs, dirent, &rec_len); 77 if (((offset + rec_len) > fs->blocksize) || 89 thislen, fs->super->s_hash_seed, 109 static void htree_dump_int_block(ext2_filsys fs, ext2_ino_t ino, 115 static void htree_dump_int_node(ext2_filsys fs, ext2_ino_t ino, 148 htree_dump_int_block(fs, ino, inode, rootnode [all...] |
/external/opencv/ml/src/ |
mlrtrees.cpp | 161 void CvForestTree::read( CvFileStorage* fs, CvFileNode* fnode, CvRTrees* _forest, CvDTreeTrainData* _data ) 163 CvDTree::read( fs, fnode, _data ); 578 void CvRTrees::write( CvFileStorage* fs, const char* name ) 589 cvStartWriteStruct( fs, name, CV_NODE_MAP, CV_TYPE_NAME_ML_RTREES ); 591 cvWriteInt( fs, "nclasses", nclasses ); 592 cvWriteInt( fs, "nsamples", nsamples ); 593 cvWriteInt( fs, "nactive_vars", (int)cvSum(active_var_mask).val[0] ); 594 cvWriteReal( fs, "oob_error", oob_error ); 597 cvWrite( fs, "var_importance", var_importance ); 599 cvWriteInt( fs, "ntrees", ntrees ) [all...] |
mlann_mlp.cpp | [all...] |
/external/webkit/Source/JavaScriptCore/assembler/ |
MIPSAssembler.h | 515 void addd(FPRegisterID fd, FPRegisterID fs, FPRegisterID ft) 517 emitInst(0x46200000 | (fd << OP_SH_FD) | (fs << OP_SH_FS) 521 void subd(FPRegisterID fd, FPRegisterID fs, FPRegisterID ft) 523 emitInst(0x46200001 | (fd << OP_SH_FD) | (fs << OP_SH_FS) 527 void muld(FPRegisterID fd, FPRegisterID fs, FPRegisterID ft) 529 emitInst(0x46200002 | (fd << OP_SH_FD) | (fs << OP_SH_FS) 533 void divd(FPRegisterID fd, FPRegisterID fs, FPRegisterID ft) 535 emitInst(0x46200003 | (fd << OP_SH_FD) | (fs << OP_SH_FS) 564 void mtc1(RegisterID rt, FPRegisterID fs) 566 emitInst(0x44800000 | (fs << OP_SH_FS) | (rt << OP_SH_RT)) [all...] |
/external/llvm/lib/Support/ |
APFloat.cpp | [all...] |
/external/valgrind/main/perf/ |
vg_perf.in | 128 my @fs; 144 push(@fs, $arg); 153 (0 != @fs) or die "No test files or directories specified\n"; 155 return @fs; 269 printf("%4.2fs", $tNative); 291 printf("%4.1fs (%4.1fx,", $tTool, $tTool/$tNative); 339 my @fs = glob "*"; 340 my $found_tests = (0 != (grep { $_ =~ /\.vgperf$/ } @fs)); 345 foreach my $f (@fs) { 375 my @fs = process_command_line() [all...] |
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
filesystem_mock.py | 97 def filter_all(fs, dirpath, basename): 200 def __init__(self, fs, **kwargs): 202 self._filesystem = fs 203 self._directory_path = fs._mktemp(**kwargs) 204 fs.maybe_make_directory(self._directory_path) 219 return TemporaryDirectory(fs=self, **kwargs) 292 def __init__(self, fs, path, append=False, encoding=None): 293 self.fs = fs 296 if path not in self.fs.files or not append [all...] |
/frameworks/base/core/tests/coretests/src/android/app/ |
DownloadManagerStressTest.java | 155 StatFs fs = new StatFs(CACHE_DIR); local 156 int blockSize = fs.getBlockSize(); 157 int availableBlocks = fs.getAvailableBlocks(); 175 while (fs.getAvailableBlocks() >= remainderSizeBlocks) { 177 fs.restat(CACHE_DIR); 190 long spaceAvailable = fs.getAvailableBlocks() * blockSize;
|
/frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/ |
LowStorageTest.java | 83 FileOutputStream fs = local 87 fs.write(buf); 88 fs.flush(); 93 fs.write(buf); 94 fs.flush(); 95 fs.close();
|
/frameworks/compile/mclinker/include/mcld/Support/ |
FileHandle.h | 80 bool open(const sys::fs::Path& pPath, 104 const sys::fs::Path& path() const 135 sys::fs::Path m_Path;
|
HandleToArea.h | 83 bool erase(const sys::fs::Path& pPath); 85 Result findFirst(const sys::fs::Path& pPath); 87 ConstResult findFirst(const sys::fs::Path& pPath) const;
|