Home
last modified time | relevance | path

Searched refs:status (Results 11176 - 11200 of 19668) sorted by relevance

1...<<441442443444445446447448449450>>...787

/kernel/linux/linux-6.6/drivers/net/wireless/intel/iwlegacy/
H A D4965.c1250 (test_bit(S_SCAN_HW, &il->status), in il4965_send_tx_power()
1341 if (test_bit(S_CHANNEL_SWITCH_PENDING, &il->status) && in il4965_commit_rxon()
1569 if (test_bit(S_TEMPERATURE, &il->status) && in il4965_hw_get_temperature()
1591 if (!test_bit(S_TEMPERATURE, &il->status)) in il4965_hw_get_temperature()
1635 if (!test_bit(S_STATS, &il->status)) { in il4965_is_temp_calib_needed()
1681 set_bit(S_TEMPERATURE, &il->status); in il4965_temperature_calib()
1684 unlikely(!test_bit(S_SCANNING, &il->status)) && in il4965_temperature_calib()
1740 if (test_bit(S_EXIT_PENDING, &il->status)) in il4965_post_associate()
1812 if (test_bit(S_EXIT_PENDING, &il->status)) in il4965_config_ap()
/kernel/linux/linux-6.6/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
H A Ddma.c63 /* transmit channel status */
114 /* receive channel status */
146 #define D64_FA_SEL_RSD 0xe0000 /* receive frame status data */
147 #define D64_FA_SEL_RSP 0xf0000 /* receive frame status pointers */
1231 u32 status; in dma_txreset() local
1238 SPINWAIT(((status = in dma_txreset()
1241 (status != D64_XS0_XS_IDLE) && (status != D64_XS0_XS_STOPPED), in dma_txreset()
1245 SPINWAIT(((status = in dma_txreset()
1252 return status in dma_txreset()
1258 u32 status; dma_rxreset() local
[all...]
/kernel/linux/linux-6.6/drivers/ntb/test/
H A Dntb_perf.c181 int status; member
519 dev_dbg(&perf->ntb->dev, "Msg status bits %#llx\n", in perf_msg_event()
1028 * Test status is changed only if error happened, otherwise in perf_thread_work()
1029 * status -ENODATA is kept while test is on-fly. Results in perf_thread_work()
1035 pthr->status = ret; in perf_thread_work()
1041 pthr->status = ret; in perf_thread_work()
1045 pthr->status = perf_sync_test(pthr); in perf_thread_work()
1098 pthr->status = -ENODATA; in perf_submit_test()
1132 if (pthr->status == -ENODATA) in perf_read_stats()
1135 if (pthr->status) { in perf_read_stats()
[all...]
/kernel/linux/linux-6.6/drivers/accel/habanalabs/common/
H A Dhabanalabs_ioctl.c40 dev_stat.status = hl_device_status(hdev); in device_status_info()
929 enum hl_device_status status; in _hl_info_ioctl() local
1010 if (!hl_device_operational(hdev, &status)) { in _hl_info_ioctl()
1013 hdev->status[status]); in _hl_info_ioctl()
1087 enum hl_device_status status; in hl_debug_ioctl() local
1091 if (!hl_device_operational(hdev, &status)) { in hl_debug_ioctl()
1094 hdev->status[status]); in hl_debug_ioctl()
/kernel/linux/linux-6.6/drivers/gpu/drm/kmb/
H A Dkmb_dsi.c1220 int status = 1; in dphy_wait_fsm() local
1228 status = 0; in dphy_wait_fsm()
1235 dphy_no, status ? "SUCCESS" : "FAILED"); in dphy_wait_fsm()
1244 int status = 1; in wait_init_done() local
1254 status = 0; in wait_init_done()
1263 dphy_no, status ? "SUCCESS" : "FAILED"); in wait_init_done()
1269 int status = 1; in wait_pll_lock() local
1275 status = 0; in wait_pll_lock()
1282 dphy_no, status ? "SUCCESS" : "FAILED"); in wait_pll_lock()
/kernel/linux/linux-6.6/drivers/gpu/drm/omapdrm/
H A Domap_dmm_tiler.c79 enum dma_status status; in dmm_dma_copy() local
94 status = dma_sync_wait(dmm->wa_dma_chan, cookie); in dmm_dma_copy()
95 if (status != DMA_COMPLETE) in dmm_dma_copy()
229 /* check status and spin until wait_mask comes true */
277 u32 status = dmm_read(dmm, DMM_PAT_IRQSTATUS); in omap_dmm_irq_handler() local
281 dmm_write(dmm, status, DMM_PAT_IRQSTATUS); in omap_dmm_irq_handler()
284 if (status & DMM_IRQSTAT_ERR_MASK) in omap_dmm_irq_handler()
287 i, status & 0xff); in omap_dmm_irq_handler()
289 if (status & DMM_IRQSTAT_LST) { in omap_dmm_irq_handler()
296 status >> in omap_dmm_irq_handler()
[all...]
/kernel/linux/linux-6.6/drivers/i2c/busses/
H A Di2c-xiic.c640 int status; in xiic_fill_tx_fifo() local
643 status = xiic_wait_tx_empty(i2c); in xiic_fill_tx_fifo()
644 if (status) in xiic_fill_tx_fifo()
933 int status; in xiic_start_recv() local
935 status = xiic_wait_tx_empty(i2c); in xiic_start_recv()
936 if (status) in xiic_start_recv()
1040 int status; in xiic_start_send() local
1042 status = xiic_wait_tx_empty(i2c); in xiic_start_send()
1043 if (status) in xiic_start_send()
/kernel/linux/linux-6.6/tools/perf/
H A Dbuiltin-daemon.c399 int status; in handle_signalfd() local
418 pid = waitpid(session->pid, &status, WNOHANG); in handle_signalfd()
422 if (WIFEXITED(status)) { in handle_signalfd()
423 pr_info("session '%s' exited, status=%d\n", in handle_signalfd()
424 session->name, WEXITSTATUS(status)); in handle_signalfd()
425 } else if (WIFSIGNALED(status)) { in handle_signalfd()
427 session->name, WTERMSIG(status)); in handle_signalfd()
428 } else if (WIFSTOPPED(status)) { in handle_signalfd()
430 session->name, WSTOPSIG(status)); in handle_signalfd()
432 pr_info("session '%s' Unexpected status ( in handle_signalfd()
[all...]
/kernel/linux/linux-6.6/net/sunrpc/xprtrdma/
H A Drpc_rdma.c1379 int status; in rpcrdma_complete_rqst() local
1383 status = rpcrdma_decode_msg(r_xprt, rep, rqst); in rpcrdma_complete_rqst()
1386 status = rpcrdma_decode_nomsg(r_xprt, rep); in rpcrdma_complete_rqst()
1389 status = rpcrdma_decode_error(r_xprt, rep, rqst); in rpcrdma_complete_rqst()
1392 status = -EIO; in rpcrdma_complete_rqst()
1394 if (status < 0) in rpcrdma_complete_rqst()
1399 xprt_complete_rqst(rqst->rq_task, status); in rpcrdma_complete_rqst()
1407 rqst->rq_task->tk_status = status; in rpcrdma_complete_rqst()
1408 status = 0; in rpcrdma_complete_rqst()
/kernel/linux/linux-6.6/sound/soc/bcm/
H A Dcygnus-ssp.c247 int status = 0; in audio_ssp_init_portregs() local
321 status = -EINVAL; in audio_ssp_init_portregs()
324 return status; in audio_ssp_init_portregs()
377 int status = 0; in audio_ssp_out_enable() local
412 status = -EINVAL; in audio_ssp_out_enable()
415 return status; in audio_ssp_out_enable()
421 int status = 0; in audio_ssp_out_disable() local
475 status = -EINVAL; in audio_ssp_out_disable()
478 return status; in audio_ssp_out_disable()
/kernel/linux/linux-6.6/sound/pci/
H A Dfm801.c120 /* IRQ status bits */
560 unsigned short status; in snd_fm801_interrupt() local
563 status = fm801_readw(chip, IRQ_STATUS); in snd_fm801_interrupt()
564 status &= FM801_IRQ_PLAYBACK|FM801_IRQ_CAPTURE|FM801_IRQ_MPU|FM801_IRQ_VOLUME; in snd_fm801_interrupt()
565 if (! status) in snd_fm801_interrupt()
568 fm801_writew(chip, IRQ_STATUS, status); in snd_fm801_interrupt()
569 if (chip->pcm && (status & FM801_IRQ_PLAYBACK) && chip->playback_substream) { in snd_fm801_interrupt()
583 if (chip->pcm && (status & FM801_IRQ_CAPTURE) && chip->capture_substream) { in snd_fm801_interrupt()
597 if (chip->rmidi && (status & FM801_IRQ_MPU)) in snd_fm801_interrupt()
599 if (status in snd_fm801_interrupt()
[all...]
/third_party/curl/lib/
H A Dsmb.c102 unsigned int status; member
888 h->status) { in smb_connection_state()
904 if(h->status) { in smb_connection_state()
984 if(h->status) { in smb_request_state()
986 if(h->status == smb_swap32(SMB_ERR_NOACCESS)) in smb_request_state()
995 if(h->status || smbc->got < sizeof(struct smb_nt_create_response)) { in smb_request_state()
997 if(h->status == smb_swap32(SMB_ERR_NOACCESS)) in smb_request_state()
1026 if(h->status || smbc->got < sizeof(struct smb_header) + 14) { in smb_request_state()
1055 if(h->status || smbc->got < sizeof(struct smb_header) + 6) { in smb_request_state()
/third_party/alsa-lib/src/pcm/
H A Dpcm_meter.c201 snd_pcm_status_t status; in snd_pcm_meter_thread() local
204 err = snd_pcm_status(spcm, &status); in snd_pcm_meter_thread()
206 if (status.state != SND_PCM_STATE_RUNNING && in snd_pcm_meter_thread()
207 (status.state != SND_PCM_STATE_DRAINING || in snd_pcm_meter_thread()
223 now = status.appl_ptr - status.delay; in snd_pcm_meter_thread()
227 now = status.appl_ptr + status.delay; in snd_pcm_meter_thread()
529 .status = snd_pcm_generic_status,
/third_party/backends/backend/
H A Dv4l.c526 SANE_Status status; in sane_open() local
658 status = init_options (s); in sane_open()
659 if (status != SANE_STATUS_GOOD) in sane_open()
660 return status; in sane_open()
719 SANE_Status status; in sane_control_option() local
775 status = sanei_constrain_value (s->opt + option, val, info); in sane_control_option()
776 if (status != SANE_STATUS_GOOD) in sane_control_option()
779 sane_strstatus (status)); in sane_control_option()
780 return status; in sane_control_option()
/third_party/icu/icu4c/source/common/
H A Ducnv_bld.cpp289 ucnv_data_unFlattenClone(UConverterLoadArgs *pArgs, UDataMemory *pData, UErrorCode *status) in ucnv_data_unFlattenClone() argument
297 if(U_FAILURE(*status)) in ucnv_data_unFlattenClone()
306 *status = U_INVALID_TABLE_FORMAT; in ucnv_data_unFlattenClone()
312 *status = U_MEMORY_ALLOCATION_ERROR; in ucnv_data_unFlattenClone()
327 data->impl->load(data, pArgs, raw + source->structSize, status); in ucnv_data_unFlattenClone()
328 if(U_FAILURE(*status)) { in ucnv_data_unFlattenClone()
1037 /*UErrorCode status = U_ILLEGAL_ARGUMENT_ERROR;*/ in ucnv_flushCache()
1180 internalSetName(const char *name, UErrorCode *status) { in internalSetName() argument
1192 parseConverterOptions(name, &stackPieces, &stackArgs, status); in internalSetName()
1193 if(U_FAILURE(*status)) { in internalSetName()
[all...]
/third_party/libabigail/tools/
H A Dabidiff.cc990 /// @param status_code the status code returned after trying to load
1013 handle_error(abigail::fe_iface::status status_code, in handle_error()
1169 abidiff_status status = abigail::tools_utils::ABIDIFF_OK; in main()
1196 abigail::fe_iface::status c1_status = in main()
1412 status = abigail::tools_utils::ABIDIFF_ABI_CHANGE; in main()
1415 status |= abigail::tools_utils::ABIDIFF_ABI_INCOMPATIBLE_CHANGE; in main()
1444 status = abigail::tools_utils::ABIDIFF_ABI_CHANGE; in main()
1447 status |= abigail::tools_utils::ABIDIFF_ABI_INCOMPATIBLE_CHANGE; in main()
1454 status = abigail::tools_utils::ABIDIFF_ERROR; in main()
1457 return status; in main()
[all...]
/third_party/node/deps/icu-small/source/common/
H A Ducnv_bld.cpp289 ucnv_data_unFlattenClone(UConverterLoadArgs *pArgs, UDataMemory *pData, UErrorCode *status) in ucnv_data_unFlattenClone() argument
297 if(U_FAILURE(*status)) in ucnv_data_unFlattenClone()
306 *status = U_INVALID_TABLE_FORMAT; in ucnv_data_unFlattenClone()
312 *status = U_MEMORY_ALLOCATION_ERROR; in ucnv_data_unFlattenClone()
327 data->impl->load(data, pArgs, raw + source->structSize, status); in ucnv_data_unFlattenClone()
328 if(U_FAILURE(*status)) { in ucnv_data_unFlattenClone()
1037 /*UErrorCode status = U_ILLEGAL_ARGUMENT_ERROR;*/ in ucnv_flushCache()
1180 internalSetName(const char *name, UErrorCode *status) { in internalSetName() argument
1192 parseConverterOptions(name, &stackPieces, &stackArgs, status); in internalSetName()
1193 if(U_FAILURE(*status)) { in internalSetName()
[all...]
/third_party/mesa3d/src/intel/vulkan/
H A DgenX_query.c429 VkResult status = vk_device_check_status(&device->vk); in wait_for_available()
430 if (status != VK_SUCCESS) in wait_for_available()
431 return status; in wait_for_available()
466 VkResult status = VK_SUCCESS; in GetQueryPoolResults() local
471 status = wait_for_available(device, pool, firstQuery + i); in GetQueryPoolResults()
472 if (status != VK_SUCCESS) { in GetQueryPoolResults()
473 return status; in GetQueryPoolResults()
505 * VK_QUERY_RESULT_WAIT_BIT is not set, and the query’s status in GetQueryPoolResults()
599 status = VK_NOT_READY; in GetQueryPoolResults()
609 return status; in GetQueryPoolResults()
[all...]
/third_party/libfuse/util/
H A Dfusermount.c361 int status; in check_is_mount() local
370 p = waitpid(pid, &status, __WCLONE); in check_is_mount()
376 if (!WIFEXITED(status)) { in check_is_mount()
377 fprintf(stderr, "%s: child terminated abnormally (status %i)\n", in check_is_mount()
378 progname, status); in check_is_mount()
381 if (WEXITSTATUS(status) != 0) in check_is_mount()
1259 int status; in recheck_ENOTCONN_as_owner() local
1260 int res = waitpid(pid, &status, 0); in recheck_ENOTCONN_as_owner()
1265 return WIFEXITED(status) && WEXITSTATUS(status) in recheck_ENOTCONN_as_owner()
[all...]
/third_party/rust/crates/libc/src/unix/bsd/
H A Dmod.rs581 pub {const} fn WTERMSIG(status: ::c_int) -> ::c_int {
582 status & 0o177
585 pub {const} fn WIFEXITED(status: ::c_int) -> bool {
586 (status & 0o177) == 0
589 pub {const} fn WEXITSTATUS(status: ::c_int) -> ::c_int {
590 status >> 8
593 pub {const} fn WCOREDUMP(status: ::c_int) -> bool {
594 (status & 0o200) != 0
843 status: *mut ::c_int, in wait4()
/third_party/pcre2/pcre2/src/sljit/
H A DsljitNativeX86_32.c267 sljit_s32 size, args_size, types, status; in sljit_emit_enter() local
285 status = 0; in sljit_emit_enter()
294 status |= ENTER_TMP_TO_R4; in sljit_emit_enter()
326 status |= ENTER_TMP_TO_R4; in sljit_emit_enter()
329 status |= ENTER_TMP_TO_S; in sljit_emit_enter()
367 if (status & (ENTER_TMP_TO_R4 | ENTER_TMP_TO_S)) in sljit_emit_enter()
388 SLJIT_ASSERT(word_arg_count <= 3 || (word_arg_count == 4 && !(status & (ENTER_TMP_TO_R4 | ENTER_TMP_TO_S)))); in sljit_emit_enter()
477 if (status & (ENTER_TMP_TO_R4 | ENTER_TMP_TO_S)) { in sljit_emit_enter()
478 if (status & ENTER_TMP_TO_R4) in sljit_emit_enter()
/third_party/python/Modules/
H A D_operator.c1130 int status = Py_ReprEnter((PyObject *)ig); in itemgetter_repr() local
1131 if (status != 0) { in itemgetter_repr()
1132 if (status < 0) in itemgetter_repr()
1479 int status = Py_ReprEnter((PyObject *)ag); in attrgetter_repr() local
1480 if (status != 0) { in attrgetter_repr()
1481 if (status < 0) in attrgetter_repr()
1667 int status = Py_ReprEnter((PyObject *)mc); in methodcaller_repr() local
1668 if (status != 0) { in methodcaller_repr()
1669 if (status < 0) in methodcaller_repr()
/third_party/skia/third_party/externals/icu/source/common/
H A Ducnv_bld.cpp289 ucnv_data_unFlattenClone(UConverterLoadArgs *pArgs, UDataMemory *pData, UErrorCode *status) in ucnv_data_unFlattenClone() argument
297 if(U_FAILURE(*status)) in ucnv_data_unFlattenClone()
306 *status = U_INVALID_TABLE_FORMAT; in ucnv_data_unFlattenClone()
312 *status = U_MEMORY_ALLOCATION_ERROR; in ucnv_data_unFlattenClone()
327 data->impl->load(data, pArgs, raw + source->structSize, status); in ucnv_data_unFlattenClone()
328 if(U_FAILURE(*status)) { in ucnv_data_unFlattenClone()
1037 /*UErrorCode status = U_ILLEGAL_ARGUMENT_ERROR;*/ in ucnv_flushCache()
1180 internalSetName(const char *name, UErrorCode *status) { in internalSetName() argument
1192 parseConverterOptions(name, &stackPieces, &stackArgs, status); in internalSetName()
1193 if(U_FAILURE(*status)) { in internalSetName()
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/hisilicon/hns3/hns3pf/
H A Dhclge_main.c436 "Get MAC pkt stats fail, status = %d.\n", ret); in hclge_mac_update_stats_defective()
565 "Query tqp stat fail, status = %d,queue = %d\n", in hclge_tqps_update_stats()
585 "Query tqp stat fail, status = %d,queue = %d\n", in hclge_tqps_update_stats()
683 int status; in hclge_update_stats_for_all() local
687 status = hclge_tqps_update_stats(handle); in hclge_update_stats_for_all()
688 if (status) { in hclge_update_stats_for_all()
690 "Update TQPS stats fail, status = %d.\n", in hclge_update_stats_for_all()
691 status); in hclge_update_stats_for_all()
695 status = hclge_mac_update_stats(hdev); in hclge_update_stats_for_all()
696 if (status) in hclge_update_stats_for_all()
706 int status; hclge_update_stats() local
830 hclge_parse_func_status(struct hclge_dev *hdev, struct hclge_func_status_cmd *status) hclge_parse_func_status() argument
4717 enum hclge_cmd_status status; hclge_bind_ring_with_vector() local
7664 int status; hclge_add_mc_addr_common() local
7709 enum hclge_cmd_status status; hclge_rm_mc_addr_common() local
8605 int status; hclge_set_vlan_tx_offload_cfg() local
8648 int status; hclge_set_vlan_rx_offload_cfg() local
8728 int status; hclge_set_vlan_protocol_type() local
11258 hclge_set_led_id(struct hnae3_handle *handle, enum ethtool_phys_id_state status) hclge_set_led_id() argument
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath10k/
H A Dwmi.c2254 struct ieee80211_rx_status *status) in ath10k_wmi_handle_wep_reauth()
2279 status->flag |= RX_FLAG_DECRYPTED; in ath10k_wmi_handle_wep_reauth()
2311 arg->status = ev_hdr->status; in ath10k_wmi_op_pull_mgmt_rx_ev()
2320 if (le32_to_cpu(arg->status) & WMI_RX_STATUS_EXT_INFO) { in ath10k_wmi_op_pull_mgmt_rx_ev()
2355 arg->status = ev_hdr->status; in ath10k_wmi_10_4_op_pull_mgmt_rx_ev()
2364 if (le32_to_cpu(arg->status) & WMI_RX_STATUS_EXT_INFO) { in ath10k_wmi_10_4_op_pull_mgmt_rx_ev()
2424 if (param->status) { in wmi_process_mgmt_tx_comp()
2428 info->status in wmi_process_mgmt_tx_comp()
2252 ath10k_wmi_handle_wep_reauth(struct ath10k *ar, struct sk_buff *skb, struct ieee80211_rx_status *status) ath10k_wmi_handle_wep_reauth() argument
2502 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb); ath10k_wmi_event_mgmt_rx() local
3442 u32 status; ath10k_wmi_event_vdev_start_resp() local
6386 int status; ath10k_wmi_connect() local
8097 ath10k_wmi_op_gen_addba_set_resp(struct ath10k *ar, u32 vdev_id, const u8 *mac, u32 tid, u32 status) ath10k_wmi_op_gen_addba_set_resp() argument
[all...]

Completed in 59 milliseconds

1...<<441442443444445446447448449450>>...787