Searched refs:status (Results 76 - 100 of 3538) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dvsnprintf.c109 int status; local
112 status = checkit (buf, 10, "%s:%d", "foobar", 9);
113 VERIFY (status==8 && memcmp (buf, "foobar:9\0XXXXX\0", 15) == 0);
116 status = checkit (buf, 9, "%s:%d", "foobar", 9);
117 VERIFY (status==8 && memcmp (buf, "foobar:9\0XXXXX\0", 15) == 0);
120 status = checkit (buf, 8, "%s:%d", "foobar", 9);
121 VERIFY (status==8 && memcmp (buf, "foobar:\0XXXXXX\0", 15) == 0);
124 status = checkit (buf, 7, "%s:%d", "foobar", 9);
125 VERIFY (status==8 && memcmp (buf, "foobar\0XXXXXXX\0", 15) == 0);
128 status
[all...]
H A Dasprintf.c49 int status; local
53 status = vasprintf (buf, fmt, ap);
55 return status;
/freebsd-11-stable/tests/sys/mqueue/
H A Dmqtest1.c20 int status; local
29 status = mq_unlink(MQNAME);
30 if (status)
32 status = mq_getattr(mq, &attr2);
33 if (status)
42 status = mq_notify(mq, &sigev);
43 if (status)
45 status = mq_notify(mq, &sigev);
46 if (status == 0)
50 status
[all...]
/freebsd-11-stable/stand/efi/libefi/
H A Defi_driver_utils.c41 EFI_STATUS status; local
47 status = BS->LocateHandle(ByProtocol, filter, NULL,
50 if(status != EFI_BUFFER_TOO_SMALL) {
51 return (status);
57 status = BS->LocateHandle(ByProtocol, filter, NULL,
60 if(EFI_ERROR(status)) {
61 return (status);
70 return (status);
76 EFI_STATUS status; local
80 status
[all...]
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dhash.exp9 exit status 0
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/profile-n/
H A Dtst.ufuncsort.ksh60 status=$?
61 if [ "$status" -ne 0 ]; then
63 exit $status
66 exit $status
/freebsd-11-stable/lib/libc/uuid/
H A Duuid_from_string.c44 uuid_from_string(const char *s, uuid_t *u, uint32_t *status) argument
50 uuid_create_nil(u, status);
55 if (status != NULL)
56 *status = uuid_s_invalid_string_uuid;
86 if (status != NULL)
87 *status = uuid_s_bad_version;
89 if (status != NULL)
90 *status = uuid_s_ok;
H A Duuid_equal.c39 uuid_equal(const uuid_t *a, const uuid_t *b, uint32_t *status) argument
42 if (status != NULL)
43 *status = uuid_s_ok;
H A Duuid_is_nil.c38 uuid_is_nil(const uuid_t *u, uint32_t *status) argument
42 if (status)
43 *status = uuid_s_ok;
/freebsd-11-stable/contrib/tzdata/
H A Dchecklinks.awk19 status = 1
33 status = 1
43 status = 1
47 exit status
/freebsd-11-stable/tests/sys/kern/
H A Dwaitpid_nohang.c40 int status, r; local
49 status = 42;
50 pid = waitpid(child, &status, WNOHANG);
52 ATF_CHECK(status == 42);
59 status = -1;
60 pid = waitpid(child, &status, WNOHANG);
62 ATF_CHECK(WIFSIGNALED(status) && WTERMSIG(status) == SIGTERM);
/freebsd-11-stable/contrib/openpam/lib/libpam/
H A Dopenpam_free_data.c58 int status)
63 (void)status;
56 openpam_free_data(pam_handle_t *pamh, void *data, int status) argument
/freebsd-11-stable/crypto/heimdal/appl/test/
H A Dtcp_server.c43 krb5_error_code status; local
53 status = krb5_auth_con_init (context, &auth_context);
54 if (status)
55 krb5_err (context, 1, status, "krb5_auth_con_init");
57 status = krb5_auth_con_setaddrs_from_fd (context,
61 if (status)
62 krb5_err (context, 1, status, "krb5_auth_con_setaddrs_from_fd");
67 status = krb5_sname_to_principal (context,
72 if (status)
73 krb5_err (context, 1, status, "krb5_sname_to_principa
[all...]
/freebsd-11-stable/contrib/ncurses/form/
H A Dfld_stat.c39 | Function : int set_field_status(FIELD *field, bool status)
47 set_field_status(FIELD *field, bool status) argument
49 T((T_CALLED("set_field_status(%p,%d)"), (void *)field, status));
53 if (status)
76 returnBool((Normalize_Field(field)->status & _CHANGED) ? TRUE : FALSE);
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Donce.c34 if (controller->status == ISC_ONCE_INIT_NEEDED) {
37 if (controller->status == ISC_ONCE_INIT_NEEDED) {
39 controller->status = ISC_ONCE_INIT_DONE;
42 while (controller->status == ISC_ONCE_INIT_NEEDED) {
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-helper-fpa.c141 int status; local
151 status = __cvmx_helper_initialize_fpa_pool(pip_pool, pip_size, pip_buffers,
153 if (status)
154 return status;
159 status = __cvmx_helper_initialize_fpa_pool(wqe_pool, wqe_size, wqe_entries,
161 if (status)
162 return status;
167 status = __cvmx_helper_initialize_fpa_pool(pko_pool, pko_size, pko_buffers,
169 if (status)
170 return status;
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/
H A Dtst.DataModel32.d.ksh67 status=$?
69 if [ "$status" -ne 0 ]; then
73 exit $status
H A Dtst.DataModel64.d.ksh68 status=$?
70 if [ "$status" -ne 0 ]; then
74 exit $status
H A Dtst.DefineNameWithCPP.d.ksh62 status=$?
64 if [ "$status" -ne 0 ]; then
68 exit $status
H A Dtst.ELFGenerationOut.d.ksh60 status=$?
62 if [ "$status" -ne 0 ]; then
64 exit $status
H A Dtst.PreprocessorStatement.d.ksh63 status=$?
65 if [ "$status" -ne 0 ]; then
69 exit $status
H A Dtst.QuietMode.d.ksh59 status=$?
61 if [ "$status" -ne 0 ]; then
65 exit $status
H A Dtst.TestCompile.d.ksh61 status=$?
63 if [ "$status" -ne 0 ]; then
67 exit $status
H A Dtst.UnDefineNameWithCPP.d.ksh64 status=$?
66 if [ "$status" -ne 0 ]; then
71 exit $status
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dasprintf.c49 int status; local
53 status = vasprintf (buf, fmt, ap);
55 return status;

Completed in 132 milliseconds

1234567891011>>