get_quota 308 source3/include/vfs.h int (*get_quota)(struct vfs_handle_struct *handle, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *qt); get_quota 507 source3/include/vfs.h struct vfs_handle_struct *get_quota; get_quota 33 source3/include/vfs_macros.h #define SMB_VFS_GET_QUOTA(conn, qtype, id, qt) ((conn)->vfs.ops.get_quota((conn)->vfs.handles.get_quota, (qtype), (id), (qt))) get_quota 167 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_GET_QUOTA(conn, qtype, id, qt) ((conn)->vfs_opaque.ops.get_quota((conn)->vfs_opaque.handles.get_quota, (qtype), (id), (qt))) get_quota 301 source3/include/vfs_macros.h #define SMB_VFS_NEXT_GET_QUOTA(handle, qtype, id, qt) ((handle)->vfs_next.ops.get_quota((handle)->vfs_next.handles.get_quota, (qtype), (id), (qt))) get_quota 174 source3/lib/sysquotas.c int (*get_quota)(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp); get_quota 433 source3/lib/sysquotas.c for (i=0;(fs && sys_quota_backends[i].name && sys_quota_backends[i].get_quota);i++) { get_quota 435 source3/lib/sysquotas.c ret = sys_quota_backends[i].get_quota(mntpath, bdev, qtype, id, dp);