/Zephyr-latest/doc/kernel/services/smp/ |
D | smp.rst | 235 is used, there may be more than one valid set of threads (not to be confused 237 single set of IPIs may be insufficient to result in any of these valid sets. 241 as the valid set of threads. However when CPU masking is in play, there 242 may be more than one valid set--one of which may be optimal. 247 then this set is is both valid and optimal. However, if CPU0 is executing 248 T1 and CPU1 is idling, then this too would be valid though not optimal. 250 In those cases where a single set of IPIs is not sufficient to generate a valid 251 set, the resulting set of executing threads are expected to be close to a valid 255 kernel to generate cascading IPIs until the kernel has selected a valid set of
|
/Zephyr-latest/doc/connectivity/bluetooth/api/ |
D | connection_mgmt.rst | 13 longer period of time, since this ensures that the object remains valid
|
/Zephyr-latest/subsys/bluetooth/services/ |
D | dis.c | 285 bool valid = BT_ATT_MAX_ATTRIBUTE_LEN >= without_old + DIS_STR_SIZE(new); in dis_update_udi_value() local 287 if (!valid) { in dis_update_udi_value()
|
/Zephyr-latest/samples/net/dhcpv4_client/ |
D | README.rst | 43 "valid-lifetime": 7200, 135 "valid-lifetime": 7200,
|
/Zephyr-latest/drivers/usb/udc/ |
D | udc_numaker.c | 81 bool valid; member 612 __ASSERT_NO_MSG(!ep_cur->valid); in numaker_usbd_ep_mgmt_alloc_ep() 615 ep_cur->valid = true; in numaker_usbd_ep_mgmt_alloc_ep() 690 ep_cur->valid = true; in numaker_usbd_ep_mgmt_init() 701 ep_cur->valid = true; in numaker_usbd_ep_mgmt_init() 719 if (!ep_cur->valid) { in numaker_usbd_ep_mgmt_find_ep() 754 __ASSERT_NO_MSG(ep_cur->valid); in numaker_usbd_ep_mgmt_bind_ep()
|
/Zephyr-latest/samples/sensor/grow_r502a/ |
D | README.rst | 59 Waiting for valid finger to enroll as ID #3
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/openisa/hal/RV32M1/radio/ |
D | radio.c | 319 uint32_t valid = 0; in isr_radio() local 340 valid = 1; in isr_radio() 352 valid = 1; in isr_radio() 381 valid = 1; in isr_radio() 397 if (valid) { in isr_radio()
|
/Zephyr-latest/drivers/dma/ |
D | dma_mcux_edma.c | 88 bool valid; member 316 data->transfer_settings.valid = false; in dma_mcux_edma_configure() 359 data->transfer_settings.valid = true; in dma_mcux_edma_configure() 562 data->data_cb[channel].transfer_settings.valid = false; in dma_mcux_edma_stop() 622 if (!data->transfer_settings.valid) { in dma_mcux_edma_reload()
|
/Zephyr-latest/subsys/net/ip/ |
D | ipv6_pe.c | 301 bool valid = false; in net_ipv6_pe_start() local 368 valid = true; in net_ipv6_pe_start() 375 if (valid == false) { in net_ipv6_pe_start()
|
/Zephyr-latest/drivers/espi/ |
D | espi_npcx.c | 517 uint8_t valid = GET_FIELD(inst->VWEVSM[idx], NPCX_VWEVSM_VALID); in espi_vw_config_output() local 520 valid |= config_out->bitmask; in espi_vw_config_output() 521 SET_FIELD(inst->VWEVSM[idx], NPCX_VWEVSM_VALID, valid); in espi_vw_config_output() 538 uint8_t valid = GET_FIELD(inst->VWGPSM[idx], NPCX_VWEVSM_VALID); in espi_vw_gpio_config_output() local 542 valid |= config_out->bitmask; in espi_vw_gpio_config_output() 543 SET_FIELD(inst->VWGPSM[idx], NPCX_VWEVSM_VALID, valid); in espi_vw_gpio_config_output()
|
/Zephyr-latest/doc/hardware/peripherals/ |
D | uart.rst | 18 or ``-1`` when no valid data is available. The writing function,
|
/Zephyr-latest/boards/nxp/s32z2xxdc2/support/ |
D | startup.cmm | 9 ; valid values: flash, debug * 13 ; valid values: 0, 1 * 16 ; valid values: 0 to 3 *
|
/Zephyr-latest/tests/bluetooth/controller/ctrl_isoal/src/sub_sets/ |
D | isoal_test_tx.c | 365 bool valid = isoal_get_time_diff(time_before, time_after, result); in isoal_get_time_diff_test() local 368 if (valid) { in isoal_get_time_diff_test() 380 return valid; in isoal_get_time_diff_test() 1573 bool valid; in ZTEST() local 1580 valid = isoal_get_time_diff_test(time_before, time_after, &result); in ZTEST() 1581 zassert_true(valid, NULL); in ZTEST() 1589 valid = isoal_get_time_diff_test(time_before, time_after, &result); in ZTEST() 1590 zassert_false(valid, NULL); in ZTEST() 1594 valid = isoal_get_time_diff_test(time_before, time_after, &result); in ZTEST() 1595 zassert_false(valid, NULL); in ZTEST() [all …]
|
/Zephyr-latest/drivers/usb/device/ |
D | usb_dc_numaker.c | 88 bool valid; member 712 __ASSERT_NO_MSG(!ep_cur->valid); in numaker_usbd_ep_mgmt_alloc_ep() 715 ep_cur->valid = true; in numaker_usbd_ep_mgmt_alloc_ep() 787 ep_cur->valid = true; in numaker_usbd_ep_mgmt_init() 798 ep_cur->valid = true; in numaker_usbd_ep_mgmt_init() 818 if (!ep_cur->valid) { in numaker_usbd_ep_mgmt_find_ep() 853 __ASSERT_NO_MSG(ep_cur->valid); in numaker_usbd_ep_mgmt_bind_ep()
|
/Zephyr-latest/samples/tfm_integration/tfm_secure_partition/ |
D | README.rst | 59 No valid secret for key, received expected error code
|
/Zephyr-latest/samples/sensor/sensor_shell/ |
D | README.rst | 64 A valid sensor device name should be passed otherwise you will get an
|
/Zephyr-latest/tests/arch/arm/arm_interrupt/ |
D | README.txt | 20 valid corresponding MMFAR address value). 118 E: Stack overflow (context area not valid)
|
/Zephyr-latest/arch/x86/core/ |
D | Kconfig.intel64 | 58 # and we check to be sure they're a valid combination in arch.h. yes, ugh.
|
/Zephyr-latest/doc/services/storage/zms/ |
D | zms.rst | 25 collect the N+2 sector (where N is the current sector number) by moving the valid ATEs to the 148 the most recent ones to the oldest ones. If it finds a valid ATE with a matching ID it retrieves 156 However, this operation is very time consuming and needs to browse all valid ATEs in all sectors 157 of the partition and for each valid ATE try to find if an older one exist. 167 To become valid, an ATE must have the same cycle counter as the one stored in the empty ATE. 180 to avoid having old ATEs with a valid cycle counter. 322 In addition to the normal writes, garbage collector will move the still valid data from old
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | csip_set_member.c | 186 bool valid = false; in generate_prand() local 201 valid = true; in generate_prand() 203 } while (!valid); in generate_prand()
|
/Zephyr-latest/doc/security/ |
D | sensor-threat.rst | 92 valid. Certificate validation requires the device's notion of date and 99 time are denial of service (the device rejects valid certificates), 101 possible to trick the device into generating tokens that are valid in 234 certificate chain has a valid signature path from a root 257 service provider maintains a list of valid certificates 358 TLS must verify root certificate from server is valid.
|
/Zephyr-latest/doc/services/storage/fcb/ |
D | fcb.rst | 36 don't have a valid checksum.
|
/Zephyr-latest/dts/xtensa/nxp/ |
D | nxp_imx8.dtsi | 132 valid-channels = <6>, <7>, <14>, <15>;
|
/Zephyr-latest/samples/net/sockets/txtime/ |
D | Kconfig | 38 dummy data that is not a valid Ethernet frame. We want to measure
|
/Zephyr-latest/boards/nxp/frdm_rw612/ |
D | frdm_rw612_common.dtsi | 114 data-valid-time = <6>;
|