Searched refs:status (Results 101 - 125 of 2686) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/ncurses/form/
H A Dfld_ftlink.c65 nftyp->status |= _LINKED_TYPE;
66 if ((type1->status & _HAS_ARGS) || (type2->status & _HAS_ARGS))
67 nftyp->status |= _HAS_ARGS;
68 if ((type1->status & _HAS_CHOICE) || (type2->status & _HAS_CHOICE))
69 nftyp->status |= _HAS_CHOICE;
/freebsd-10.0-release/contrib/apr/file_io/unix/
H A Dcopy.c27 apr_status_t status; local
32 status = apr_file_open(&s, from_path, APR_FOPEN_READ, APR_OS_DEFAULT, pool);
33 if (status)
34 return status;
38 status = apr_file_info_get(&finfo, APR_FINFO_PROT, s);
39 if (status != APR_SUCCESS && status != APR_INCOMPLETE) {
41 return status;
49 status = apr_file_open(&d, to_path, flags, perms, pool);
50 if (status) {
[all...]
/freebsd-10.0-release/sys/dev/isci/scil/
H A Dscif_sas_library.c103 SCI_STATUS status; local
114 status);
150 SCI_STATUS status; local
158 SCI_BASE_LIBRARY_ALLOCATE_CONTROLLER(fw_library, new_controller, &status);
159 if (status == SCI_SUCCESS)
170 status = scic_library_allocate_controller(
176 if (status != SCI_SUCCESS)
180 if (status != SCI_SUCCESS)
186 fw_library, status
191 status
203 SCI_STATUS status; local
[all...]
H A Dscic_sds_stp_remote_device.c96 SCI_STATUS status; local
98 status = scic_sds_io_request_complete(the_request);
100 if (status == SCI_SUCCESS)
102 status = scic_sds_port_complete_io(
106 if (status == SCI_SUCCESS)
114 //status of "DEVICE_RESET_REQUIRED", instead of "INVALID STATE".
130 if (status != SCI_SUCCESS)
136 this_device->owning_port, this_device, the_request, status
140 return status;
154 * @return SCI_STATUS Always return SCI_FAILURE_RESET_DEVICE_PARTIAL_SUCCESS status
165 SCI_STATUS status; local
248 SCI_STATUS status; local
313 SCI_STATUS status; local
345 SCI_STATUS status; local
393 SCI_STATUS status; local
471 SCI_STATUS status; local
553 SCI_STATUS status; local
576 SCI_STATUS status; local
628 SCI_STATUS status; local
677 SCI_STATUS status; local
[all...]
/freebsd-10.0-release/crypto/heimdal/appl/kf/
H A Dkf.c72 int status; local
76 status = krb5_init_context (context);
77 if (status)
78 errx(1, "krb5_init_context failed: %d", status);
129 krb5_error_code status; local
139 status = krb5_auth_con_init (context, &auth_context);
140 if (status) {
141 krb5_warn (context, status, "krb5_auth_con_init");
145 status = krb5_auth_con_setaddrs_from_fd (context,
148 if (status) {
[all...]
H A Dkfd.c126 krb5_error_code status; local
139 status = krb5_auth_con_init (context, &auth_context);
140 if (status)
141 krb5_err(context, 1, status, "krb5_auth_con_init");
143 status = krb5_auth_con_setaddrs_from_fd (context,
146 if (status)
147 krb5_err(context, 1, status, "krb5_auth_con_setaddr");
152 status = krb5_sname_to_principal (context,
157 if (status)
158 krb5_err(context, 1, status, "krb5_sname_to_principa
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/
H A Dtst.temporal.ksh69 status=$?
70 if [ "$status" -ne 0 ]; then
72 exit $status
80 status=$?
81 if [ "$status" -ne 0 ]; then
83 exit $status
87 status=$?
88 if [ "$status" -ne 0 ]; then
90 exit $status
94 status
[all...]
/freebsd-10.0-release/contrib/serf/buckets/
H A Dchunk_buckets.c131 apr_status_t status; local
135 status = create_chunk(bucket);
136 if (status) {
137 return status;
141 status = serf_bucket_read(ctx->chunk, requested, data, len);
144 if (APR_STATUS_IS_EOF(status) && ctx->state == STATE_CHUNK) {
145 status = ctx->last_status;
149 return status;
157 apr_status_t status; local
159 status
177 apr_status_t status; local
204 apr_status_t status; local
[all...]
H A Ddechunk_buckets.c69 apr_status_t status; local
76 status = serf_linebuf_fetch(&ctx->linebuf, ctx->stream,
78 if (SERF_BUCKET_READ_ERROR(status))
79 return status;
98 status = APR_EOF;
106 if (!status)
109 /* assert: status != 0 */
116 return status;
125 status = serf_bucket_read(ctx->stream, requested, data, len);
126 if (SERF_BUCKET_READ_ERROR(status))
[all...]
/freebsd-10.0-release/tools/regression/mqueue/mqtest4/
H A Dmqtest4.c28 int status; local
42 status = mq_getattr(mq, &attr);
43 if (status)
56 status = kevent(kq, &kev, 1, NULL, 0, NULL);
57 if (status == -1)
62 status = kevent(kq, NULL, 0, &kev, 1, NULL);
63 if (status != 1)
65 status = mq_receive(mq, buf, attr.mq_msgsize, &prio);
66 if (status == -1)
88 status
[all...]
/freebsd-10.0-release/lib/libc/gen/
H A Dgetlogin.c57 getlogin_basic(int *status) argument
63 *status = errno;
68 *status = 0;
76 int status; local
79 result = getlogin_basic(&status);
89 int status; local
92 result = getlogin_basic(&status);
93 if (status == 0) {
95 status = ERANGE;
100 return (status);
[all...]
/freebsd-10.0-release/tools/regression/zfs/zpool/create/
H A Dcache.t13 expect_ok ${ZPOOL} status -x ${name0}
14 expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0}
27 expect "${exp}" ${ZPOOL} status ${name0}
29 expect_fl ${ZPOOL} status -x ${name0}
33 expect_ok ${ZPOOL} status -x ${name0}
34 expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0}
49 expect "${exp}" ${ZPOOL} status ${name0}
51 expect_fl ${ZPOOL} status -x ${name0}
55 expect_ok ${ZPOOL} status -x ${name0}
56 expect "pool '${name0}' is healthy" ${ZPOOL} status
[all...]
H A Doption-f_type_mismatch.t14 expect_fl ${ZPOOL} status -x ${name0}
18 expect_ok ${ZPOOL} status -x ${name0}
19 expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0}
31 expect "${exp}" ${ZPOOL} status ${name0}
33 expect_fl ${ZPOOL} status -x ${name0}
37 expect_fl ${ZPOOL} status -x ${name0}
41 expect_ok ${ZPOOL} status -x ${name0}
42 expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0}
54 expect "${exp}" ${ZPOOL} status ${name0}
56 expect_fl ${ZPOOL} status
[all...]
H A Draidz1.t16 expect_ok ${ZPOOL} status -x ${name0}
17 expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0}
30 expect "${exp}" ${ZPOOL} status ${name0}
32 expect_fl ${ZPOOL} status -x ${name0}
36 expect_ok ${ZPOOL} status -x ${name0}
37 expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0}
50 expect "${exp}" ${ZPOOL} status ${name0}
52 expect_fl ${ZPOOL} status -x ${name0}
56 expect_ok ${ZPOOL} status -x ${name0}
57 expect "pool '${name0}' is healthy" ${ZPOOL} status
[all...]
/freebsd-10.0-release/contrib/openbsm/libbsm/
H A Dbsm_notify.c69 uint32_t status; local
72 status = notify_register_check(__BSM_INTERNAL_NOTIFY_KEY, &token);
73 if (status != NOTIFY_STATUS_OK)
74 return (status);
75 status = notify_check(token, &ignore_first);
76 if (status != NOTIFY_STATUS_OK)
77 return (status);
81 syslog(LOG_ERR, "Initial audit status check failed (%s)",
114 int status; local
121 status
[all...]
/freebsd-10.0-release/contrib/apr-util/dbm/sdbm/
H A Dsdbm.c90 apr_status_t status; local
126 if ((status = apr_file_open(&db->dirf, dirname, flags, perms, p))
130 if ((status = apr_file_open(&db->pagf, pagname, flags, perms, p))
134 if ((status = apr_sdbm_lock(db, (db->flags & SDBM_RDONLY)
148 if ((status = apr_sdbm_unlock(db)) != APR_SUCCESS)
167 return status;
188 apr_status_t status; local
193 if ((status = apr_sdbm_lock(db, APR_FLOCK_SHARED)) != APR_SUCCESS)
194 return status;
196 if ((status
208 apr_status_t status; local
220 apr_status_t status; local
248 apr_status_t status; local
309 apr_status_t status; local
384 apr_status_t status; local
405 apr_status_t status; local
429 apr_status_t status; local
449 apr_status_t status; local
511 apr_status_t status; local
545 apr_status_t status; local
[all...]
/freebsd-10.0-release/contrib/pam_modules/pam_passwdqc/
H A Dpam_passwdqc.c138 int status; local
140 status = pam_get_item(pamh, PAM_CONV, &item);
141 if (status != PAM_SUCCESS)
142 return status;
163 int status; local
170 status = converse(pamh, style, buffer, &resp);
173 status = PAM_ABORT;
177 return status;
325 int status; local
328 status
[all...]
/freebsd-10.0-release/contrib/ofed/management/opensm/osmtest/
H A Dosmt_service.c73 ib_api_status_t status; local
129 status = osmv_query_sa(p_osmt->h_bind, &req);
130 if (status != IB_SUCCESS) {
132 "ib_query failed (%s)\n", ib_get_err_str(status));
136 status = context.result.status;
138 if (status != IB_SUCCESS) {
140 "ib_query failed (%s)\n", ib_get_err_str(status));
142 if (status == IB_REMOTE_ERROR) {
160 return status;
179 ib_api_status_t status; local
307 ib_api_status_t status; local
454 ib_api_status_t status = IB_SUCCESS; local
581 ib_api_status_t status = IB_SUCCESS; local
708 ib_api_status_t status = IB_SUCCESS; local
841 ib_api_status_t status = IB_SUCCESS; local
959 ib_api_status_t status = IB_SUCCESS; local
1083 ib_api_status_t status; local
1195 ib_api_status_t status; local
[all...]
/freebsd-10.0-release/tools/tools/nxge/
H A Dxge_info.c34 int status = EXIT_FAILURE; local
71 status = xge_get_pciconf();
73 status = xge_get_devconf();
75 status = xge_get_hwstats();
77 status = xge_get_registers();
79 status = xge_get_devstats();
81 status = xge_get_swstats();
83 status = xge_get_drvstats();
85 status = xge_get_drv_version();
87 status
132 int status = EXIT_FAILURE; local
189 int status = EXIT_FAILURE; local
227 int status = EXIT_FAILURE; local
265 int status = EXIT_FAILURE; local
300 int status = EXIT_FAILURE; local
352 int status = EXIT_FAILURE; local
390 int status = EXIT_FAILURE; local
431 int status = EXIT_FAILURE; local
468 int status = EXIT_FAILURE; local
506 int status = EXIT_FAILURE; local
544 int status = EXIT_FAILURE; local
580 int status = EXIT_FAILURE; local
[all...]
/freebsd-10.0-release/contrib/sendmail/contrib/
H A Dsmcontrol.pl155 # &munge_status -- turn machine readable status into human readable text
215 waitpid $pid, 0 or return "Could not get status of created process: $!\n";
242 # Error message or status message
248 my $status;
265 # Error message or status message
271 my $status;
288 # Error message or status message
294 my $status;
311 # Error message or status message
317 my $status;
[all...]
/freebsd-10.0-release/lib/libc/net/
H A Dnss_compat.c92 enum nss_status status; local
100 status = fn(name, grp, buffer, bufsize, errnop);
101 status = __nss_compat_result(status, *errnop);
102 if (status == NS_SUCCESS)
104 return (status);
117 enum nss_status status; local
125 status = fn(gid, grp, buffer, bufsize, errnop);
126 status = __nss_compat_result(status, *errno
141 enum nss_status status; local
193 enum nss_status status; local
218 enum nss_status status; local
242 enum nss_status status; local
[all...]
/freebsd-10.0-release/contrib/libpcap/
H A Drunlex.sh123 status=$?
124 if [ $status -ne 0 ]
127 # No. Exit with the failing exit status.
129 exit $status
153 status=$?
154 if [ $status -ne 0 ]
157 # No. Exit with the failing exit status.
159 exit $status
168 status=$?
169 if [ $status
[all...]
/freebsd-10.0-release/contrib/libpcap/tests/
H A Dreactivatetest.c42 int status = 0; local
53 status = pcap_activate(pd);
54 if (status != PCAP_ERROR_ACTIVATED) {
55 if (status == 0)
57 else if (status == PCAP_ERROR)
62 pcap_statustostr(status));
/freebsd-10.0-release/contrib/unbound/libunbound/python/doc/examples/
H A Dexample8-1.py11 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_MX, unbound.RR_CLASS_IN)
12 if status == 0 and result.havedata:
18 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
19 if status == 0 and result.havedata:
25 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_NS, unbound.RR_CLASS_IN)
26 if status == 0 and result.havedata:
/freebsd-10.0-release/contrib/unbound/libunbound/python/examples/
H A Dexample8-1.py41 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_MX, unbound.RR_CLASS_IN)
42 if status == 0 and result.havedata:
48 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
49 if status == 0 and result.havedata:
55 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_NS, unbound.RR_CLASS_IN)
56 if status == 0 and result.havedata:

Completed in 226 milliseconds

1234567891011>>