Searched defs:status (Results 526 - 550 of 1989) sorted by relevance

<<21222324252627282930>>

/illumos-gate/usr/src/cmd/lp/lib/papi/
H A Dlpsched-printers.c39 unsigned short status)
44 if (!(status & (PS_DISABLED|PS_LATER))) {
45 if (status & PS_FAULTED) {
46 if (status & PS_BUSY)
59 } else if (status & PS_BUSY) {
64 } else if (status & PS_FORM_FAULT) {
73 } else if (status & PS_DISABLED) {
78 } else if (status & PS_LATER) {
90 ((status & PS_REJECTED) != PS_REJECTED));
93 ((status
38 lpsched_printer_status_to_attributes(papi_attribute_t ***attrs, unsigned short status) argument
311 printer_status_to_attributes(printer_t *p, char *printer, char *form, char *character_set, char *disable_reason, char *reject_reason, short status, char *request_id, long disable_date, long reject_date) argument
402 class_status_to_attributes(printer_t *p, char *printer, short status, char *reject_reason, long reject_date) argument
434 papi_status_t status; local
[all...]
H A Dservice.c109 short status; local
113 (rcv_msg(svc, R_PASS_PEER_CONNECTION, &status) < 0))
114 status = MTRANSMITERR;
116 if (status != MOK) {
119 lpsched_status_string(status));
120 result = lpsched_status_to_papi_status(status);
277 "detailed-status-message", &result);
301 "detailed-status-message", message);
/illumos-gate/usr/src/cmd/smbsrv/smbd/
H A Dsmbd_nicmon.c123 uint8_t status; local
142 rc = smb_smf_get_boolean_property(hd, SMBD_NICMON_ENABLE, &status);
143 if (rc == SMBD_SMF_OK && status == 0)
246 * in UP/DOWN status.
H A Dsmbd_pipesvc.c264 uint32_t status; local
271 status = NT_STATUS_PIPE_NOT_AVAILABLE;
272 (void) send(np->np_fid, &status, sizeof (status), 0);
321 status = 0;
322 rc = pipe_send(np, &status, sizeof (status));
H A Dsmbd_join.c246 DWORD status; local
273 status = mlsvc_netlogon(info.d_dci.dc_name, di->di_nbname);
274 if (status != NT_STATUS_SUCCESS) {
279 xlate_nt_status(status));
319 res->status = NT_STATUS_SUCCESS;
330 if (res->status == 0) {
334 info->domain_name, xlate_nt_status(res->status));
H A Dsmbd_krb5ssp.c121 uint32_t status; local
198 status = get_authz_data_pac(be->be_gssctx,
200 if (status)
201 return (status);
223 status = smb_decode_krb5_pac(ctx->ctx_token, be->be_pac.data,
225 if (status)
226 return (status);
228 status = get_ssnkey(ctx);
229 if (status)
230 return (status);
261 uint32_t status = NT_STATUS_UNSUCCESSFUL; local
311 uint32_t status = NT_STATUS_UNSUCCESSFUL; local
[all...]
H A Dsmbd_logon.c96 int status; local
120 status = ADT_FAILURE;
129 status = ADT_SUCCESS;
172 if (adt_put_event(event, status, retval))
/illumos-gate/usr/src/lib/libshare/smb/
H A Dsmb_share_doorclnt.c187 int status = smb_dr_get_int32(dec_ctx); local
189 if (status != SMB_SHARE_DSUCCESS) {
190 if (status == SMB_SHARE_DERROR)
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_write.c110 if (sr->smb_error.status != NT_STATUS_FILE_LOCK_CONFLICT)
205 if (sr->smb_error.status != NT_STATUS_FILE_LOCK_CONFLICT)
271 uint32_t status; local
304 if (sr->smb_error.status != NT_STATUS_FILE_LOCK_CONFLICT)
309 status = smb_unlock_range(sr, sr->fid_ofile->f_node, param->rw_offset,
311 if (status != NT_STATUS_SUCCESS) {
438 if (sr->smb_error.status !=
549 uint32_t status; local
557 status = smb_lock_range_access(sr, node, param->rw_offset,
559 if (status !
[all...]
H A Dsmb_read.c181 DWORD status; local
198 status = smb_lock_range(sr, param->rw_offset, (uint64_t)param->rw_count,
201 if (status != NT_STATUS_SUCCESS) {
202 smb_lock_range_error(sr, status);
H A Dsmb2_qinfo_file.c56 uint32_t status; local
105 status = smb2_ofile_getattr(sr, of, &qi->qi_attr);
106 if (status)
107 return (status);
110 status = smb2_ofile_getstd(of, qi);
111 if (status)
112 return (status);
115 status = smb2_ofile_getname(of, qi);
116 if (status)
117 return (status);
202 uint32_t status; local
454 uint32_t status; local
[all...]
H A Dsmb_cmn_rename.c52 * Returns NT status codes.
62 uint32_t status; local
76 status = smb_common_rename(sr, src_fqi, dst_fqi);
77 return (status);
90 * Returns NT status values.
101 DWORD status; local
248 status = smb_node_delete_check(dst_fnode);
249 if (status != NT_STATUS_SHARING_VIOLATION)
255 if (status != NT_STATUS_SUCCESS) {
278 status
385 uint32_t status; local
527 DWORD status; local
[all...]
H A Dsmb_delete.c147 uint32_t status; local
175 status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
177 status = NT_STATUS_OBJECT_PATH_NOT_FOUND;
178 smbsr_error(sr, status, ERRDOS, ERROR_FILE_NOT_FOUND);
238 smb_delete_error(err, sr->smb_error.status,
288 uint32_t status; local
297 status = smb_odir_openpath(sr, fqi->fq_path.pn_path,
299 if (status != 0) {
300 err->status = status;
474 uint32_t status; local
608 smb_delete_error(smb_error_t *err, uint32_t status, uint16_t errcls, uint16_t errcode) argument
[all...]
H A Dsmb_nt_transact_security.c65 uint32_t status; local
98 status = smb_sd_read(sr, &sd, secinfo);
99 if (status != NT_STATUS_SUCCESS) {
100 smbsr_error(sr, status, 0, 0);
119 err.status = NT_STATUS_BUFFER_TOO_SMALL;
157 uint32_t status; local
196 status = smb_decode_sd(&xa->req_data_mb, &sd);
197 if (status != NT_STATUS_SUCCESS) {
198 smbsr_error(sr, status, 0, 0);
209 status
[all...]
H A Dsmb_sd.c131 uint32_t status = NT_STATUS_SUCCESS; local
143 status = smb_sd_fromfs(&fs_sd, sd);
146 return (status);
161 uint32_t status; local
169 status = smb_sd_tofs(sd, &fs_sd);
170 if (status != NT_STATUS_SUCCESS) {
172 return (status);
198 uint32_t status = NT_STATUS_SUCCESS; local
249 status = smb_acl_to_zfs(sd->sd_dacl, flags,
251 if (status !
286 uint32_t status = NT_STATUS_SUCCESS; local
[all...]
H A Dsmb_set_fileinfo.c73 * These functions all return and NT status code.
211 uint32_t status; local
240 status = smb_set_fileinfo(sr, &sinfo, infolev);
241 if (status != 0) {
242 smbsr_error(sr, status, 0, 0);
262 * the appropriate error status code (which differs by caller).
268 uint32_t status; local
309 status = smb_set_fileinfo(sr, &sinfo, infolev);
310 if (status != 0) {
311 smbsr_error(sr, status,
328 uint32_t status; local
399 uint32_t status = 0; local
439 uint32_t status = 0; local
482 uint32_t status = 0; local
538 uint32_t status = 0; local
[all...]
/illumos-gate/usr/src/lib/smbsrv/libmlsvc/common/
H A Dlsalib.c70 * Return status:
81 uint32_t status; local
101 status = lsa_lookup_name_builtin(domain, name, info);
102 if (status == NT_STATUS_NOT_FOUND) {
103 status = smb_sam_lookup_name(domain, name, type, info);
104 if (status == NT_STATUS_SUCCESS)
105 return (status);
107 if ((domain == NULL) || (status == NT_STATUS_NOT_FOUND))
108 status = lsa_lookup_name_domain(account, info);
111 return ((status
117 uint32_t status; local
146 DWORD status; local
175 DWORD status; local
205 DWORD status; local
236 DWORD status; local
276 DWORD status; local
357 uint32_t status; local
395 DWORD status; local
427 DWORD status; local
468 DWORD status; local
552 uint32_t status; local
578 lsa_map_status(uint32_t status) argument
[all...]
/illumos-gate/usr/src/uts/common/io/i40e/
H A Di40e_osdep.c204 int status; local
207 status = pci_lcap_locate((OS_DEP(hw))->ios_cfg_handle, pcie_id,
209 if (status != DDI_SUCCESS) {
212 status);
/illumos-gate/usr/src/boot/sys/boot/efi/libefi/
H A Definet.c121 EFI_STATUS status; local
126 status = net->Transmit(net, 0, len, pkt, 0, 0, 0);
127 if (status != EFI_SUCCESS)
133 status = net->GetStatus(net, 0, &buf);
138 } while (status == EFI_SUCCESS && buf == 0);
140 /* XXX How do we deal with status != EFI_SUCCESS now? */
141 return ((status == EFI_SUCCESS) ? len : -1);
149 EFI_STATUS status; local
159 status = net->Receive(net, 0, &bufsz, buf, 0, 0, 0);
160 if (status
185 EFI_STATUS status; local
268 EFI_STATUS status; local
[all...]
/illumos-gate/usr/src/lib/lvm/libmeta/common/
H A Dmeta_namespace.c698 md_error_t status = mdnullerror; local
703 ep = &status;
714 if (ep == &status)
715 mdclrerror(&status);
H A Dmeta_notify.c623 md_error_t status = mdnullerror; local
624 md_error_t *ep = &status;
H A Dmeta_print.c38 * report metadevice status
108 md_error_t status = mdnullerror; local
117 ep = &status;
121 ep = &status;
126 ep = &status;
130 ep = &status;
134 ep = &status;
138 ep = &status;
142 ep = &status;
146 mdclrerror(&status);
[all...]
H A Dmeta_se_notify.c44 md_error_t status = mdnullerror; local
51 ((sp = metasetnosetname(setno, &status)) != NULL)) {
82 md_sr = getsetbyname(setname, &status);
109 mdclrerror(&status);
/illumos-gate/usr/src/lib/lvm/libsvm/common/
H A Dmetainterfaces.c54 md_error_t status = mdnullerror; local
57 if (md_init_nosig(largc, &largv, 0, 1, &status) != 0 ||
58 meta_check_root(&status) != 0) {
89 md_error_t status = mdnullerror; local
92 if ((sp = metasetname(MD_LOCAL_NAME, &status)) == NULL) {
95 if (meta_lock(sp, TRUE, &status)) {
98 if (metaioctl(MD_HALT, NULL, &status, NULL) != 0) {
100 status.info.md_error_info_t_u.sys_error.errnum);
102 (void) meta_unlock(sp, &status);
103 reset_metalib(&status);
330 md_error_t status, *ep; local
[all...]
/illumos-gate/usr/src/lib/pam_modules/unix_account/
H A Dunix_acct.c296 unix_authtok_data *status; local
548 /* store the password aging status in the pam handle */
552 if ((status = (unix_authtok_data *)calloc(1,
558 (void) memcpy(status, authtok_data,
561 status->age_status = error;
562 if (pam_set_data(pamh, UNIX_AUTHTOK_DATA, status, unix_cleanup)
564 free(status);

Completed in 99 milliseconds

<<21222324252627282930>>