set_quota 309 source3/include/vfs.h int (*set_quota)(struct vfs_handle_struct *handle, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *qt); set_quota 508 source3/include/vfs.h struct vfs_handle_struct *set_quota; set_quota 34 source3/include/vfs_macros.h #define SMB_VFS_SET_QUOTA(conn, qtype, id, qt) ((conn)->vfs.ops.set_quota((conn)->vfs.handles.set_quota, (qtype), (id), (qt))) set_quota 168 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_SET_QUOTA(conn, qtype, id, qt) ((conn)->vfs_opaque.ops.set_quota((conn)->vfs_opaque.handles.set_quota, (qtype), (id), (qt))) set_quota 302 source3/include/vfs_macros.h #define SMB_VFS_NEXT_SET_QUOTA(handle, qtype, id, qt) ((handle)->vfs_next.ops.set_quota((handle)->vfs_next.handles.set_quota, (qtype), (id), (qt))) set_quota 175 source3/lib/sysquotas.c int (*set_quota)(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp); set_quota 500 source3/lib/sysquotas.c for (i=0;(fs && sys_quota_backends[i].name && sys_quota_backends[i].set_quota);i++) { set_quota 502 source3/lib/sysquotas.c ret = sys_quota_backends[i].set_quota(mntpath, bdev, qtype, id, dp);