Home
last modified time | relevance | path

Searched refs:status (Results 3901 – 3925 of 4512) sorted by relevance

1...<<151152153154155156157158159160>>...181

/Zephyr-latest/drivers/counter/
Dcounter_sam0_tc32.c310 uint8_t status = tc->INTFLAG.reg; in counter_sam0_tc32_isr() local
313 tc->INTFLAG.reg = status; in counter_sam0_tc32_isr()
315 if (status & TC_INTFLAG_MC1) { in counter_sam0_tc32_isr()
326 if (status & TC_INTFLAG_MC0) { in counter_sam0_tc32_isr()
/Zephyr-latest/include/zephyr/net/
Dnet_context.h103 int status,
121 int status,
143 int status,
168 int status,
/Zephyr-latest/subsys/portability/cmsis_rtos_v2/
Dthread.c467 osStatus_t status = osError; in osThreadJoin() local
494 status = osOK; in osThreadJoin()
496 status = osErrorResource; in osThreadJoin()
499 return status; in osThreadJoin()
/Zephyr-latest/tests/bluetooth/tester/src/
Dbtp_gatt.c887 uint8_t status; in set_value() local
904 status = alloc_value(LAST_DB_ATTR, &cmd_data); in set_value()
907 status = alloc_value(&server_db[attr_id - server_db[0].handle], in set_value()
1925 uint8_t op, status; in discover_complete() local
1932 status = BTP_STATUS_FAILED; in discover_complete()
1938 status = BTP_STATUS_FAILED; in discover_complete()
1942 status = BTP_STATUS_SUCCESS; in discover_complete()
1947 if (status == BTP_STATUS_FAILED) { in discover_complete()
1951 tester_rsp(BTP_SERVICE_ID_GATT, op, status); in discover_complete()
2039 uint8_t status; in config_subscription_notif() local
[all …]
/Zephyr-latest/drivers/i2c/
Di2c_mcux_lpi2c.c126 status_t status, void *userData) in mcux_lpi2c_master_transfer_callback() argument
133 data->callback_status = status; in mcux_lpi2c_master_transfer_callback()
159 status_t status; in mcux_lpi2c_transfer() local
193 status = LPI2C_MasterTransferNonBlocking(base, in mcux_lpi2c_transfer()
199 if (status != kStatus_Success) { in mcux_lpi2c_transfer()
Di2c_sam_twihs_rtio.c169 static void i2c_sam_twihs_complete(const struct device *dev, int status);
202 static void i2c_sam_twihs_complete(const struct device *dev, int status) in i2c_sam_twihs_complete() argument
212 if (i2c_rtio_complete(ctx, status)) { in i2c_sam_twihs_complete()
/Zephyr-latest/subsys/net/l2/virtual/ipip/
Dipip.c53 bool status; member
95 if (ctx->status) { in interface_start()
99 ctx->status = true; in interface_start()
110 if (!ctx->status) { in interface_stop()
114 ctx->status = false; in interface_stop()
/Zephyr-latest/drivers/serial/
Duart_altera.c147 uint32_t status; in uart_altera_poll_in() local
160 status = sys_read32(config->base + ALTERA_AVALON_UART_STATUS_REG_OFFSET); in uart_altera_poll_in()
161 if (status & ALTERA_AVALON_UART_STATUS_RRDY_MSK) { in uart_altera_poll_in()
185 uint32_t status; in uart_altera_poll_out() local
191 status = sys_read32(config->base + ALTERA_AVALON_UART_STATUS_REG_OFFSET); in uart_altera_poll_out()
192 } while ((status & ALTERA_AVALON_UART_STATUS_TRDY_MSK) == 0); in uart_altera_poll_out()
/Zephyr-latest/doc/connectivity/bluetooth/shell/audio/
Dccp.rst70 read_status_flags :Read the in feature and status value
115 <call answered by peer device, and status notified by TBS server>
129 <call answered by peer device, and status notified by TBS server>
201 set_status_flags :Set the bearer feature and status value
227 …<dbg> bt_tbs.write_call_cp: Index 0: Processed the originate opcode with status success for call i…
238 …<dbg> bt_tbs.write_call_cp: Index 0: Processed the accept opcode with status success for call inde…
/Zephyr-latest/soc/intel/intel_adsp/common/include/
Dcavs-idc.h109 uint32_t set, clear, mask, status; member
/Zephyr-latest/samples/tfm_integration/psa_crypto/boards/
Dnrf9160dk_nrf9160_ns.overlay36 status = "disabled";
/Zephyr-latest/samples/tfm_integration/tfm_ipc/boards/
Dnrf9160dk_nrf9160_ns.overlay36 status = "disabled";
/Zephyr-latest/include/zephyr/bluetooth/mesh/
Dpriv_beacon_cli.h52 uint8_t status; member
/Zephyr-latest/subsys/net/lib/http/headers/
Dserver_internal.h46 bool http_response_is_final(struct http_response_ctx *rsp, enum http_data_status status);
/Zephyr-latest/dts/arm64/broadcom/
Dviper-a72.dtsi44 status = "okay";
/Zephyr-latest/tests/subsys/sd/sdio/src/
Dmain.c68 zassert_equal(card.status, CARD_INITIALIZED, "Card status is not OK"); in ZTEST()
/Zephyr-latest/drivers/usb/udc/
Dudc_kinetis.c515 static ALWAYS_INLINE uint8_t stat_reg_get_ep(const uint8_t status) in stat_reg_get_ep() argument
517 uint8_t ep_idx = status >> USB_STAT_ENDP_SHIFT; in stat_reg_get_ep()
519 return (status & USB_STAT_TX_MASK) ? (USB_EP_DIR_IN | ep_idx) : ep_idx; in stat_reg_get_ep()
522 static ALWAYS_INLINE bool stat_reg_is_odd(const uint8_t status) in stat_reg_is_odd() argument
524 return (status & USB_STAT_ODD_MASK) >> USB_STAT_ODD_SHIFT; in stat_reg_is_odd()
537 const uint8_t status) in isr_handle_xfer_done() argument
540 uint8_t ep = stat_reg_get_ep(status); in isr_handle_xfer_done()
541 bool odd = stat_reg_is_odd(status); in isr_handle_xfer_done()
648 const uint8_t status = base->STAT; in usbfsotg_isr_handler() local
688 isr_handle_xfer_done(dev, istatus, status); in usbfsotg_isr_handler()
/Zephyr-latest/doc/build/dts/
Dtroubleshooting.rst50 1. The node is enabled: the node must have ``status = "okay";``.
52 (Recall that a missing ``status`` property means the same thing as ``status
54 ``status``).
95 If the node has ``status = "disabled";`` in :file:`zephyr.dts`, then you need
96 to enable it by setting ``status = "okay";``, probably by using a devicetree
103 status = "disabled";
112 status = "okay";
115 Make sure that you see ``status = "okay";`` in :file:`zephyr.dts` after you
168 status = "okay";
/Zephyr-latest/lib/posix/options/
Dpthread.c1065 static int pthread_timedjoin_internal(pthread_t pthread, void **status, k_timeout_t timeout) in pthread_timedjoin_internal() argument
1131 if (status != NULL) { in pthread_timedjoin_internal()
1132 LOG_DBG("Writing status to %p", status); in pthread_timedjoin_internal()
1133 *status = t->retval; in pthread_timedjoin_internal()
1146 int pthread_timedjoin_np(pthread_t pthread, void **status, const struct timespec *abstime) in pthread_timedjoin_np() argument
1156 return pthread_timedjoin_internal(pthread, status, K_MSEC(timespec_to_timeoutms(abstime))); in pthread_timedjoin_np()
1164 int pthread_tryjoin_np(pthread_t pthread, void **status) in pthread_tryjoin_np() argument
1166 return pthread_timedjoin_internal(pthread, status, K_NO_WAIT); in pthread_tryjoin_np()
1174 int pthread_join(pthread_t pthread, void **status) in pthread_join() argument
1176 return pthread_timedjoin_internal(pthread, status, K_FOREVER); in pthread_join()
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/
Dull.c1182 } else if ((cc->status == BT_HCI_ERR_ADV_TIMEOUT) || cc->role) { in ll_rx_dequeue()
1190 if (cc->status == BT_HCI_ERR_ADV_TIMEOUT) { in ll_rx_dequeue()
1470 } else if (cc->status == BT_HCI_ERR_ADV_TIMEOUT) { in ll_rx_mem_release()
1477 } else if (cc->status == BT_HCI_ERR_UNKNOWN_CONN_ID) { in ll_rx_mem_release()
1492 LL_ASSERT(!cc->status); in ll_rx_mem_release()
1591 uint8_t status = se->status; in ll_rx_mem_release() local
1597 if ((status == BT_HCI_ERR_SUCCESS) || in ll_rx_mem_release()
1598 (status == BT_HCI_ERR_UNSUPP_REMOTE_FEATURE) || in ll_rx_mem_release()
1599 (status == BT_HCI_ERR_CONN_FAIL_TO_ESTAB)) { in ll_rx_mem_release()
1611 if (status != BT_HCI_ERR_SUCCESS) { in ll_rx_mem_release()
[all …]
Dull_central_iso.c73 static void ticker_op_cb(uint32_t status, void *param);
128 uint8_t status; in ll_cis_parameters_set() local
130 status = ll_cis_parameters_validate(cis_idx, cis_id, c_sdu, p_sdu, c_phy, p_phy); in ll_cis_parameters_set()
131 if (status) { in ll_cis_parameters_set()
132 return status; in ll_cis_parameters_set()
668 uint8_t status; in ll_cis_parameters_test_set() local
670 status = ll_cis_parameters_validate(cis_idx, cis_id, c_sdu, p_sdu, c_phy, p_phy); in ll_cis_parameters_test_set()
671 if (status) { in ll_cis_parameters_test_set()
672 return status; in ll_cis_parameters_test_set()
1205 static void ticker_op_cb(uint32_t status, void *param) in ticker_op_cb() argument
[all …]
/Zephyr-latest/arch/arm64/core/
Dmmu.c1487 enum arch_page_location status; in arch_page_location_get() local
1499 status = ARCH_PAGE_LOCATION_PAGED_IN; in arch_page_location_get()
1502 status = ARCH_PAGE_LOCATION_PAGED_OUT; in arch_page_location_get()
1509 return status; in arch_page_location_get()
1517 uintptr_t status = 0; in arch_page_info_get() local
1529 status |= ARCH_DATA_PAGE_LOADED; in arch_page_info_get()
1542 if ((status & ARCH_DATA_PAGE_LOADED) == 0) { in arch_page_info_get()
1543 return status; in arch_page_info_get()
1547 status |= ARCH_DATA_PAGE_ACCESSED; in arch_page_info_get()
1551 status |= ARCH_DATA_PAGE_DIRTY; in arch_page_info_get()
[all …]
/Zephyr-latest/drivers/sensor/tdk/icm42688/
Dicm42688.c94 uint8_t status; in icm42688_sample_fetch() local
98 int res = icm42688_spi_read(&cfg->spi, REG_INT_STATUS, &status, 1); in icm42688_sample_fetch()
104 if (!FIELD_GET(BIT_INT_STATUS_DATA_RDY, status)) { in icm42688_sample_fetch()
/Zephyr-latest/doc/services/retention/
Dblinfo.rst27 status = "okay";
31 status = "okay";
37 status = "okay";
/Zephyr-latest/dts/riscv/starfive/
Djh7110-visionfive-v2.dtsi27 status = "okay";
195 status = "disabled";
208 status = "disabled";

1...<<151152153154155156157158159160>>...181