Lines Matching defs:pos
284 next = ctx->pos;
289 ctx->pos = next;
464 loff_t pos, unsigned len,
467 pgoff_t index = pos >> PAGE_SHIFT;
476 loff_t pos, unsigned len, unsigned copied,
481 unsigned from = pos & (PAGE_SIZE - 1);
485 err = write_file(FILE_HOSTFS_I(file)->fd, &pos, buffer + from, copied);
492 * If err > 0, write_file has added err to pos, so we are comparing
495 if (err > 0 && (pos > inode->i_size))
496 inode->i_size = pos;