Searched refs:status (Results 151 - 175 of 3538) sorted by relevance

1234567891011>>

/freebsd-11-stable/usr.sbin/lpr/common_source/
H A Dprintcap.c99 int status; local
102 if ((status = cgetent(&bp, printcapdb, printer)) < 0)
103 return status;
104 status = getprintcap_int(bp, pp);
106 return status;
110 * Map the status values returned by cgetfirst/cgetnext into those
116 firstnextmap(int *status) argument
118 switch (*status) {
122 *status = 0;
125 *status
145 int status; local
167 int status; local
373 int status; local
397 int status; local
[all...]
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dexport.exp6 exit status 0
H A Dorder.exp4 exit status 0
H A Dsysv.exp7 exit status 0
H A Dvarshell.exp1 make: "varshell.mk" line 5: warning: "/bin/no/such/command 2> /dev/null" returned non-zero status
2 make: "varshell.mk" line 8: warning: "false" returned non-zero status
3 make: "varshell.mk" line 9: warning: "echo "output before the error"; false" returned non-zero status
10 exit status 0
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/proc/
H A Dtst.create.ksh64 status=$?
67 exit $status
H A Dtst.exec.ksh70 status=$?
73 exit $status
H A Dtst.exitexit.ksh64 status=$?
67 exit $status
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i86xpv/xdt/
H A Dtst.hvmenable.ksh62 status=$?
64 exit $status
/freebsd-11-stable/lib/libc/stdlib/
H A Dexit.c59 exit(int status) argument
75 _exit(status);
/freebsd-11-stable/lib/libc/sys/
H A Dwait4.c44 wait4(pid_t pid, int *status, int options, struct rusage *ru) argument
48 __libc_interposing[INTERPOS_wait4])(pid, status, options, ru));
/freebsd-11-stable/gnu/usr.bin/grep/
H A Dcloseout.h12 void close_stdout_set_status PARAMS ((int status));
15 void close_stdout_status PARAMS ((int status));
H A Dcloseout.c53 /* Set the value to be used for the exit status when close_stdout is called.
57 close_stdout_set_status (int status) argument
59 default_exit_status = status;
70 /* Close standard output, exiting with status STATUS on failure.
73 suppose that you go to the extreme of checking the return status
91 on being able to detect failure in other tools via their exit status. */
94 close_stdout_status (int status) argument
110 error (status, e, "%s: %s", quotearg_colon (file_name), write_error);
112 error (status, e, "%s", write_error);
116 /* Close standard output, exiting with status EXIT_FAILUR
[all...]
/freebsd-11-stable/gnu/usr.bin/grep/tests/
H A Dspencer1.awk7 # printf ("status=`echo '%s'| { ${GREP} -E -e '%s' > /dev/null 2>&1; echo $?; cat >/dev/null; }`\n",$3, $2);
8 printf ("status=`echo '%s'| { ${GREP} -E -e '%s' >/dev/null 2>&1 ; echo $?; }`\n",$3, $2);
9 printf ("if test $status -ne %s ; then\n", $1);
/freebsd-11-stable/tools/regression/zfs/zpool/create/
H A Dspare.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}
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-11-stable/contrib/ofed/libibumad/
H A Dumad_str.h53 const char * umad_common_mad_status_str(__be16 status);
54 const char * umad_sa_mad_status_str(__be16 status);
/freebsd-11-stable/contrib/libpcap/testprogs/
H A Dthreadsignaltest.c132 int status; local
150 status = pcap_dispatch(pd, -1, countme,
152 if (status < 0)
154 if (status != 0) {
156 status, packet_count);
160 if (status == -2) {
170 if (status == -1) {
190 int status; local
228 status = pcap_set_snaplen(pd, 65535);
229 if (status !
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ustack/
H A Dtst.depth.ksh66 status=$?
67 if [ "$status" -ne 0 ]; then
69 exit $status
97 status=$?
102 status=1
106 if [ "$status" -eq 0 ]; then
110 exit $status
/freebsd-11-stable/tests/sys/mqueue/
H A Dmqtest5.c31 int status; local
56 status = mq_getattr(mq, &attr);
57 if (status)
78 status = mq_notify(mq, &sigev);
79 if (status)
81 status = sigwaitinfo(&set, &info);
82 if (status == -1)
86 status = mq_receive(mq, buf, attr.mq_msgsize, &prio);
87 if (status == -1)
113 status
[all...]
H A Dmqtest3.c32 int status; local
45 status = mq_getattr(mq, &attr);
46 if (status)
67 status = select(mq_getfd_np(mq) + 1, &set, NULL,
69 if (status != 1)
71 status = mq_receive(mq, buf, attr.mq_msgsize, &prio);
72 if (status == -1)
99 status = select(mq_getfd_np(mq) + 1, NULL, &set,
101 if (status != 1)
103 status
[all...]
/freebsd-11-stable/lib/libc/uuid/
H A Duuid_to_string.c39 * NOTE: The references given above do not have a status code for when
40 * the string could not be allocated. The status code has been
44 uuid_to_string(const uuid_t *u, char **s, uint32_t *status) argument
48 if (status != NULL)
49 *status = uuid_s_ok;
65 if (*s == NULL && status != NULL)
66 *status = uuid_s_no_memory;
/freebsd-11-stable/usr.bin/bmake/tests/syntax/enl/
H A DMakefile10 ${PACKAGE}FILES+= expected.status.1
11 ${PACKAGE}FILES+= expected.status.2
12 ${PACKAGE}FILES+= expected.status.3
13 ${PACKAGE}FILES+= expected.status.4
14 ${PACKAGE}FILES+= expected.status.5
/freebsd-11-stable/contrib/wpa/src/pae/
H A Dieee802_1x_cp.h27 void ieee802_1x_cp_set_electedself(void *cp_ctx, Boolean status);
34 void ieee802_1x_cp_set_usingreceivesas(void *cp_ctx, Boolean status);
35 void ieee802_1x_cp_set_allreceiving(void *cp_ctx, Boolean status);
36 void ieee802_1x_cp_set_servertransmitting(void *cp_ctx, Boolean status);
37 void ieee802_1x_cp_set_usingtransmitas(void *cp_ctx, Boolean status);
/freebsd-11-stable/contrib/serf/
H A Dcontext.c64 apr_status_t status; local
74 if ((status = serf__conn_update_pollset(conn)) != APR_SUCCESS)
75 return status;
144 /* ### TODO: As of APR 1.4.x apr_pollset_create_ex can return a status
147 ### the possibility of returning status to the caller.
171 /* Initialize progress status */
189 apr_status_t status = APR_SUCCESS; local
190 if ((status = serf__open_connections(ctx)) != APR_SUCCESS)
191 return status;
193 if ((status
205 apr_status_t status = APR_SUCCESS; local
273 apr_status_t status; local
[all...]
/freebsd-11-stable/contrib/groff/
H A DMakefile.sub2 config.status \
20 config.status: configure
21 $(SHELL) config.status --recheck
30 stamp-h: config.hin config.status
31 $(SHELL) config.status

Completed in 189 milliseconds

1234567891011>>