HomeSort by relevance Sort by last modified time
    Searched refs:fs (Results 76 - 100 of 284) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/e2fsprogs/e2fsck/
pass2.c 63 static int check_dir_block(ext2_filsys fs,
69 static int update_dir_block(ext2_filsys fs,
89 struct ext2_super_block *sb = ctx->fs->super;
91 ext2_filsys fs = ctx->fs; local
122 cd.pctx.errcode = ext2fs_create_icount2(fs,
131 buf = (char *) e2fsck_allocate_memory(ctx, 2*fs->blocksize,
144 cd.max = ext2fs_dblist_count(fs->dblist);
149 if (fs->super->s_feature_compat & EXT2_FEATURE_COMPAT_DIR_INDEX)
150 ext2fs_dblist_sort(fs->dblist, special_dir_block_cmp)
1107 ext2_filsys fs = ctx->fs; local
1186 ext2_filsys fs = ctx->fs; local
1330 ext2_filsys fs = ctx->fs; local
    [all...]
rehash.c 80 static int fill_dir_block(ext2_filsys fs,
97 offset = blockcnt * fs->blocksize;
98 if (offset + fs->blocksize > fd->inode->i_size) {
104 memset(dir, 0, fs->blocksize);
106 dirent->rec_len = fs->blocksize;
108 fd->err = ext2fs_read_dir_block(fs, *block_nr, dir);
112 hash_alg = fs->super->s_def_hash_version;
114 (fs->super->s_flags & EXT2_FLAGS_UNSIGNED_HASH))
118 while (dir_offset < fs->blocksize) {
120 if (((dir_offset + dirent->rec_len) > fs->blocksize) |
679 ext2_filsys fs = ctx->fs; local
    [all...]
pass1b.c 85 static int process_pass1b_block(ext2_filsys fs, blk_t *blocknr,
209 ext2_filsys fs = ctx->fs; local
214 pctx.errcode = ext2fs_allocate_inode_bitmap(fs,
252 ext2_filsys fs = ctx->fs; local
263 pctx.errcode = ext2fs_open_inode_scan(fs, ctx->inode_buffer_blocks,
296 pctx.errcode = ext2fs_block_iterate2(fs, ino,
299 process_pass1b_block(fs, &inode.i_file_acl,
303 if (ino >= EXT2_FIRST_INODE(fs->super) |
392 ext2_filsys fs = ctx->fs; local
414 ext2_filsys fs = ctx->fs; local
579 ext2_filsys fs = ctx->fs; local
712 ext2_filsys fs = ctx->fs; local
804 ext2_filsys fs = ctx->fs; local
    [all...]
message.c 60 * @C conflicts with some other fs block
114 N_("Cconflicts with some other fs @b"),
191 static void print_pathname(ext2_filsys fs, ext2_ino_t dir, ext2_ino_t ino)
201 retval = ext2fs_get_pathname(fs, dir, ino, &path);
380 static _INLINE_ void expand_percent_expression(ext2_filsys fs, char ch,
426 print_pathname(fs, ctx->ino, 0);
429 print_pathname(fs, ctx->ino2,
433 print_pathname(fs, ctx->dir, 0);
436 print_pathname(fs, ctx->dir, ctx->ino);
439 printf("%u", get_backup_sb(NULL, fs, NULL, NULL))
462 ext2_filsys fs = ctx->fs; local
    [all...]
e2fsck.c 76 if (ctx->fs && ctx->fs->io != ctx->journal_io)
80 if (ctx->fs && ctx->fs->dblist) {
81 ext2fs_free_dblist(ctx->fs->dblist);
82 ctx->fs->dblist = 0;
  /system/core/libpixelflinger/codeflinger/
blending.cpp 72 int fs = component==GGLFormat::ALPHA ? mBlendSrcA : mBlendSrc; local
74 if (fs==GGL_SRC_ALPHA_SATURATE && component==GGLFormat::ALPHA)
75 fs = GGL_ONE;
76 const int blending = blending_codes(fs, fd);
101 (fs==GGL_DST_COLOR && fd==GGL_ONE_MINUS_DST_COLOR) ||
102 (fs==GGL_SRC_COLOR && fd==GGL_ONE_MINUS_SRC_COLOR) ||
103 (fs==GGL_DST_ALPHA && fd==GGL_ONE_MINUS_DST_ALPHA) ||
104 (fs==GGL_SRC_ALPHA && fd==GGL_ONE_MINUS_SRC_ALPHA);
107 (fs==GGL_ONE_MINUS_DST_COLOR && fd==GGL_DST_COLOR) ||
108 (fs==GGL_ONE_MINUS_SRC_COLOR && fd==GGL_SRC_COLOR) ||
    [all...]
  /external/e2fsprogs/debugfs/
htree.c 29 static void htree_dump_leaf_node(ext2_filsys fs, ext2_ino_t ino,
44 errcode = ext2fs_bmap(fs, ino, inode, buf, 0, blk, &pblk);
59 (fs->super->s_flags & EXT2_FLAGS_UNSIGNED_HASH))
62 while (offset < fs->blocksize) {
64 if (((offset + dirent->rec_len) > fs->blocksize) ||
76 thislen, fs->super->s_hash_seed,
96 static void htree_dump_int_block(ext2_filsys fs, ext2_ino_t ino,
102 static void htree_dump_int_node(ext2_filsys fs, ext2_ino_t ino,
135 htree_dump_int_block(fs, ino, inode, rootnode,
138 htree_dump_leaf_node(fs, ino, inode, rootnode
    [all...]
  /build/tools/atree/
Android.mk 11 fs.cpp
  /external/e2fsprogs/lib/ext2fs/
ext2fsP.h 37 ext2_filsys fs; member in struct:ext2_struct_dblist
81 extern int ext2fs_process_dir_block(ext2_filsys fs,
unlink.c 70 errcode_t ext2fs_unlink(ext2_filsys fs, ext2_ino_t dir,
77 EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
82 if (!(fs->flags & EXT2_FLAG_RW))
92 retval = ext2fs_dir_iterate(fs, dir, DIRENT_FLAG_INCLUDE_EMPTY,
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 11 * ext2fs_get_pathname(fs, dir, ino, name)
68 static errcode_t ext2fs_get_pathname_int(ext2_filsys fs, ext2_ino_t dir,
97 retval = ext2fs_dir_iterate(fs, dir, 0, buf, get_pathname_proc, &gp);
105 retval = ext2fs_get_pathname_int(fs, gp.parent, dir, maxdepth-1,
140 errcode_t ext2fs_get_pathname(ext2_filsys fs, ext2_ino_t dir, ext2_ino_t ino,
146 EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
148 retval = ext2fs_get_mem(fs->blocksize, &buf);
153 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...]
  /bionic/libc/kernel/common/linux/
highmem.h 15 #include <linux/fs.h>
msm_hw3d.h 15 #include <linux/fs.h>
pagemap.h 16 #include <linux/fs.h>
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
highmem.h 15 #include <linux/fs.h>
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
highmem.h 15 #include <linux/fs.h>
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
highmem.h 15 #include <linux/fs.h>
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
highmem.h 15 #include <linux/fs.h>
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
highmem.h 15 #include <linux/fs.h>
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
highmem.h 15 #include <linux/fs.h>
  /external/webkit/WebCore/platform/graphics/gtk/
FontCacheGtk.cpp 45 FcFontSet* fs = prim->m_fallbacks; local
47 for (int i = 0; i < fs->nfont; i++) {
48 FcPattern* fin = FcFontRenderPrepare(NULL, prim->m_pattern, fs->fonts[i]);
  /external/openssl/crypto/err/
err_prn.c 100 const char *ls,*fs,*rs; local
108 fs=ERR_func_error_string(e);
113 if (fs == NULL)
119 fs?fs:fsbuf, rs?rs:rsbuf);
  /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();

Completed in 2799 milliseconds

1 2 34 5 6 7 8 91011>>