Searched defs:status (Results 251 - 275 of 1989) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/boot/sys/boot/efi/loader/
H A Dcopy.c55 EFI_STATUS status; local
57 status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData,
59 if (EFI_ERROR(status)) {
61 EFI_ERROR_CODE(status));
62 return (status);
/illumos-gate/usr/src/lib/nsswitch/mdns/common/
H A Dmdns_common.h82 int status; member in struct:mdns_querydata
/illumos-gate/usr/src/lib/pam_modules/authtok_store/
H A Dauthtok_store.c80 unix_authtok_data *status; local
83 (const void **)status) != PAM_SUCCESS)
86 return (status->age_status == PAM_NEW_AUTHTOK_REQD)
/illumos-gate/usr/src/lib/print/libhttp-core/common/
H A Dhttp-support.c32 * httpStatus() - Return a short string describing a HTTP status code.
252 * 'httpStatus()' - Return a short string describing a HTTP status code.
256 httpStatus(http_status_t status) /* I - HTTP status code */ argument
258 switch (status)
/illumos-gate/usr/src/lib/print/libipp-listener/common/
H A Dprint-job.c45 papi_status_t status; local
68 ipp_set_status(response, status, "printer-uri: %s",
69 papiStatusString(status));
151 status = papiJobStreamOpen(svc, queue, job_attributes, NULL, &s);
153 if (status != PAPI_OK) {
154 ipp_set_status(response, status, "job submission: %s",
155 ipp_svc_status_mesg(svc, status));
156 return (status);
160 while ((status == PAPI_OK) && ((rc = iread(fd, buf, sizeof (buf))) > 0))
161 status
[all...]
/illumos-gate/usr/src/lib/print/libpapi-lpd/common/
H A Dprinter.c56 papi_status_t status; local
63 if ((status = service_fill_in(svc, name)) == PAPI_OK) {
68 status = lpd_find_printer_info(svc,
71 if ((status == PAPI_OK) && (*printer == NULL)) {
93 return (status);
99 papi_status_t status; local
105 if ((status = service_fill_in(svc, name)) == PAPI_OK)
106 status = lpd_purge_jobs(svc, (job_t ***)jobs);
108 return (status);
116 papi_status_t status; local
168 papi_status_t status; local
182 papi_status_t status; local
197 papi_status_t status; local
212 papi_status_t status; local
[all...]
/illumos-gate/usr/src/lib/libdhcpagent/common/
H A Ddhcpagent_util.c229 * input: dhcp_reply_t *: contains the status structure to print
237 dhcp_status_t *status; local
239 status = dhcp_ipc_get_data(reply, &reply_size, NULL);
241 return ("<Internal error: status msg size>\n");
244 status->if_name, dhcp_state_to_string(status->if_state),
245 status->if_sent, status->if_recv, status->if_bad_offers);
247 if (status
[all...]
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_work.c235 * Now that we're stopped, we're going to get status one final time.
252 int status = dtrace_status(dtp); local
256 switch (status) {
279 if ((status == DTRACE_STATUS_NONE || status == DTRACE_STATUS_OKAY) &&
282 * There either isn't any status or things are fine -- and
/illumos-gate/usr/src/lib/libfsmgt/common/
H A Dcmd.c66 * the exit status of the executed command, but in the case of the
76 * child process to exit. Hence, cannot get the exit status of the
183 int status; local
256 while ((wait(&status) != child_pid)) {
261 * Evaluate the wait status and set the evaluated value to
264 *errp = WEXITSTATUS(status);
/illumos-gate/usr/src/lib/libgss/
H A Dg_accept_sec_context.c112 OM_uint32 status, temp_status, t_minstat; local
124 status = val_acc_sec_ctx_args(minor_status,
131 if (status != GSS_S_COMPLETE)
132 return (status);
147 status = __gss_get_mech_type(token_mech_type,
150 if (status)
151 return (status);
153 status = GSS_S_FAILURE;
160 status = generic_gss_copy_oid(&t_minstat,
163 if (status !
[all...]
H A Dg_acquire_cred_with_pw.c244 OM_uint32 status, time_req, time_rec, temp_minor_status; local
322 status = mech_ext->gss_acquire_cred_with_password(mech->context,
327 if (status != GSS_S_COMPLETE)
336 if ((status = mech->gss_display_name(mech->context,
352 status = GSS_S_FAILURE;
436 return (status);
/illumos-gate/usr/src/lib/libtecla/common/
H A Dhomedir.c256 int status; /* The return value of getpwnam_r() */ local
261 status = getpwuid_r(geteuid(), &home->pwd, home->buffer, home->buflen,
264 status = getpwnam_r(user, &home->pwd, home->buffer, home->buflen, &ret);
265 if(status || !ret) {
/illumos-gate/usr/src/lib/libtsalarm/common/
H A Dtsalarm.h76 uint32_t status; member in struct:tsalarm_resp
/illumos-gate/usr/src/lib/libuutil/common/
H A Duu_pname.c47 uu_die_internal(int status, const char *format, va_list alist) __NORETURN;
117 uu_die_internal(int status, const char *format, va_list alist) argument
131 exit(status);
151 uu_vxdie(int status, const char *format, va_list alist) argument
153 uu_die_internal(status, format, alist);
158 uu_xdie(int status, const char *format, ...) argument
162 uu_die_internal(status, format, alist);
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_dictlog.cc225 int status; local
234 status = ((xdr_db_dictlog_entry(&(xdr), j)) ? 0 : -1);
235 if (status < 0) {
237 WRITEUNLOCK(this, status, "wu db_dictlog::append");
238 return (status);
241 status = fflush(file);
242 if (status < 0) {
244 WRITEUNLOCK(this, status, "wu db_dictlog::append");
245 return (status);
248 status
[all...]
/illumos-gate/usr/src/lib/libpcp/common/
H A Dpcp_common.h73 uint32_t status; /* response status */ member in struct:pcp_resp_msg_hdr
91 /* Error codes for 'status' field in response message header */
/illumos-gate/usr/src/lib/libc/amd64/threads/
H A Dmachdep.c131 lwpstatus_t status; local
133 if (getlwpstatus(ulwp->ul_lwpid, &status) == 0) {
134 rs[REG_RBX] = status.pr_reg[REG_RBX];
135 rs[REG_R12] = status.pr_reg[REG_R12];
136 rs[REG_R13] = status.pr_reg[REG_R13];
137 rs[REG_R14] = status.pr_reg[REG_R14];
138 rs[REG_R15] = status.pr_reg[REG_R15];
139 rs[REG_RBP] = status.pr_reg[REG_RBP];
140 rs[REG_RSP] = status.pr_reg[REG_RSP];
141 rs[REG_RIP] = status
157 lwpstatus_t status; local
[all...]
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dpfmt_print.c66 int i, status; local
108 if ((status = fputs(label, stream)) < 0)
110 length += status;
111 if ((status = fputs(colon, stream)) < 0)
113 length += status;
146 if ((status = fprintf(stream, psev, severity)) < 0)
148 length += status;
149 if ((status = fputs(colon, stream)) < 0)
151 length += status;
158 if ((status
[all...]
H A Dpt.c77 struct stat64 status; local
85 if (ioctl(fd, I_STR, &istr) < 0 || fstat64(fd, &status) < 0)
88 return (minor(status.st_rdev));
H A Dwaitpid.c49 * Convert the siginfo_t code and status fields to an old style wait status.
52 wstat(int code, int status) argument
54 int stat = (status & 0377);
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dsystem.c124 int status; local
246 status = -1;
253 w = waitpid(cu.pid, &status, 0);
257 status = -1;
264 return (status);
/illumos-gate/usr/src/cmd/vntsd/
H A Dlisten.c54 listen_chk_status(vntsd_group_t *groupp, int status) argument
59 D1(stderr, "t@%d listen_chk_status() status=%d group=%s "
60 "tcp=%lld group status = %x\n", thr_self(), status,
61 groupp->group_name, groupp->tcp_port, groupp->status);
64 "Group:%s TCP port %lld status %x",
65 groupp->group_name, groupp->tcp_port, groupp->status);
68 switch (status) {
78 assert(groupp->status & VNTSD_GROUP_SIG_WAIT);
86 if (groupp->status
[all...]
/illumos-gate/usr/src/cmd/print/bsd-sysv-commands/
H A Dcancel.c67 papi_status_t status; local
73 status = papiServiceCreate(&svc, NULL, NULL, NULL,
87 status = papiServiceCreate(&svc, printer, NULL, NULL,
90 if (status != PAPI_OK) {
93 printer, verbose_papi_message(svc, status));
137 papi_status_t status; local
143 status = papiServiceCreate(&svc, av[c], NULL, NULL,
145 if (status != PAPI_OK) {
148 status = papiServiceCreate(&svc, printer, NULL,
151 if (status !
[all...]
H A Ddisable.c60 papi_status_t status; local
64 status = papiPrinterListJobs(svc, dest, req_attrs, 0, 0, &j);
65 if ((status == PAPI_OK) && (j != NULL)) {
90 papi_status_t status; local
126 status = papiServiceCreate(&svc, printer, NULL, NULL,
128 if (status != PAPI_OK) {
131 printer, verbose_papi_message(svc, status));
135 status = papiPrinterDisable(svc, printer, reason);
136 if (status == PAPI_OK) {
139 } else if (status
[all...]
H A Dlp.c67 papi_status_t status; local
263 status = papiServiceCreate(&svc, printer, NULL, NULL, cli_auth_callback,
265 if (status != PAPI_OK) {
268 verbose_papi_message(svc, status));
279 status = papiJobModify(svc, printer, modify, list, &job);
281 status = jobSubmitSTDIN(svc, printer, prefetch, prefetch_len,
284 status = papiJobValidate(svc, printer, list,
287 status = papiJobSubmitByReference(svc, printer, list,
290 status = papiJobSubmit(svc, printer, list,
295 if (status !
[all...]

Completed in 116 milliseconds

<<11121314151617181920>>