Lines Matching refs:_pos
89 static struct fscache_object *fscache_objlist_lookup(loff_t *_pos) in fscache_objlist_lookup() argument
95 if (*_pos >= (unsigned long) ERR_PTR(-ENOENT)) in fscache_objlist_lookup()
97 pos = *_pos; in fscache_objlist_lookup()
102 return (struct fscache_object *)(long)++(*_pos); in fscache_objlist_lookup()
124 *_pos = (unsigned long) ERR_PTR(-ENOENT); in fscache_objlist_lookup()
126 *_pos = (unsigned long) minobj; in fscache_objlist_lookup()
133 static void *fscache_objlist_start(struct seq_file *m, loff_t *_pos) in fscache_objlist_start() argument
137 return fscache_objlist_lookup(_pos); in fscache_objlist_start()
143 static void *fscache_objlist_next(struct seq_file *m, void *v, loff_t *_pos) in fscache_objlist_next() argument
145 (*_pos)++; in fscache_objlist_next()
146 return fscache_objlist_lookup(_pos); in fscache_objlist_next()