Searched refs:status (Results 451 - 475 of 3538) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/ofed/opensm/include/vendor/
H A Dosm_vendor_mlx_sender.h107 IN uint8_t nak_type, IN uint8_t status);
112 * DESCRIPTION Mark an error status and signal the sender thread to handle it
117 IN ib_api_status_t status)
119 p_send_ctx->status = status;
116 osmv_rmpp_snd_error(IN osmv_rmpp_send_ctx_t * p_send_ctx, IN ib_api_status_t status) argument
/freebsd-11-stable/contrib/ofed/libibverbs/
H A Denum_strs.c99 const char *ibv_wc_status_str(enum ibv_wc_status status) argument
126 if (status < IBV_WC_SUCCESS || status > IBV_WC_GENERAL_ERR)
129 return wc_status_str[status];
/freebsd-11-stable/contrib/ofed/opensm/complib/
H A Dcl_dispatcher.c162 cl_status_t status; local
168 status = cl_spinlock_init(&p_disp->lock);
169 if (status != CL_SUCCESS) {
171 return (status);
175 status = cl_qpool_init(&p_disp->msg_pool, CL_DISP_INITIAL_MSG_COUNT,
178 if (status != CL_SUCCESS) {
180 return (status);
183 status = cl_ptr_vector_init(&p_disp->reg_vec, CL_DISP_INITIAL_REG_COUNT,
185 if (status != CL_SUCCESS) {
187 return (status);
205 cl_status_t status; local
[all...]
/freebsd-11-stable/tests/sys/geom/class/mirror/
H A Dconf.sh17 while $(gmirror status -s $name | grep -q SYNCHRONIZING); do
/freebsd-11-stable/contrib/netbsd-tests/kernel/kqueue/
H A Dt_proc3.c60 int kq, status; local
76 RL(waitpid(pid, &status, 0));
77 ATF_REQUIRE(WIFEXITED(status));
78 ATF_REQUIRE_EQ(WEXITSTATUS(status), EXIT_SUCCESS);
/freebsd-11-stable/libexec/ypxfr/
H A Dypxfr_getmap.c66 unsigned long status; local
86 (xdrproc_t)xdr_ypresp_all_seq, &status, timeout);
90 if (status == YP_NOMORE)
93 if (status != YP_TRUE) {
/freebsd-11-stable/sbin/hastd/
H A Dhooks.h45 void hook_check_one(pid_t pid, int status);
/freebsd-11-stable/contrib/telnet/libtelnet/
H A Dauth.h69 int (*status)(struct XauthP *, char *, int); member in struct:XauthP
/freebsd-11-stable/tests/sys/kern/
H A Dpdeathsig.c99 int status; local
119 waitpid(rc, &status, 0);
120 ATF_CHECK_EQ(0, status);
126 int status; local
151 waitpid(rc, &status, 0);
152 ATF_CHECK_EQ(0, status);
234 int status; local
295 waitpid(c_pid, &status, 0);
296 assert(WIFSTOPPED(status));
297 assert(WSTOPSIG(status)
[all...]
/freebsd-11-stable/contrib/atf/atf-c/
H A Dutils_test.c241 int status; local
242 ATF_REQUIRE(waitpid(pid, &status, 0) != -1);
243 ATF_REQUIRE(WIFEXITED(status));
244 ATF_REQUIRE_EQ(EXIT_SUCCESS, WEXITSTATUS(status));
410 int status; local
411 ATF_REQUIRE(waitpid(control, &status, 0) != -1);
412 ATF_REQUIRE(WIFEXITED(status));
413 ATF_REQUIRE_EQ(EXIT_SUCCESS, WEXITSTATUS(status));
454 int status; local
455 ATF_REQUIRE(waitpid(control, &status,
469 int status; local
484 int status; local
499 int status; local
516 int status; local
[all...]
/freebsd-11-stable/contrib/atf/atf-c++/
H A Dutils_test.cpp232 int status; local
233 ATF_REQUIRE(waitpid(pid, &status, 0) != -1);
234 ATF_REQUIRE(WIFEXITED(status));
235 ATF_REQUIRE_EQ(EXIT_SUCCESS, WEXITSTATUS(status));
350 int status; local
351 ATF_REQUIRE(waitpid(control, &status, 0) != -1);
352 ATF_REQUIRE(WIFEXITED(status));
353 ATF_REQUIRE_EQ(EXIT_SUCCESS, WEXITSTATUS(status));
394 int status; local
395 ATF_REQUIRE(waitpid(control, &status,
409 int status; local
424 int status; local
439 int status; local
456 int status; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/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);
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/tools/
H A Ddtest.sh25 local dflags exe exstatus pid retval status
55 status=$?
57 if [ $status -ne $exstatus ]; then
58 ERRMSG="dtrace exited with status ${status}, expected ${exstatus}"
74 status=$?
76 if [ $status -ne $exstatus ]; then
77 ERRMSG="script exited with status ${status}, expected ${exstatus}"
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_guid_mgr.c63 ib_api_status_t status; local
74 status = osm_req_set(sa->sm, osm_physp_get_dr_path_ptr(p_port->p_physp),
79 if (status != IB_SUCCESS)
82 ib_get_err_str(status));
113 int status = 1; local
122 status = 0;
125 return status;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DHost.h36 Exit, // The status represents the return code from normal
38 Signal, // The status represents the signal number that caused
40 Stop, // The status represents the signal number that caused the
45 uint8_t status; member in namespace:lldb_private
47 WaitStatus(Type type, uint8_t status) : type(type), status(status) {} argument
53 return a.type == b.type && a.status == b.status;
67 int status)> // Exi
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dmacos_keychain.c80 OSStatus status;
86 status = SecKeychainFindGenericPassword(NULL, (int) strlen(realmstring),
91 if (status)
93 if (status == errSecItemNotFound)
94 status = SecKeychainAddGenericPassword(NULL, (int) strlen(realmstring),
103 status = SecKeychainItemModifyAttributesAndData(item, NULL,
112 *done = (status == 0);
129 OSStatus status;
138 status = SecKeychainFindGenericPassword(NULL, (int) strlen(realmstring),
147 if (status !
79 OSStatus status; local
128 OSStatus status; local
[all...]
/freebsd-11-stable/gnu/usr.bin/grep/
H A Derror.c127 Exit with status STATUS if it is nonzero. */
132 error (int status, int errnum, const char *message, ...) argument
134 error (status, errnum, message, va_alist)
135 int status;
184 if (status)
185 exit (status);
195 error_at_line (int status, int errnum, const char *file_name,
198 error_at_line (status, errnum, file_name, line_number, message, va_alist)
199 int status;
267 if (status)
194 error_at_line(int status, int errnum, const char *file_name, unsigned int line_number, const char *message, ...) argument
[all...]
/freebsd-11-stable/sys/dev/liquidio/base/
H A Dlio_response_manager.c101 uint32_t status; local
124 status = LIO_REQUEST_PENDING;
138 * 4. if non-FF, use the low 32-bit status code
139 * 5. if either byte 0 or byte 7 is FF, don't use status
144 /* retrieve 16-bit firmware status */
145 status = (uint32_t)(status64 &
147 if (status) {
148 status = LIO_FW_STATUS_CODE(
149 status);
152 status
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/gen/posix_spawn/
H A Dt_spawn.c149 int err, status; local
158 waitpid(pid, &status, 0);
159 ATF_REQUIRE(WIFEXITED(status) && WEXITSTATUS(status) == 0);
164 waitpid(pid, &status, 0);
165 ATF_REQUIRE(WIFEXITED(status) && WEXITSTATUS(status) == 1);
170 waitpid(pid, &status, 0);
171 ATF_REQUIRE(WIFEXITED(status) && WEXITSTATUS(status)
[all...]
/freebsd-11-stable/usr.sbin/mfiutil/
H A Dmfi_flash.c97 uint8_t mbox[4], status; local
134 mfi_dcmd_command(fd, MFI_DCMD_FLASH_FW_OPEN, NULL, 0, mbox, 4, &status);
135 if (status != MFI_STAT_OK) {
136 warnx("Failed to alloc flash memory: %s", mfi_status(status));
161 mbox, 4, &status);
162 if (status != MFI_STAT_OK) {
163 warnx("Flash download failed: %s", mfi_status(status));
177 NULL, 0, &status);
178 if (status != MFI_STAT_OK) {
179 printf("failed:\n\t%s\n", mfi_status(status));
[all...]
/freebsd-11-stable/tests/sys/geom/class/eli/
H A Donetime_test.sh15 atf_check dd if=rnd of=/dev/${md}.eli bs=${secsize} count=${sectors} status=none
17 md_rnd=`dd if=rnd bs=${secsize} count=${sectors} status=none | md5`
19 md_ddev=`dd if=/dev/${md}.eli bs=${secsize} count=${sectors} status=none | md5`
21 md_edev=`dd if=/dev/${md} bs=${secsize} count=${sectors} status=none | md5`
44 dd if=/dev/random of=rnd bs=${MAX_SECSIZE} count=${sectors} status=none
63 atf_check dd if=rnd of=/dev/${md}.eli bs=${secsize} count=${sectors} status=none
65 md_rnd=`dd if=rnd bs=${secsize} count=${sectors} status=none | md5`
67 md_ddev=`dd if=/dev/${md}.eli bs=${secsize} count=${sectors} status=none | md5`
88 status=none
115 atf_check dd if=/dev/${md}.eli of=/dev/null status
[all...]
/freebsd-11-stable/sys/dev/ixgbe/
H A Dixgbe_x540.c214 s32 status; local
221 status = hw->mac.ops.stop_adapter(hw);
222 if (status != IXGBE_SUCCESS)
229 status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask);
230 if (status != IXGBE_SUCCESS) {
232 "semaphore failed with %d", status);
250 status = IXGBE_ERR_RESET_FAILED;
304 return status;
398 s32 status = IXGBE_SUCCESS; local
403 status
424 s32 status = IXGBE_SUCCESS; local
449 s32 status = IXGBE_SUCCESS; local
475 s32 status = IXGBE_SUCCESS; local
579 s32 status; local
641 s32 status; local
690 s32 status; local
738 s32 status = IXGBE_ERR_EEPROM; local
887 s32 status = IXGBE_ERR_EEPROM; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dgthr-win32.h256 int status; local
258 status = WaitForSingleObject ((HANDLE) (mutex->backend), INFINITE);
259 if (status != WAIT_OBJECT_0 && status != WAIT_ABANDONED)
269 int status; local
271 status = WaitForSingleObject ((HANDLE) (mutex->backend), 0);
272 if (status != WAIT_OBJECT_0 && status != WAIT_ABANDONED)
567 int status = 0; local
575 status
620 int status = 0; local
641 int status = 0; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/badioctl/
H A Dbadioctl.c118 int status; local
124 while (waitpid(child, &status, WEXITED) != child)
127 if (WIFEXITED(status)) {
130 * the same status code.
132 exit(WEXITSTATUS(status));
139 WTERMSIG(status));
/freebsd-11-stable/sys/dev/drm/
H A Dvia_irq.c115 u32 status; local
121 status = VIA_READ(VIA_REG_INTERRUPT);
122 if (status & VIA_IRQ_VBLANK_PENDING) {
143 if (status & cur_irq->pending_mask) {
157 VIA_WRITE(VIA_REG_INTERRUPT, status);
168 u32 status; local
172 status = VIA_READ(VIA_REG_INTERRUPT);
173 VIA_WRITE(VIA_REG_INTERRUPT, status |
181 u32 status; local
188 status
265 u32 status; local
314 u32 status; local
334 u32 status; local
[all...]

Completed in 329 milliseconds

<<11121314151617181920>>