Lines Matching refs:buf
83 struct ecryptfs_getdents_callback *buf = in ecryptfs_filldir() local
89 buf->filldir_called++; in ecryptfs_filldir()
91 buf->dentry, lower_name, in ecryptfs_filldir()
99 rc = buf->filldir(buf->dirent, name, name_size, offset, ino, d_type); in ecryptfs_filldir()
102 buf->entries_written++; in ecryptfs_filldir()
118 struct ecryptfs_getdents_callback buf; in ecryptfs_readdir() local
123 memset(&buf, 0, sizeof(buf)); in ecryptfs_readdir()
124 buf.dirent = dirent; in ecryptfs_readdir()
125 buf.dentry = file->f_path.dentry; in ecryptfs_readdir()
126 buf.filldir = filldir; in ecryptfs_readdir()
127 buf.filldir_called = 0; in ecryptfs_readdir()
128 buf.entries_written = 0; in ecryptfs_readdir()
129 rc = vfs_readdir(lower_file, ecryptfs_filldir, (void *)&buf); in ecryptfs_readdir()
133 if (buf.filldir_called && !buf.entries_written) in ecryptfs_readdir()