Lines Matching refs:_pos
88 static struct fscache_object *fscache_objlist_lookup(loff_t *_pos) in fscache_objlist_lookup() argument
94 if (*_pos >= (unsigned long) ERR_PTR(-ENOENT)) in fscache_objlist_lookup()
96 pos = *_pos; in fscache_objlist_lookup()
101 return (struct fscache_object *)(long)++(*_pos); in fscache_objlist_lookup()
123 *_pos = (unsigned long) ERR_PTR(-ENOENT); in fscache_objlist_lookup()
125 *_pos = (unsigned long) minobj; in fscache_objlist_lookup()
132 static void *fscache_objlist_start(struct seq_file *m, loff_t *_pos) in fscache_objlist_start() argument
136 return fscache_objlist_lookup(_pos); in fscache_objlist_start()
142 static void *fscache_objlist_next(struct seq_file *m, void *v, loff_t *_pos) in fscache_objlist_next() argument
144 (*_pos)++; in fscache_objlist_next()
145 return fscache_objlist_lookup(_pos); in fscache_objlist_next()