Lines Matching refs:_pos
93 static struct fscache_object *fscache_objlist_lookup(loff_t *_pos) in fscache_objlist_lookup() argument
99 if (*_pos >= (unsigned long) ERR_PTR(-ENOENT)) in fscache_objlist_lookup()
101 pos = *_pos; in fscache_objlist_lookup()
106 return (struct fscache_object *)(long)++(*_pos); in fscache_objlist_lookup()
128 *_pos = (unsigned long) ERR_PTR(-ENOENT); in fscache_objlist_lookup()
130 *_pos = (unsigned long) minobj; in fscache_objlist_lookup()
137 static void *fscache_objlist_start(struct seq_file *m, loff_t *_pos) in fscache_objlist_start() argument
141 return fscache_objlist_lookup(_pos); in fscache_objlist_start()
147 static void *fscache_objlist_next(struct seq_file *m, void *v, loff_t *_pos) in fscache_objlist_next() argument
149 (*_pos)++; in fscache_objlist_next()
150 return fscache_objlist_lookup(_pos); in fscache_objlist_next()