Lines Matching refs:P
36 translator conninfo_t < struct smb_request *P > {
38 P->session->ipaddr.a_family == AF_INET6 ? "tcp6" :
39 P->session->ipaddr.a_family == AF_INET ? "tcp" :
42 ci_remote = P->session->ip_addr_str;
66 translator smbopinfo_t < struct smb_request *P > {
67 soi_cred = (cred_t *)P->user_cr;
68 soi_sid = P->session->s_kid;
69 soi_pid = P->smb_pid;
70 soi_status = P->smb_error.status;
71 soi_tid = P->smb_tid;
72 soi_uid = P->smb_uid;
73 soi_mid = P->smb_mid;
74 soi_fid = P->smb_fid;
75 soi_flags2 = P->smb_flg2;
76 soi_flags = P->smb_flg;
77 soi_zoneid = P->sr_server->sv_zid;
79 soi_share = (P->tid_tree == NULL) ? "<NULL>" :
80 P->tid_tree->t_sharename;
82 soi_curpath = (P->fid_ofile == NULL ||
83 P->fid_ofile->f_node == NULL ||
84 P->fid_ofile->f_node->vp == NULL ||
85 P->fid_ofile->f_node->vp->v_path == NULL) ? "<NULL>" :
86 P->fid_ofile->f_node->vp->v_path;
95 translator smb_rw_args_t < smb_request_t *P > {
96 soa_offset = P->arg.rw->rw_offset;
97 soa_count = P->arg.rw->rw_count;
105 translator smb_name_args_t < smb_request_t *P > {
106 soa_name = (P->arg.dirop.fqi.fq_path.pn_path == NULL) ? "<NULL>" :
107 P->arg.dirop.fqi.fq_path.pn_path;
119 translator smb_open_args_t < smb_request_t *P > {
120 soa_name = (P->arg.open.fqi.fq_path.pn_path == NULL) ? "<NULL>" :
121 P->arg.open.fqi.fq_path.pn_path;
122 soa_desired_access = P->arg.open.desired_access;
123 soa_share_access = P->arg.open.share_access;
124 soa_create_options = P->arg.open.create_options;
125 soa_create_disposition = P->arg.open.create_disposition;
148 translator smb2opinfo_t < struct smb_request *P > {
149 soi_cred = (cred_t *)P->user_cr;
150 soi_sid = P->session->s_kid;
151 soi_mid = P->smb2_messageid;
152 soi_asyncid = P->smb2_async_id;
153 soi_uid = P->smb2_ssnid;
154 soi_tid = P->smb_tid;
155 soi_fid = P->smb_fid;
156 soi_status = P->smb2_status;
157 soi_flags = P->smb2_hdr_flags;
158 soi_zoneid = P->sr_server->sv_zid;
160 soi_share = (P->tid_tree == NULL) ? "<NULL>" :
161 P->tid_tree->t_sharename;
163 soi_curpath = (P->fid_ofile == NULL ||
164 P->fid_ofile->f_node == NULL ||
165 P->fid_ofile->f_node->vp == NULL ||
166 P->fid_ofile->f_node->vp->v_path == NULL) ? "<NULL>" :
167 P->fid_ofile->f_node->vp->v_path;