| /freebsd-12-stable/contrib/subversion/subversion/svn/ |
| D | status.c | 42 generate_status_code(enum svn_wc_status_kind status) in generate_status_code() argument 44 switch (status) in generate_status_code() 66 combined_status(const svn_client_status_t *status) in combined_status() argument 68 enum svn_wc_status_kind new_status = status->node_status; in combined_status() 70 switch (status->node_status) in combined_status() 73 if (!status->versioned && status->conflicted) in combined_status() 82 new_status = status->text_status; in combined_status() 94 combined_repos_status(const svn_client_status_t *status) in combined_repos_status() argument 96 if (status->repos_node_status == svn_wc_status_modified) in combined_repos_status() 97 return status->repos_text_status; in combined_repos_status() [all …]
|
| /freebsd-12-stable/contrib/processor-trace/libipt/test/src/ |
| D | ptunit-image.c | 100 struct ifix_status status[ifix_nsecs]; member 126 struct ifix_status *status, in ifix_init_section() argument 135 section->status = status; in ifix_init_section() 142 status->deleted = 0; in ifix_init_section() 143 status->bad_put = 0; in ifix_init_section() 144 status->mapping = mapping; in ifix_init_section() 145 status->ifix = ifix; in ifix_init_section() 159 ifix_init_section(&ifix->section[index], filename, &ifix->status[index], in ifix_add_section() 233 struct ifix_status *status; in pt_section_put() local 239 status = section->status; in pt_section_put() [all …]
|
| D | ptunit-retstack.c | 39 int status; in init() local 45 status = pt_retstack_is_empty(&retstack); in init() 46 ptu_int_ne(status, 0); in init() 62 int status; in query() local 66 status = pt_retstack_push(&retstack, 0x42ull); in query() 67 ptu_int_eq(status, 0); in query() 69 status = pt_retstack_is_empty(&retstack); in query() 70 ptu_int_eq(status, 0); in query() 72 status = pt_retstack_pop(&retstack, &ip); in query() 73 ptu_int_eq(status, 0); in query() [all …]
|
| /freebsd-12-stable/contrib/processor-trace/libipt/src/ |
| D | pt_block_decoder.c | 50 int status; in pt_blk_status() local 55 status = decoder->status; in pt_blk_status() 69 if ((status & pts_eos) && !decoder->process_event) in pt_blk_status() 82 decoder->status = 0; in pt_blk_reset() 260 int status, errcode; in pt_blk_indirect_branch() local 267 status = pt_qry_indirect_branch(&decoder->query, ip); in pt_blk_indirect_branch() 268 if (status < 0) in pt_blk_indirect_branch() 269 return status; in pt_blk_indirect_branch() 277 return status; in pt_blk_indirect_branch() 286 int status, errcode; in pt_blk_cond_branch() local [all …]
|
| D | pt_insn_decoder.c | 53 decoder->status = 0; in pt_insn_reset() 68 int status; in pt_insn_status() local 73 status = decoder->status; in pt_insn_status() 87 if ((status & pts_eos) && !decoder->process_event) in pt_insn_status() 256 int status, errcode; in pt_insn_indirect_branch() local 263 status = pt_qry_indirect_branch(&decoder->query, ip); in pt_insn_indirect_branch() 264 if (status < 0) in pt_insn_indirect_branch() 265 return status; in pt_insn_indirect_branch() 273 return status; in pt_insn_indirect_branch() 282 int status, errcode; in pt_insn_cond_branch() local [all …]
|
| /freebsd-12-stable/sys/dev/ice/ |
| D | ice_nvm.c | 100 enum ice_status status; in ice_read_flat_nvm() local 133 status = ice_aq_read_nvm(hw, ICE_AQC_NVM_START_POINT, in ice_read_flat_nvm() 137 if (status) in ice_read_flat_nvm() 145 return status; in ice_read_flat_nvm() 207 enum ice_status status; in ice_aq_erase_nvm() local 215 status = ice_aq_read_nvm(hw, 0, 2 * module_typeid + 2, 2, &len, true, in ice_aq_erase_nvm() 217 if (status) in ice_aq_erase_nvm() 218 return status; in ice_aq_erase_nvm() 250 enum ice_status status; in ice_aq_read_nvm_cfg() local 261 status = ice_aq_send_cmd(hw, &desc, data, buf_size, cd); in ice_aq_read_nvm_cfg() [all …]
|
| /freebsd-12-stable/tests/sys/kern/ |
| D | ptrace_test.c | 122 int status; in attach_child() local 126 wpid = waitpid(pid, &status, 0); in attach_child() 128 ATF_REQUIRE(WIFSTOPPED(status)); in attach_child() 129 ATF_REQUIRE(WSTOPSIG(status) == SIGSTOP); in attach_child() 172 int status; in ATF_TC_BODY() local 185 wpid = waitpid(child, &status, 0); in ATF_TC_BODY() 187 ATF_REQUIRE(WIFSTOPPED(status)); in ATF_TC_BODY() 188 ATF_REQUIRE(WSTOPSIG(status) == SIGSTOP); in ATF_TC_BODY() 194 wpid = waitpid(child, &status, 0); in ATF_TC_BODY() 196 ATF_REQUIRE(WIFEXITED(status)); in ATF_TC_BODY() [all …]
|
| /freebsd-12-stable/crypto/heimdal/appl/test/ |
| D | uu_client.c | 48 krb5_error_code status; in proto() local 65 status = krb5_init_context(&context); in proto() 66 if (status) in proto() 67 errx(1, "krb5_init_context failed: %d", status); in proto() 69 status = krb5_cc_default (context, &ccache); in proto() 70 if (status) in proto() 71 krb5_err(context, 1, status, "krb5_cc_default"); in proto() 73 status = krb5_auth_con_init (context, &auth_context); in proto() 74 if (status) in proto() 75 krb5_err(context, 1, status, "krb5_auth_con_init"); in proto() [all …]
|
| D | uu_server.c | 47 krb5_error_code status; in proto() local 63 status = krb5_auth_con_init (context, &auth_context); in proto() 64 if (status) in proto() 65 krb5_err(context, 1, status, "krb5_auth_con_init"); in proto() 75 status = krb5_auth_con_setaddrs (context, in proto() 79 if (status) in proto() 80 krb5_err(context, 1, status, "krb5_auth_con_setaddr"); in proto() 82 status = krb5_read_message(context, &sock, &client_name); in proto() 83 if(status) in proto() 84 krb5_err(context, 1, status, "krb5_read_message"); in proto() [all …]
|
| /freebsd-12-stable/sys/dev/ipmi/ |
| D | ipmi_kcs.c | 62 int status, start = ticks; in kcs_wait() local 65 status = INB(sc, KCS_CTL_STS); in kcs_wait() 66 while (ticks - start < MAX_TIMEOUT && (status & mask) != value) { in kcs_wait() 72 status = INB(sc, KCS_CTL_STS); in kcs_wait() 76 return (status); in kcs_wait() 94 kcs_clear_obf(struct ipmi_softc *sc, int status) in kcs_clear_obf() argument 99 if (status & KCS_STATUS_OBF) { in kcs_clear_obf() 107 int retry, status; in kcs_error() local 113 status = kcs_wait_for_ibf(sc, 0); in kcs_error() 119 status = kcs_wait_for_ibf(sc, 0); in kcs_error() [all …]
|
| /freebsd-12-stable/sys/dev/isci/scil/ |
| D | scic_sds_stp_remote_device.c | 98 SCI_STATUS status; in scic_sds_stp_remote_device_complete_request() local 100 status = scic_sds_io_request_complete(the_request); in scic_sds_stp_remote_device_complete_request() 102 if (status == SCI_SUCCESS) in scic_sds_stp_remote_device_complete_request() 104 status = scic_sds_port_complete_io( in scic_sds_stp_remote_device_complete_request() 108 if (status == SCI_SUCCESS) in scic_sds_stp_remote_device_complete_request() 132 if (status != SCI_SUCCESS) in scic_sds_stp_remote_device_complete_request() 138 this_device->owning_port, this_device, the_request, status in scic_sds_stp_remote_device_complete_request() 142 return status; in scic_sds_stp_remote_device_complete_request() 167 SCI_STATUS status; in scic_sds_stp_remote_device_ready_substate_start_request_handler() local 172 status = this_device->owning_port->state_handlers->start_io_handler( in scic_sds_stp_remote_device_ready_substate_start_request_handler() [all …]
|
| D | sati.c | 391 SATI_STATUS status = SATI_FAILURE; in sati_translate_command() local 472 status = sati_report_luns_translate_command( in sati_translate_command() 480 status = sati_inquiry_translate_command( in sati_translate_command() 488 status = sati_mode_sense_6_translate_command( in sati_translate_command() 494 status = sati_mode_sense_10_translate_command( in sati_translate_command() 502 status = sati_mode_select_6_translate_command( in sati_translate_command() 508 status = sati_mode_select_10_translate_command( in sati_translate_command() 516 status = sati_test_unit_ready_translate_command( in sati_translate_command() 524 status = sati_read_capacity_10_translate_command( in sati_translate_command() 532 status = sati_read_capacity_16_translate_command( in sati_translate_command() [all …]
|
| /freebsd-12-stable/tools/regression/zfs/zpool/create/ |
| D | option-f_type_mismatch.t | 14 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 -x ${name0} [all …]
|
| D | option-f_replication_level_mismatch_1.t | 13 expect_fl ${ZPOOL} status -x ${name0} 17 expect_ok ${ZPOOL} status -x ${name0} 18 expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0} 35 expect "${exp}" ${ZPOOL} status ${name0} 37 expect_fl ${ZPOOL} status -x ${name0} 41 expect_fl ${ZPOOL} status -x ${name0} 45 expect_ok ${ZPOOL} status -x ${name0} 46 expect "pool '${name0}' is healthy" ${ZPOOL} status -x ${name0} 63 expect "${exp}" ${ZPOOL} status ${name0} 65 expect_fl ${ZPOOL} status -x ${name0} [all …]
|
| /freebsd-12-stable/sys/dev/ixgbe/ |
| D | ixgbe_x550.c | 142 s32 status; in ixgbe_read_pe() local 144 status = ixgbe_read_i2c_byte_unlocked(hw, reg, IXGBE_PE, value); in ixgbe_read_pe() 145 if (status != IXGBE_SUCCESS) in ixgbe_read_pe() 147 "port expander access failed with %d\n", status); in ixgbe_read_pe() 148 return status; in ixgbe_read_pe() 161 s32 status; in ixgbe_write_pe() local 163 status = ixgbe_write_i2c_byte_unlocked(hw, reg, IXGBE_PE, value); in ixgbe_write_pe() 164 if (status != IXGBE_SUCCESS) in ixgbe_write_pe() 166 "port expander access failed with %d\n", status); in ixgbe_write_pe() 167 return status; in ixgbe_write_pe() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/ |
| D | z_Linux_util.cpp | 388 int status; in __kmp_terminate_thread() local 396 status = pthread_cancel(th->th.th_info.ds.ds_thread); in __kmp_terminate_thread() 397 if (status != 0 && status != ESRCH) { in __kmp_terminate_thread() 398 __kmp_fatal(KMP_MSG(CantTerminateWorkerThread), KMP_ERR(status), in __kmp_terminate_thread() 414 int status; in __kmp_set_stack_info() local 424 status = pthread_attr_init(&attr); in __kmp_set_stack_info() 425 KMP_CHECK_SYSFAIL("pthread_attr_init", status); in __kmp_set_stack_info() 427 status = pthread_attr_get_np(pthread_self(), &attr); in __kmp_set_stack_info() 428 KMP_CHECK_SYSFAIL("pthread_attr_get_np", status); in __kmp_set_stack_info() 430 status = pthread_getattr_np(pthread_self(), &attr); in __kmp_set_stack_info() [all …]
|
| /freebsd-12-stable/contrib/apr-util/dbm/sdbm/ |
| D | sdbm.c | 90 apr_status_t status; in prep() local 127 if ((status = apr_file_open(&db->dirf, dirname, flags, perms, p)) in prep() 131 if ((status = apr_file_open(&db->pagf, pagname, flags, perms, p)) in prep() 135 if ((status = apr_sdbm_lock(db, (db->flags & SDBM_RDONLY) in prep() 149 if ((status = apr_sdbm_unlock(db)) != APR_SUCCESS) in prep() 168 return status; in prep() 189 apr_status_t status; in apr_sdbm_fetch() local 194 if ((status = apr_sdbm_lock(db, APR_FLOCK_SHARED)) != APR_SUCCESS) in apr_sdbm_fetch() 195 return status; in apr_sdbm_fetch() 197 if ((status = getpage(db, exhash(key), 0, 1)) == APR_SUCCESS) { in apr_sdbm_fetch() [all …]
|
| /freebsd-12-stable/contrib/pam_modules/pam_passwdqc/ |
| D | pam_passwdqc.c | 138 int status; in converse() local 140 status = pam_get_item(pamh, PAM_CONV, &item); in converse() 141 if (status != PAM_SUCCESS) in converse() 142 return status; in converse() 163 int status; in say() local 170 status = converse(pamh, style, buffer, &resp); in say() 173 status = PAM_ABORT; in say() 177 return status; in say() 325 int status; in pam_sm_chauthtok() local 328 status = parse(¶ms, pamh, argc, argv); in pam_sm_chauthtok() [all …]
|
| /freebsd-12-stable/contrib/gdb/gdb/ |
| D | lin-lwp.c | 134 status_to_str (int status) in status_to_str() argument 138 if (WIFSTOPPED (status)) in status_to_str() 140 strsignal (WSTOPSIG (status))); in status_to_str() 141 else if (WIFSIGNALED (status)) in status_to_str() 143 strsignal (WSTOPSIG (status))); in status_to_str() 145 snprintf (buf, sizeof (buf), "%d (exited)", WEXITSTATUS (status)); in status_to_str() 305 int status; in lin_lwp_attach_lwp() local 316 pid = waitpid (GET_LWP (ptid), &status, 0); in lin_lwp_attach_lwp() 320 pid = waitpid (GET_LWP (ptid), &status, __WCLONE); in lin_lwp_attach_lwp() 325 && WIFSTOPPED (status) && WSTOPSIG (status)); in lin_lwp_attach_lwp() [all …]
|
| /freebsd-12-stable/contrib/netbsd-tests/kernel/ |
| D | t_ptrace_wait.h | 224 validate_status_exited(int status, int expected) in validate_status_exited() argument 226 ATF_REQUIRE_MSG(WIFEXITED(status), "Reported !exited process"); in validate_status_exited() 227 ATF_REQUIRE_MSG(!WIFCONTINUED(status), "Reported continued process"); in validate_status_exited() 228 ATF_REQUIRE_MSG(!WIFSIGNALED(status), "Reported signaled process"); in validate_status_exited() 229 ATF_REQUIRE_MSG(!WIFSTOPPED(status), "Reported stopped process"); in validate_status_exited() 231 ATF_REQUIRE_EQ_MSG(WEXITSTATUS(status), expected, in validate_status_exited() 233 WEXITSTATUS(status), expected); in validate_status_exited() 237 forkee_status_exited(int status, int expected) in forkee_status_exited() argument 239 FORKEE_ASSERTX(WIFEXITED(status)); in forkee_status_exited() 240 FORKEE_ASSERTX(!WIFCONTINUED(status)); in forkee_status_exited() [all …]
|
| D | t_ptrace_wait.c | 84 int status; in ATF_TC_BODY() local 102 TWAIT_REQUIRE_SUCCESS(wpid = TWAIT_GENERIC(child, &status, 0), child); in ATF_TC_BODY() 104 validate_status_stopped(status, sigval); in ATF_TC_BODY() 111 TWAIT_REQUIRE_SUCCESS(wpid = TWAIT_GENERIC(child, &status, 0), child); in ATF_TC_BODY() 113 validate_status_exited(status, exitval); in ATF_TC_BODY() 116 TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0)); in ATF_TC_BODY() 143 int status; in ATF_TC_BODY() local 169 TWAIT_REQUIRE_SUCCESS(wpid = TWAIT_GENERIC(child, &status, 0), child); in ATF_TC_BODY() 171 validate_status_stopped(status, sigval); in ATF_TC_BODY() 178 TWAIT_REQUIRE_SUCCESS(wpid = TWAIT_GENERIC(child, &status, 0), child); in ATF_TC_BODY() [all …]
|
| /freebsd-12-stable/contrib/serf/ |
| D | outgoing.c | 35 apr_status_t status = APR_SUCCESS; in clean_skt() local 39 status = apr_socket_close(conn->skt); in clean_skt() 41 serf__log_nopref(SOCK_VERBOSE, "closed socket, status %d\n", status); in clean_skt() 44 return status; in clean_skt() 115 apr_status_t status; in request_or_data_pending() local 117 status = serf_bucket_peek(conn->ostream_head, &dummy, in request_or_data_pending() 119 if (!SERF_BUCKET_READ_ERROR(status) && len) { in request_or_data_pending() 137 apr_status_t status; in serf__conn_update_pollset() local 149 status = ctx->pollset_rm(ctx->pollset_baton, in serf__conn_update_pollset() 151 if (status && !APR_STATUS_IS_NOTFOUND(status)) in serf__conn_update_pollset() [all …]
|
| /freebsd-12-stable/contrib/apr/shmem/unix/ |
| D | shm.c | 150 apr_status_t status; in apr_shm_create() local 179 status = apr_file_open(&file, "/dev/zero", APR_READ | APR_WRITE, in apr_shm_create() 181 if (status != APR_SUCCESS) { in apr_shm_create() 182 return status; in apr_shm_create() 184 status = apr_os_file_get(&tmpfd, file); in apr_shm_create() 185 if (status != APR_SUCCESS) { in apr_shm_create() 186 return status; in apr_shm_create() 195 status = apr_file_close(file); in apr_shm_create() 196 if (status != APR_SUCCESS) { in apr_shm_create() 197 return status; in apr_shm_create() [all …]
|
| /freebsd-12-stable/sys/gnu/dts/arm64/xilinx/ |
| D | zynqmp-zc1751-xm018-dc4.dts | 43 status = "okay"; 47 status = "okay"; 51 status = "okay"; 55 status = "okay"; 59 status = "okay"; 63 status = "okay"; 67 status = "okay"; 71 status = "okay"; 75 status = "okay"; 79 status = "okay"; [all …]
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_fuchsia.cpp | 34 zx_status_t status = _zx_nanosleep(0); in internal_sched_yield() local 35 CHECK_EQ(status, ZX_OK); in internal_sched_yield() 40 zx_status_t status = _zx_nanosleep(_zx_deadline_after(ZX_USEC(useconds))); in internal_usleep() local 41 CHECK_EQ(status, ZX_OK); in internal_usleep() 48 zx_status_t status = _zx_clock_read(utc_clock, &time); in NanoTime() local 49 CHECK_EQ(status, ZX_OK); in NanoTime() 57 zx_status_t status = in internal_getpid() local 60 CHECK_EQ(status, ZX_OK); in internal_getpid() 104 zx_status_t status = _zx_futex_wait(reinterpret_cast<zx_futex_t *>(p), cmp, in FutexWait() local 106 if (status != ZX_ERR_BAD_STATE) // Normal race. in FutexWait() [all …]
|