Home | History | Annotate | Download | only in ext2fs

Lines Matching refs:flags

31 	int		flags;
43 int i, flags, limit, offset;
47 if (!(ctx->flags & BLOCK_FLAG_DEPTH_TRAVERSE) &&
48 !(ctx->flags & BLOCK_FLAG_DATA_ONLY))
71 if (ctx->flags & BLOCK_FLAG_APPEND) {
73 flags = (*ctx->func)(ctx->fs, block_nr, ctx->bcount,
76 changed |= flags;
77 if (flags & BLOCK_ABORT) {
87 flags = (*ctx->func)(ctx->fs, block_nr, ctx->bcount,
90 changed |= flags;
91 if (flags & BLOCK_ABORT) {
104 if ((ctx->flags & BLOCK_FLAG_DEPTH_TRAVERSE) &&
105 !(ctx->flags & BLOCK_FLAG_DATA_ONLY) &&
117 int i, flags, limit, offset;
121 if (!(ctx->flags & (BLOCK_FLAG_DEPTH_TRAVERSE |
145 if (ctx->flags & BLOCK_FLAG_APPEND) {
147 flags = block_iterate_ind(block_nr,
150 changed |= flags;
151 if (flags & (BLOCK_ABORT | BLOCK_ERROR)) {
152 ret |= flags & (BLOCK_ABORT | BLOCK_ERROR);
163 flags = block_iterate_ind(block_nr,
166 changed |= flags;
167 if (flags & (BLOCK_ABORT | BLOCK_ERROR)) {
168 ret |= flags & (BLOCK_ABORT | BLOCK_ERROR);
180 if ((ctx->flags & BLOCK_FLAG_DEPTH_TRAVERSE) &&
181 !(ctx->flags & BLOCK_FLAG_DATA_ONLY) &&
193 int i, flags, limit, offset;
197 if (!(ctx->flags & (BLOCK_FLAG_DEPTH_TRAVERSE |
221 if (ctx->flags & BLOCK_FLAG_APPEND) {
223 flags = block_iterate_dind(block_nr,
226 changed |= flags;
227 if (flags & (BLOCK_ABORT | BLOCK_ERROR)) {
228 ret |= flags & (BLOCK_ABORT | BLOCK_ERROR);
239 flags = block_iterate_dind(block_nr,
242 changed |= flags;
243 if (flags & (BLOCK_ABORT | BLOCK_ERROR)) {
244 ret |= flags & (BLOCK_ABORT | BLOCK_ERROR);
256 if ((ctx->flags & BLOCK_FLAG_DEPTH_TRAVERSE) &&
257 !(ctx->flags & BLOCK_FLAG_DATA_ONLY) &&
268 int flags,
292 if (flags & BLOCK_FLAG_NO_LARGE) {
311 ctx.flags = flags;
327 !(flags & BLOCK_FLAG_DATA_ONLY)) {
346 if (blocks[i] || (flags & BLOCK_FLAG_APPEND)) {
353 if (*(blocks + EXT2_IND_BLOCK) || (flags & BLOCK_FLAG_APPEND)) {
360 if (*(blocks + EXT2_DIND_BLOCK) || (flags & BLOCK_FLAG_APPEND)) {
367 if (*(blocks + EXT2_TIND_BLOCK) || (flags & BLOCK_FLAG_APPEND)) {
421 int flags,
434 return ext2fs_block_iterate2(fs, ino, BLOCK_FLAG_NO_LARGE | flags,