Searched refs:qt (Results 1 - 10 of 10) sorted by relevance

/asus-wl-520gu-7.0.1.45/src/router/samba/source/libsmb/
H A Dcliquota.c53 SMB_NTQUOTA_STRUCT qt; local
55 ZERO_STRUCT(qt);
82 qt.usedspace = (SMB_BIG_UINT)IVAL(rdata,16);
84 qt.usedspace |= (((SMB_BIG_UINT)IVAL(rdata,20)) << 32);
87 ((qt.usedspace != 0xFFFFFFFF)||
95 qt.softlim = (SMB_BIG_UINT)IVAL(rdata,24);
97 qt.softlim |= (((SMB_BIG_UINT)IVAL(rdata,28)) << 32);
100 ((qt.softlim != 0xFFFFFFFF)||
108 qt.hardlim = (SMB_BIG_UINT)IVAL(rdata,32);
110 qt
265 SMB_NTQUOTA_STRUCT qt; local
417 SMB_NTQUOTA_STRUCT qt; local
504 SMB_NTQUOTA_STRUCT qt; local
576 dump_ntquota(SMB_NTQUOTA_STRUCT *qt, BOOL _verbose, BOOL _numeric, void (*_sidtostring)(fstring str, DOM_SID *sid, BOOL _numeric)) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/utils/
H A Dsmbcquotas.c224 SMB_NTQUOTA_STRUCT qt; local
225 ZERO_STRUCT(qt);
246 if (!StringToSid(&qt.sid, username_str)) {
253 if (!cli_get_user_quota(cli, quota_fnum, &qt)) {
258 dump_ntquota(&qt,verbose,numeric,SidToString);
261 pqt->sid = qt.sid;
267 if (!cli_get_user_quota(cli, quota_fnum, &qt)) {
272 dump_ntquota(&qt,verbose,numeric,SidToString);
291 if (!cli_get_fs_quota_info(cli, quota_fnum, &qt)) {
296 dump_ntquota(&qt,Tru
400 SMB_NTQUOTA_STRUCT qt; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/smbd/
H A Dntquotas.c75 int vfs_get_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype, DOM_SID *psid, SMB_NTQUOTA_STRUCT *qt) argument
83 if (!fsp||!fsp->conn||!qt)
86 ZERO_STRUCT(*qt);
98 qt->sid = *psid;
104 qt->usedspace = (SMB_BIG_UINT)D.curblocks*D.bsize;
105 qt->softlim = limit_unix2nt(D.softlimit, D.bsize);
106 qt->hardlim = limit_unix2nt(D.hardlimit, D.bsize);
107 qt->qflags = D.qflags;
113 int vfs_set_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype, DOM_SID *psid, SMB_NTQUOTA_STRUCT *qt) argument
120 if (!fsp||!fsp->conn||!qt)
[all...]
H A Dnttrans.c2021 SMB_NTQUOTA_STRUCT qt; local
2025 ZERO_STRUCT(qt);
2190 if (vfs_get_ntquota(fsp, SMB_USER_QUOTA_TYPE, &sid, &qt)!=0) {
2191 ZERO_STRUCT(qt);
2224 SBIG_UINT(entry,16,qt.usedspace);
2227 SBIG_UINT(entry,24,qt.softlim);
2230 SBIG_UINT(entry,32,qt.hardlim);
2260 SMB_NTQUOTA_STRUCT qt; local
2265 ZERO_STRUCT(qt);
2313 qt
[all...]
H A Dvfs-wrap.c53 int vfswrap_get_quota(struct vfs_handle_struct *handle, struct connection_struct *conn, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *qt) argument
59 result = sys_get_quota(conn->connectpath, qtype, id, qt);
68 int vfswrap_set_quota(struct vfs_handle_struct *handle, struct connection_struct *conn, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *qt) argument
74 result = sys_set_quota(conn->connectpath, qtype, id, qt);
/asus-wl-520gu-7.0.1.45/src/router/ov51x/
H A Dov518_decomp.c112 unsigned char *qt; /* Current quantization table */ member in struct:comp_info
503 print_qt(unsigned char *qt) argument
506 PRN_QT_ROW(qt, 0);
507 PRN_QT_ROW(qt, 8);
508 PRN_QT_ROW(qt, 16);
509 PRN_QT_ROW(qt, 24);
511 PRN_QT_ROW(qt, 32);
512 PRN_QT_ROW(qt, 40);
513 PRN_QT_ROW(qt, 48);
514 PRN_QT_ROW(qt, 5
518 print_qt(unsigned char *qt) argument
1244 unsigned char *qt = cinfo->qt; local
1422 unsigned char qt[64]; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/include/
H A Dvfs_macros.h34 #define SMB_VFS_GET_QUOTA(conn, qtype, id, qt) ((conn)->vfs.ops.get_quota((conn)->vfs.handles.get_quota, (conn), (qtype), (id), (qt)))
35 #define SMB_VFS_SET_QUOTA(conn, qtype, id, qt) ((conn)->vfs.ops.set_quota((conn)->vfs.handles.set_quota, (conn), (qtype), (id), (qt)))
132 #define SMB_VFS_OPAQUE_GET_QUOTA(conn, qtype, id, qt) ((conn)->vfs_opaque.ops.get_quota((conn)->vfs_opaque.handles.get_quota, (conn), (qtype), (id), (qt)))
133 #define SMB_VFS_OPAQUE_SET_QUOTA(conn, qtype, id, qt) ((conn)->vfs_opaque.ops.set_quota((conn)->vfs_opaque.handles.set_quota, (conn), (qtype), (id), (qt)))
230 #define SMB_VFS_NEXT_GET_QUOTA(handle, conn, qtype, id, qt) ((handle)->vfs_next.ops.get_quota((handle)->vfs_next.handles.get_quota, (conn), (qtype), (id), (qt)))
[all...]
H A Dvfs.h202 int (*get_quota)(struct vfs_handle_struct *handle, struct connection_struct *conn, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *qt);
203 int (*set_quota)(struct vfs_handle_struct *handle, struct connection_struct *conn, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *qt);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/message/fusion/
H A Dmptbase.h764 #define Q_ADD_TAIL(qt,i,type) { \
765 Q_TRACKER *_qt = (Q_TRACKER*)(qt); \
773 #define Q_ADD_HEAD(qt,i,type) { \
774 Q_TRACKER *_qt = (Q_TRACKER*)(qt); \
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/scsi/
H A Din2000.c1611 int qt,x; local
1638 qt = read_3393(hostdata,WD_QUEUE_TAG);
1639 if (qt == 0xa5) {

Completed in 77 milliseconds