Home
last modified time | relevance | path

Searched full:previous (Results 1 – 25 of 573) sorted by relevance

12345678910>>...23

/Zephyr-latest/tests/kernel/events/event_api/src/
Dtest_event_apis.c344 uint32_t previous; in ZTEST() local
356 previous = k_event_post(&event, events); in ZTEST()
357 zassert_equal(previous, 0x0000); in ZTEST()
361 previous = k_event_post(&event, events); in ZTEST()
362 zassert_equal(previous, events & 0xAAAA); in ZTEST()
366 previous = k_event_set(&event, events); in ZTEST()
367 zassert_equal(previous, 0xAAAA | 0x55555ABC); in ZTEST()
379 previous = k_event_set_masked(&event, 0, events_mask); in ZTEST()
380 zassert_equal(previous, 0x11111111); in ZTEST()
384 previous = k_event_set_masked(&event, 0, events_mask); in ZTEST()
[all …]
/Zephyr-latest/subsys/net/
DKconfig.template.log_config.default.net30 Write to log with NET_WARN or LOG_WRN in addition to previous level.
35 Write to log with NET_INFO or LOG_INF in addition to previous levels.
40 Write to log with NET_DBG or LOG_DBG in addition to previous levels.
DKconfig.template.log_config.net29 Write to log with NET_WARN or LOG_WRN in addition to previous level.
34 Write to log with NET_INFO or LOG_INF in addition to previous levels.
39 Write to log with NET_DBG or LOG_DBG in addition to previous levels.
/Zephyr-latest/include/zephyr/sys/
Datomic.h284 * @return Previous value of @a target.
298 * @return Previous value of @a target.
311 * @return Previous value of @a target.
324 * @return Previous value of @a target.
358 * the previous value of @a target.
365 * @return Previous value of @a target.
373 * the previous value of @a target.
380 * @return Previous value of @a target.
387 * This routine atomically sets @a target to zero and returns its previous
394 * @return Previous value of @a target.
[all …]
/Zephyr-latest/kernel/
Datomic_c.c159 * @return The previous value from <target>
189 * @return The previous value from <target>
235 * written at <target> and the previous value at <target> is returned.
240 * @return The previous value from <target>
292 * at <target>, and the previous value at <target> is returned.
297 * @return The previous value from <target>
322 * at <target>, and the previous value at <target> is returned.
327 * @return The previous value from <target>
352 * at <target>, and the previous value at <target> is returned.
357 * @return The previous value from <target>
[all …]
/Zephyr-latest/drivers/sensor/nxp/nxp_kinetis_temp/
Dtemp_kinetis.c48 uint16_t previous[TEMP_KINETIS_ADC_SAMPLES]; in temp_kinetis_sample_fetch() local
60 memcpy(previous, data->buffer, sizeof(previous)); in temp_kinetis_sample_fetch()
72 if (previous[0] != 0 && previous[1] != 0) { in temp_kinetis_sample_fetch()
73 for (i = 0; i < ARRAY_SIZE(previous); i++) { in temp_kinetis_sample_fetch()
75 (previous[i] >> 1); in temp_kinetis_sample_fetch()
/Zephyr-latest/doc/connectivity/networking/
Dnet_pkt_processing_stats.rst54 took for a network packet to go from previous state to next.
63 queue. It took **15** microseconds from previous state.
65 network packet. It took **23** microseconds from previous state.
77 queue. It took **6** microseconds from previous state.
79 It took **11** microseconds from previous state.
/Zephyr-latest/modules/hal_nordic/nrfx/
Dnrfx_glue.h159 * @brief Macro for storing a value to an atomic object and returning its previous value.
164 * @return Previous value of the atomic object.
169 …* @brief Macro for running a bitwise OR operation on an atomic object and returning its previous v…
174 * @return Previous value of the atomic object.
180 * and returning its previous value.
185 * @return Previous value of the atomic object.
191 * and returning its previous value.
196 * @return Previous value of the atomic object.
202 * and returning its previous value.
207 * @return Previous value of the atomic object.
[all …]
/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/priv_beacon/
Dpriv_proxy_node_id.sh17 # 3. TC device verifies that the previous advertisement is finished
22 # of the previous Net ID.
/Zephyr-latest/samples/boards/nordic/system_off/src/
Dretained.h20 /* Cumulative uptime from all previous sessions up through
46 * from previous sessions.
/Zephyr-latest/subsys/net/l2/ethernet/gptp/
Dgptp_md.h29 /* Time of the current grandmaster compared to the previous. */
41 /* Frequency of the current grandmaster compared to the previous. */
/Zephyr-latest/doc/services/device_mgmt/
Dmcumgr_backporting.rst13 version of Zephyr (backports), and one for issues that are being fixed only in a previous version.
39 Applying fixes to previous versions of MCUmgr
42 This section indicates how to apply fixes to previous versions of MCUmgr.
49 In case the reported bug in a previous version has already been fixed in the current version, the d…
67 are ported to a previous version.
74 1. Port the fix commits from the current version to the previous version.
/Zephyr-latest/tests/net/lib/lwm2m/observation/src/
Dlwm2m_observation.c88 zassert_true(is_after, "Next element %p must be before previous %p", in assert_path_list_order()
95 "than previous max object %d", in assert_path_list_order()
110 "than previous max object instance %d", in assert_path_list_order()
125 "than previous max resource %d", in assert_path_list_order()
139 "than previous max resource instance %d", in assert_path_list_order()
147 "than previous max object %d", in assert_path_list_order()
155 "than previous max object instance %d", in assert_path_list_order()
163 "than previous max resource %d", in assert_path_list_order()
171 "than previous max resource instance %d", in assert_path_list_order()
177 "Next element equals previous up to level %d " in assert_path_list_order()
[all …]
/Zephyr-latest/tests/bsim/bluetooth/mesh/src/
Dtest_advertiser.c228 uint8_t previous = adv->b.data[1]; in send_order_start_cb() local
230 LOG_INF("tx start: current(%d) previous(%d)", current, previous); in send_order_start_cb()
232 ASSERT_EQUAL(previous_checker, previous); in send_order_start_cb()
254 uint8_t previous; in receive_order_scan_cb() local
260 previous = net_buf_simple_pull_u8(buf); in receive_order_scan_cb()
261 LOG_INF("rx: current(%d) previous(%d)", current, previous); in receive_order_scan_cb()
262 ASSERT_EQUAL(previous_checker, previous); in receive_order_scan_cb()
293 uint8_t previous; in send_adv_array() local
297 previous = 0xff; in send_adv_array()
304 send_adv_buf(*adv, (uint8_t)i, previous); in send_adv_array()
[all …]
/Zephyr-latest/tests/subsys/debug/coredump_backends/src/
Dmain.c81 /* Cannot proceed with previous errors */ in test_has_stored_dump()
122 /* Cannot proceed with previous errors */ in test_verify_stored_dump()
161 /* Cannot proceed with previous errors */ in test_invalidate_stored_dump()
192 /* Cannot proceed with previous errors */ in test_erase_stored_dump()
223 /* Cannot proceed with previous errors */ in test_get_stored_dump_size()
/Zephyr-latest/tests/arch/arm/arm_runtime_nmi/
DREADME.txt24 make clean # discard results of previous builds
27 make pristine # discard results of previous builds
/Zephyr-latest/tests/arch/arm/arm_irq_vector_table/
DREADME.txt24 make clean # discard results of previous builds
27 make pristine # discard results of previous builds
/Zephyr-latest/tests/kernel/xip/
DREADME.txt23 make clean # discard results of previous builds
26 make pristine # discard results of previous builds
/Zephyr-latest/tests/bluetooth/mesh/blob_io_flash/
Dprj.conf7 # Start padding can overlap data of previous chunk; flash drivers can only pull bits down to 0,
/Zephyr-latest/dts/bindings/test/
Dvnd,great-grandchild-bindings.yaml7 Previous versions of Zephyr only allowed up to two levels of
/Zephyr-latest/samples/bluetooth/extended_adv/
DREADME.rst58 Connection object available from previous conn. Disconnect is complete!
65 Connection object available from previous conn. Disconnect is complete!
/Zephyr-latest/tests/kernel/mutex/sys_mutex/
DREADME.txt23 make clean # discard results of previous builds
26 make pristine # discard results of previous builds
/Zephyr-latest/tests/kernel/pending/
DREADME.txt24 make clean # discard results of previous builds
27 make pristine # discard results of previous builds
/Zephyr-latest/tests/arch/arm/arm_sw_vector_relay/
DREADME.txt25 ninja/make clean # discard results of previous builds
28 ninja/make pristine # discard results of previous builds
/Zephyr-latest/include/zephyr/
Dsmf.h102 /** Previous state the state machine executed */
103 const struct smf_state *previous; member
132 * @brief Changes a state machines state. This handles exiting the previous

12345678910>>...23