Searched defs:status (Results 351 - 375 of 1989) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/lib/smbsrv/libmlsvc/common/
H A Dmlsvc_util.c65 DWORD status; local
67 status = netr_open(server, domain, &netr_handle);
68 if (status != 0) {
71 xlate_nt_status(status));
72 return (status);
75 status = netlogon_auth(server, &netr_handle, NETR_FLG_INIT);
76 if (status != NT_STATUS_SUCCESS) {
79 xlate_nt_status(status));
86 return (status);
97 * Returns NT status code
108 DWORD status; local
315 DWORD status; local
401 DWORD status; local
[all...]
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb2_ioctl.c59 uint32_t status; local
87 status = NT_STATUS_NOT_SUPPORTED;
100 status = NT_STATUS_NOT_SUPPORTED;
109 status = NT_STATUS_INVALID_DEVICE_REQUEST;
118 status = NT_STATUS_INVALID_PARAMETER;
122 status = smb2sr_lookup_fid(sr, &smb2fid);
123 if (status) {
124 status = NT_STATUS_FILE_CLOSED;
135 status = NT_STATUS_INVALID_PARAMETER;
145 status
[all...]
H A Dsmb2_lock.c46 uint32_t status; local
66 status = smb2sr_lookup_fid(sr, &smb2fid);
67 if (status)
70 status = NT_STATUS_INVALID_PARAMETER;
74 status = NT_STATUS_INSUFFICIENT_RESOURCES;
95 status = NT_STATUS_INVALID_PARAMETER;
119 status = NT_STATUS_INVALID_PARAMETER;
128 status = smb2sr_go_async(sr, smb2_lock_async);
133 status = smb2_lock_exec(sr, LockCount);
134 if (status)
157 uint32_t status; local
214 uint32_t status = 0; local
253 uint32_t status; local
[all...]
H A Dsmb2_qinfo_fs.c48 uint32_t status; local
54 status = smb2_qfs_volume(sr);
57 status = smb2_qfs_size(sr);
60 status = smb2_qfs_device(sr);
63 status = smb2_qfs_attr(sr);
66 status = smb2_qfs_control(sr);
69 status = smb2_qfs_fullsize(sr);
72 status = smb2_qfs_obj_id(sr);
76 status = NT_STATUS_INVALID_INFO_CLASS;
80 return (status);
[all...]
H A Dsmb2_setinfo_file.c43 uint32_t status; local
49 status = smb_set_basic_info(sr, si);
52 status = smb2_setf_rename(sr, si);
55 status = smb2_setf_link(sr, si);
58 status = smb_set_disposition_info(sr, si);
61 status = smb2_setf_seek(sr, si);
64 status = smb2_setf_full_ea(sr, si);
67 status = smb2_setf_mode(sr, si);
70 status = smb_set_alloc_info(sr, si);
73 status
104 uint32_t status = 0; local
135 uint32_t status = 0; local
225 uint32_t status; local
[all...]
H A Dsmb_notify.c43 * issued, then zero bytes are returned and an alternate status code
103 uint32_t status; local
159 status = NT_STATUS_CANCELLED;
162 status = NT_STATUS_INTERNAL_ERROR;
188 status = smb_notify_encode_action(sr, mbc,
193 status = NT_STATUS_NOTIFY_ENUM_DIR;
197 status = NT_STATUS_DELETE_PENDING;
202 status = NT_STATUS_INTERNAL_ERROR;
209 return (status);
H A Dsmb_nt_transact_ioctl.c91 uint32_t status = NT_STATUS_NOT_SUPPORTED; local
110 status = ioctl_ret_tbl[i].ioctl_func(sr, xa);
115 if (status != NT_STATUS_SUCCESS) {
116 smbsr_error(sr, status, 0, 0);
180 return (sr->smb_error.status);
194 return (sr->smb_error.status);
213 return (sr->smb_error.status);
298 return (sr->smb_error.status);
308 return (sr->smb_error.status);
322 return (sr->smb_error.status);
333 uint32_t status; local
[all...]
/illumos-gate/usr/src/lib/fm/libfmd_agent/i386/
H A Dfmd_agent_i386.c100 int32_t status; local
113 FM_CPU_RETIRE_OLDSTATUS, &status);
114 *old_status = status;
156 int ret, status; local
159 &status);
161 return (ret == 0 && status != P_ONLINE ?
/illumos-gate/usr/src/uts/i86pc/os/
H A Dbiosdisk.c229 int status; local
236 status = rp.eax.byte.ah;
238 if (((rp.eflags & PS_C) != 0) || status != 0)
239 dprintf(("Bad disk reset driv %x, status %x\n", drivenum,
240 status));
250 uchar_t status; local
271 status = rp.eax.byte.ah;
272 if (((rp.eflags & PS_C) != 0) || status != 0) {
273 dprintf(("read_firstblock AH not clear %x \n", status));
/illumos-gate/usr/src/boot/sys/boot/efi/boot1/
H A Dufs_module.c50 EFI_STATUS status; local
55 status = devinfo->dev->ReadBlocks(devinfo->dev,
58 if (status != EFI_SUCCESS) {
60 "status: %lu\n", devinfo->dev,
62 EFI_ERROR_CODE(status));
99 EFI_STATUS status; local
121 if ((status = bs->AllocatePool(EfiLoaderData, size, &buf)) !=
124 size, filepath, EFI_ERROR_CODE(status));
125 return (status);
145 status() function
[all...]
H A Dzfs_module.c48 EFI_STATUS status; local
53 status = devinfo->dev->ReadBlocks(devinfo->dev,
55 if (status != EFI_SUCCESS) {
57 " status: %lu\n", devinfo->dev,
59 EFI_ERROR_CODE(status));
71 EFI_STATUS status; local
74 if ((status = bs->AllocatePool(EfiLoaderData, sizeof(*dev),
77 EFI_ERROR_CODE(status));
78 return (status);
102 EFI_STATUS status; local
157 status() function
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/libefi/
H A Dlibefi.c91 EFI_STATUS status; local
99 status = BS->LocateProtocol(&console_control_protocol, NULL,
101 if (status == EFI_SUCCESS)
108 status = BS->AllocatePages(AllocateMaxAddress, EfiLoaderData,
110 if (status != EFI_SUCCESS)
111 BS->Exit(IH, status, 0, NULL);
117 status = BS->HandleProtocol(IH, &image_protocol, (VOID**)&img);
118 if (status != EFI_SUCCESS)
119 exit(status);
198 status
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/loader/arch/i386/
H A Defimd.c65 EFI_STATUS status; local
74 status = BS->LocateHandle(ByProtocol, &fpswa_guid, 0, &sz, &handle);
75 if (status == 0)
76 status = BS->HandleProtocol(handle, &fpswa_guid, &fpswa);
77 bi->bi_fpswa = (status == 0) ? (uint64_t)fpswa : 0;
95 status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData, pages,
97 if (EFI_ERROR(status)) {
99 (long)status);
111 status = BS->GetMemoryMap(&sz, mm, &mapkey, &mmsz, &mmver);
112 if (EFI_ERROR(status)) {
129 EFI_STATUS status; local
[all...]
/illumos-gate/usr/src/lib/lvm/libmeta/common/
H A Dmeta_rename.c265 md_error_t status = mdnullerror; local
266 md_error_t *t_ep = &status;
H A Dmeta_smf.c157 md_error_t status = mdnullerror; local
158 md_error_t *ep = &status;
/illumos-gate/usr/src/lib/lvm/libpreen/common/
H A Dmdpreen.c90 int status = 0; local
97 status == 0) {
107 status = -1;
120 status = -1;
123 return (status);
148 md_error_t status = mdnullerror; local
149 md_error_t *ep = &status;
332 mde_perror(&status, "");
333 mdclrerror(&status);
/illumos-gate/usr/src/lib/mpapi/libmpscsi_vhci/common/
H A DMP_GetAssociatedPathOidList.c60 int status = -1; local
158 status = stat(fullName, &buffer);
159 if (status < 0) {
163 " - stat() call failed: %d", status);
208 int status = -1; local
343 status = stat(fullName, &buffer);
344 if (status < 0) {
348 " - stat() call failed: %d", status);
H A DMP_GetMPLuOidListFromTPG.c62 int status = MP_FALSE; local
106 status = MP_TRUE;
120 return (status);
142 int status = -1; local
265 status = stat(fullName, &buffer);
266 if (status < 0) {
270 status);
/illumos-gate/usr/src/lib/pam_modules/dhkeys/
H A Dkey_call_uid.c82 enum clnt_stat status; local
133 status = CLNT_CALL(clnt, proc, xdr_arg, arg, xdr_rslt,
139 return (status == RPC_SUCCESS ? 1 : 0);
145 keystatus status; local
148 (char *)arg, xdr_keystatus, (char *)&status, uid, gid)) {
151 if (status != KEY_SUCCESS) {
164 keystatus status; local
219 (char *)&arg, xdr_keystatus, (char *)&status, uid, gid)) {
223 if (status != KEY_SUCCESS) {
224 /* debug("key_setnet3 status i
258 keystatus status; local
[all...]
/illumos-gate/usr/src/lib/pam_modules/ldap/
H A Dldap_acct_mgmt.c236 * then checking the password status
259 ldap_authtok_data *status; local
348 /* store the password aging status in the pam handle */
356 if ((status = (ldap_authtok_data *)calloc
362 (void) memcpy(status, authtok_data,
365 status->age_status = result;
366 if (pam_set_data(pamh, LDAP_AUTHTOK_DATA, status, ldap_cleanup)
368 free(status);
/illumos-gate/usr/src/lib/print/libipp-core/common/
H A Dwrite.c119 papi_status_t status; local
132 if ((status = papi_ipp_type_match(attribute->type, type)) != PAPI_OK)
133 return (status);
344 papi_status_t status; local
350 for (status = papiAttributeListGetCollection(groups, &iter,
352 ((status == PAPI_OK) && (result == PAPI_OK));
353 status = papiAttributeListGetCollection(groups, &iter,
386 /* write the request/status code */
387 papiAttributeListGetInteger(message, NULL, "status-code", &tmp);
/illumos-gate/usr/src/lib/print/libpapi-lpd/common/
H A Djob.c49 papi_status_t status = PAPI_OK; local
64 if ((status = service_fill_in(svc, name)) != PAPI_OK)
65 return (status);
82 if ((status = lpd_job_add_files(svc, attributes, files, &metadata,
84 return (status);
88 status = lpd_submit_job(svc, metadata, &j->attributes, NULL);
91 return (status);
110 papi_status_t status = PAPI_OK; local
121 if ((status = service_fill_in(svc, name)) != PAPI_OK)
122 return (status);
188 papi_status_t status = PAPI_INTERNAL_ERROR; local
226 papi_status_t status = PAPI_OK; local
241 papi_status_t status; local
[all...]
H A Dlpd-misc.c190 int err, status = 0; local
192 while ((waitpid(pid, &status, 0) < 0) && (errno == EINTR));
193 errno = WEXITSTATUS(status);
H A Dservice.c43 papi_status_t status = PAPI_OK; local
66 status = PAPI_URI_SCHEME;
70 return (status);
79 papi_status_t status; local
98 status = service_fill_in(svc, service_name);
100 return (status);
272 "detailed-status-message", &result);
297 "detailed-status-message", message);
/illumos-gate/usr/src/lib/efcode/fcdriver/
H A Dbuild_tree.c99 int status; local
103 status = os_get_prop_common(cdp, thisnode, "name",
106 " status: %d", thisnode, namebuf, status);
107 if (status == 0 && strcmp(name, namebuf) == 0)

Completed in 92 milliseconds

<<11121314151617181920>>