Home
last modified time | relevance | path

Searched full:valid (Results 1 – 25 of 1317) sorted by relevance

12345678910>>...53

/Zephyr-latest/soc/altr/zephyr_nios2f/cpu/
Dghrd_10m50da.sopcinfo12 <valid>true</valid>
21 <valid>true</valid>
30 <valid>true</valid>
39 <valid>true</valid>
48 <valid>true</valid>
57 <valid>true</valid>
67 <valid>true</valid>
77 <valid>true</valid>
87 <valid>true</valid>
96 <valid>true</valid>
[all …]
/Zephyr-latest/arch/xtensa/core/
Dmem_manage.c15 bool valid; in sys_mm_is_phys_addr_in_range() local
18 valid = ((phys >= CONFIG_SRAM_BASE_ADDRESS) && in sys_mm_is_phys_addr_in_range()
21 valid |= ((cached >= CONFIG_SRAM_BASE_ADDRESS) && in sys_mm_is_phys_addr_in_range()
24 return valid; in sys_mm_is_phys_addr_in_range()
29 bool valid; in sys_mm_is_virt_addr_in_range() local
34 valid = ((addr >= CONFIG_KERNEL_VM_BASE) && in sys_mm_is_virt_addr_in_range()
37 valid |= ((cached >= CONFIG_KERNEL_VM_BASE) && in sys_mm_is_virt_addr_in_range()
40 return valid; in sys_mm_is_virt_addr_in_range()
Dxtensa_backtrace.c43 bool valid; in xtensa_stack_ptr_is_sane() local
46 valid = esp_stack_ptr_is_sane(sp); in xtensa_stack_ptr_is_sane()
48 valid = intel_adsp_ptr_is_sane(sp); in xtensa_stack_ptr_is_sane()
51 * whether stack pointer is valid. So use the generic in xtensa_stack_ptr_is_sane()
54 valid = true; in xtensa_stack_ptr_is_sane()
57 if (valid) { in xtensa_stack_ptr_is_sane()
58 valid = !xtensa_is_outside_stack_bounds(sp, 0, UINT32_MAX); in xtensa_stack_ptr_is_sane()
61 return valid; in xtensa_stack_ptr_is_sane()
144 /* Check if first frame is valid */ in xtensa_backtrace_print()
/Zephyr-latest/dts/bindings/clock/
Dst,stm32h7-pll-clock.yaml42 Valid range: 1 - 63
49 Valid range: 4 - 512
55 Valid range: 1 - 128
61 Valid range: 1 - 128
67 Valid range: 1 - 128
73 Valid range: 0 - 8191
Dst,stm32u5-pll-clock.yaml45 Valid range: 1 - 16
52 Valid range: 4 - 512
58 Valid range: 1 - 128
64 Valid range: 1 - 128
73 Valid range: 1 - 128
79 Valid range: 0 - 8191
Dst,stm32g0-pll-clock.yaml38 Valid range: 1 - 8
45 Valid range: 8 - 86
51 Valid range: 2 - 32
57 Valid range: 2 - 8
64 Valid range: 2 - 8
Dst,stm32u0-pll-clock.yaml39 Valid range: 1 - 8
46 Valid range: 4 - 127
52 Valid range: 2 - 32
58 Valid range: 2 - 8
65 Valid range: 2 - 8
Dst,stm32wb-pll-clock.yaml43 Valid range: 1 - 8
50 Valid range: 6 - 127
56 Valid range: 2 - 32
62 Valid range: 2 - 8
69 Valid range: 2 - 8
Draspberrypi,pico-pll.yaml17 The valid range is 16 to 320.
24 The valid range is 1 to 49.
31 The valid range is 1 to 49.
Dst,stm32h7rs-pll-clock.yaml33 PLL division factor for pllx_s_ck : valid for PLL1, 2, 3
34 Valid range: 1 - 8
39 PLL division factor for pllx_t_ck : valid for PLL2
40 Valid range: 1 - 8
Dst,stm32f4-pll-clock.yaml38 Valid range: 2 - 63
45 Valid range: 50 - 432
63 Valid range: 2 - 15
70 Valid range: 2 - 7
Dst,stm32wba-pll-clock.yaml45 Valid range: 1 - 8
52 Valid range: 4 - 512
58 Valid range: 1 - 128
65 Valid range: 1 - 128
/Zephyr-latest/subsys/testsuite/ztest/src/
Dztest_error_hook.c23 void z_impl_ztest_set_fault_valid(bool valid) in z_impl_ztest_set_fault_valid() argument
25 if (valid) { in z_impl_ztest_set_fault_valid()
37 static inline void z_vrfy_ztest_set_fault_valid(bool valid) in z_vrfy_ztest_set_fault_valid() argument
39 z_impl_ztest_set_fault_valid(valid); in z_vrfy_ztest_set_fault_valid()
85 void z_impl_ztest_set_assert_valid(bool valid) in z_impl_ztest_set_assert_valid() argument
87 if (valid) { in z_impl_ztest_set_assert_valid()
99 static inline void z_vrfy_ztest_set_assert_valid(bool valid) in z_vrfy_ztest_set_assert_valid() argument
101 z_impl_ztest_set_assert_valid(valid); in z_vrfy_ztest_set_assert_valid()
/Zephyr-latest/subsys/shell/modules/kernel_service/thread/
Dthread.c17 bool valid; member
25 entry->valid = true; in thread_valid_cb()
33 .valid = false, in z_thread_is_valid()
38 return entry.valid; in z_thread_is_valid()
/Zephyr-latest/tests/bluetooth/host/keys/bt_keys_foreach_type/src/
Dtest_suite_foreach_type_invalid_inputs.c52 * - Valid value is used for the key type
54 * - Valid callback is passed to bt_keys_foreach_type()
65 * Test empty keys pool list with no key type set and a valid value for the user data.
69 * - Valid value is used for the key type
70 * - Valid value is used for the user data
71 * - Valid callback is passed to bt_keys_foreach_type()
/Zephyr-latest/include/zephyr/arch/x86/
Dmultiboot.h67 * to reassure the loader that we're a valid binary. The exception to this
81 /* The flags in the boot info structure tell us which fields are valid. */
83 #define MULTIBOOT_INFO_FLAGS_MEM BIT(0) /* mem_* valid */
84 #define MULTIBOOT_INFO_FLAGS_CMDLINE BIT(2) /* cmdline* valid */
85 #define MULTIBOOT_INFO_FLAGS_MMAP BIT(6) /* mmap_* valid */
86 #define MULTIBOOT_INFO_FLAGS_FB BIT(12) /* fb_* valid */
/Zephyr-latest/tests/bluetooth/host/id/bt_lookup_id_addr/src/
Dmain.c39 * - A valid ID (< CONFIG_BT_ID_MAX) is used
40 * - A valid address reference is used
66 * - A valid ID (< CONFIG_BT_ID_MAX) is used
67 * - A valid address reference is used
101 * - A valid ID (< CONFIG_BT_ID_MAX) is used
102 * - A valid address reference is used
103 * - bt_keys_find_irk() returns a valid key reference
/Zephyr-latest/dts/bindings/led/
Dti,lp5562.yaml12 Default value is the power-on default. Valid range = 0 - 255
17 Default value is the power-on default. Valid range = 0 - 255
22 Default value is the power-on default. Valid range = 0 - 255
27 Default value is the power-on default. Valid range = 0 - 255
/Zephyr-latest/tests/bluetooth/host/id/bt_le_oob_get_local/src/
Dtest_suite_invalid_inputs.c45 * - A valid reference is used as an argument for the OOB information reference
67 * - A valid reference is used as an argument for the OOB information reference
90 * - A valid reference is used as an argument for the OOB information reference
91 * - ID used is valid
128 * - A valid reference is used as an argument for the OOB information reference
129 * - ID used is valid
173 * - A valid reference is used as an argument for the OOB information reference
174 * - ID used is valid
180 * - bt_le_adv_lookup_legacy() returns a valid advertise parameters reference
226 * - A valid reference is used as an argument for the OOB information reference
[all …]
/Zephyr-latest/dts/bindings/pinctrl/
Dnxp,lpc-iocon-pinctrl.yaml95 Set the pin to analog mode. Sets DIGIMODE=0, and ASW=1. Only valid for
100 Select the pin's alternate analog mode. Valid on LPC55s3x family SOCs
101 when DIGIMODE=0. Only valid for analog type pins. Sets ASW1.
108 Pin output power source. Only valid for I2C mode pins running in I2C
120 I2C glitch filter speed. Only valid for I2C mode pins. Fast mode
128 I2C speed. Only valid for I2C mode pins. Fast mode should be used for
134 mode. Only valid for I2C mode pins in I2C mode
139 valid for I2C mode pins
/Zephyr-latest/tests/bluetooth/host/id/bt_id_set_adv_private_addr/src/
Dtest_suite_invalid_cases.c39 * Test setting advertise private random address with a valid reference, but bt_rand() fails
42 * - A valid advertise parameters reference is used
71 * Test setting advertise private random address with a valid reference, but bt_rand() fails
74 * - A valid advertise parameters reference is used
97 * Test setting advertising private address with a valid advertise parameters reference while
101 * - A valid advertise parameters ID is used (<= CONFIG_BT_ID_MAX)
137 * Test setting advertising private address with a valid advertise parameters reference while
141 * - A valid advertise parameters ID is used (<= CONFIG_BT_ID_MAX)
/Zephyr-latest/subsys/net/l2/ieee802154/
Dieee802154_6lo.h35 * @param iface A valid pointer on the network interface the package was
37 * @param pkt A valid pointer on a 6LoWPAN compressed packet to receive
51 * @param iface A valid pointer on the network interface the package is
53 * @param pkt A valid pointer on a non-compressed IPv6 packet
54 * @param frag_ctx A valid pointer on a fragmentation context.
/Zephyr-latest/tests/bluetooth/host/keys/bt_keys_store/src/
Dmain.c42 * - Key reference points to a valid item
58 zassert_true(returned_key != NULL, "bt_keys_get_addr() returned a non-valid reference"); in ZTEST()
76 * - Key reference points to a valid item
92 zassert_true(returned_key != NULL, "bt_keys_get_addr() returned a non-valid reference"); in ZTEST()
109 * - Key reference points to a valid item
125 zassert_true(returned_key != NULL, "bt_keys_get_addr() returned a non-valid reference"); in ZTEST()
143 * - Key reference points to a valid item
159 zassert_true(returned_key != NULL, "bt_keys_get_addr() returned a non-valid reference"); in ZTEST()
/Zephyr-latest/subsys/bluetooth/mesh/
Dsubnet.h73 bool valid; member
90 bool solicited; /* Subnet received valid Solicitation PDU */
112 /** @brief Call cb on every valid Subnet until it returns a non-zero value.
114 * @param cb Callback to call, or NULL to return first valid subnet. If the callback returns true,
123 /** @brief Iterate through all valid Subnets.
127 * @returns The number of valid subnets.
131 /** @brief Get the next valid Subnet.
133 * If there's only one valid Subnet, this will be returned on every call.
135 * @param sub Previous Subnet, or NULL to get the first valid.
137 * @returns Gets the next valid Subnet after @c sub, or NULL if there are no
[all …]
/Zephyr-latest/include/zephyr/net/
Ddhcpv4.h129 * @param callback A valid Application's callback structure pointer.
130 * @param handler A valid handler function pointer.
153 * @param cb A valid application's callback structure pointer.
160 * @param cb A valid application's callback structure pointer.
168 * @param callback A valid Application's callback structure pointer.
169 * @param handler A valid handler function pointer.
191 * @param cb A valid application's callback structure pointer.
198 * @param cb A valid application's callback structure pointer.
210 * @param iface A valid pointer on an interface
221 * @param iface A valid pointer on an interface
[all …]

12345678910>>...53