Lines Matching full:entries
73 do_readdir_many(V9fsPDU *pdu, V9fsFidState *fidp, struct V9fsDirEnt **entries, in do_readdir_many() argument
86 *entries = NULL; in do_readdir_many()
129 * response message size for the directory entries collected so far, in do_readdir_many()
144 *entries = e = g_new0(V9fsDirEnt, 1); in do_readdir_many()
187 * v9fs_co_readdir_many() - Reads multiple directory entries in one rush.
191 * @entries: output for directory entries (must not be NULL)
193 * seek to before retrieving the directory entries
200 * Retrieves the requested (max. amount of) directory entries from the fs
205 * Acquiring multiple directory entries in one rush from the fs
209 * latencies of several hundred ms for reading all entries (of just a single
213 * NOTE: You must ALWAYS call v9fs_free_dirents(entries) after calling
215 * function, to avoid memory leaks once @entries are no longer needed.
218 struct V9fsDirEnt **entries, in v9fs_co_readdir_many() argument
228 err = do_readdir_many(pdu, fidp, entries, offset, maxsize, dostat); in v9fs_co_readdir_many()