/Zephyr-latest/tests/bluetooth/tester/src/ |
D | btp_ias.c | 18 static bool initialized; variable 26 if (!initialized) { in alert_stop() 40 if (!initialized) { in alert_start() 53 if (!initialized) { in alert_high_start() 70 initialized = true; in tester_init_ias() 77 initialized = false; in tester_unregister_ias()
|
/Zephyr-latest/subsys/bluetooth/mesh/ |
D | op_agg_cli.c | 69 cli.ctx.initialized = true; in handle_status() 75 cli.ctx.initialized = true; in handle_status() 90 cli.ctx.initialized = true; in handle_status() 132 if (cli.ctx.initialized) { in bt_mesh_op_agg_cli_seq_start() 140 cli.ctx.initialized = true; in bt_mesh_op_agg_cli_seq_start() 158 if (!cli.ctx.initialized) { in bt_mesh_op_agg_cli_seq_send() 159 LOG_ERR("Opcodes Aggregator not initialized"); in bt_mesh_op_agg_cli_seq_send() 169 cli.ctx.initialized = false; in bt_mesh_op_agg_cli_seq_send() 183 cli.ctx.initialized = false; in bt_mesh_op_agg_cli_seq_abort() 188 return cli.ctx.initialized; in bt_mesh_op_agg_cli_seq_is_started() [all …]
|
D | op_agg.h | 8 /** Context is initialized. */ 9 bool initialized; member
|
/Zephyr-latest/drivers/sensor/bosch/bmi323/ |
D | Kconfig | 20 runtime management is used, it is initialized into the suspended state, 22 consumption, otherwise it is resumed when initialized. When resumed, 23 the bus is initialized, the feature engine is enabled, and INT1 is 24 initialized.
|
/Zephyr-latest/subsys/shell/backends/ |
D | shell_dummy.c | 23 if (sh_dummy->initialized) { in init() 27 sh_dummy->initialized = true; in init() 36 if (!sh_dummy->initialized) { in uninit() 40 sh_dummy->initialized = false; in uninit() 49 if (!sh_dummy->initialized) { in enable() 62 if (!sh_dummy->initialized) { in write() 84 if (!sh_dummy->initialized) { in read()
|
/Zephyr-latest/kernel/ |
D | Kconfig.init | 31 devices are initialized 39 devices are initialized 56 devices are initialized 64 devices are initialized
|
/Zephyr-latest/include/zephyr/data/ |
D | jwt.h | 29 * limits on the amount of available space. It should be initialized 77 * Add JWT payload to a previously initialized builder with the following fields: 84 * @param builder A previously initialized builder. 100 * Sign a previously initialized with payload JWT. 102 * @param builder A previously initialized builder with payload.
|
/Zephyr-latest/drivers/interrupt_controller/ |
D | Kconfig.shared_irq | 19 Shared IRQ are initialized on POST_KERNEL init level. They 20 have to be initialized before any device that uses them.
|
/Zephyr-latest/dts/bindings/serial/ |
D | segger,rtt-uart.yaml | 16 Not used for RTT channel 0 as channel 0 is initialized at compile time, 24 Not used for RTT channel 0 as channel 0 is initialized at compile time,
|
/Zephyr-latest/include/zephyr/shell/ |
D | shell_string_conv.h | 20 * to avoid err check bloating. Passed err reference should be initialized 37 * to avoid err check bloating. Passed err reference should be initialized 54 * to avoid err check bloating. Passed err reference should be initialized 71 * to avoid err check bloating. Passed err reference should be initialized
|
/Zephyr-latest/lib/posix/options/ |
D | rwlock.c | 26 bool initialized: 1; member 42 * We reserve the MSB to mark a pthread_rwlock_t as initialized (from the 64 /* if the provided rwlock does not claim to be initialized, its invalid */ in get_posix_rwlock() 77 /* The rwlock claims to be initialized but is actually not */ in get_posix_rwlock() 78 LOG_DBG("RWlock claims to be initialized (%x)", rwlock); in get_posix_rwlock() 100 /* Record the associated posix_rwlock in rwl and mark as initialized */ in to_posix_rwlock() 132 LOG_DBG("Initialized rwlock %p", rwl); in pthread_rwlock_init() 401 if (a == NULL || !a->initialized) { in pthread_rwlockattr_getpshared() 414 if (a == NULL || !a->initialized) { in pthread_rwlockattr_setpshared() 436 .initialized = true, in pthread_rwlockattr_init() [all …]
|
D | mutex.c | 37 * We reserve the MSB to mark a pthread_mutex_t as initialized (from the 59 /* if the provided mutex does not claim to be initialized, its invalid */ in get_posix_mutex() 72 /* The mutex claims to be initialized but is actually not */ in get_posix_mutex() 73 LOG_DBG("Mutex claims to be initialized (%x)", mu); in get_posix_mutex() 96 /* Record the associated posix_mutex in mu and mark as initialized */ in to_posix_mutex() 242 LOG_DBG("Initialized mutex %p", m); in pthread_mutex_init() 358 a->initialized = true; in pthread_mutexattr_init() 367 if (a == NULL || !a->initialized) { in pthread_mutexattr_destroy() 385 if (a == NULL || type == NULL || !a->initialized) { in pthread_mutexattr_gettype() 403 if (a == NULL || !a->initialized) { in pthread_mutexattr_settype()
|
D | cond.c | 24 * We reserve the MSB to mark a pthread_cond_t as initialized (from the 46 /* if the provided cond does not claim to be initialized, its invalid */ in get_posix_cond() 59 /* The cond claims to be initialized but is actually not */ in get_posix_cond() 60 LOG_DBG("Cond claims to be initialized (%x)", cond); in get_posix_cond() 83 /* Record the associated posix_cond in mu and mark as initialized */ in to_posix_cond() 185 LOG_DBG("Initialized cond %p", cv); in pthread_cond_init()
|
/Zephyr-latest/dts/bindings/gpio/ |
D | semtech,sx1509b.yaml | 28 Bit mask identifying pins that should be initialized as outputs 35 Bit mask identifying pins that should be initialized as outputs
|
/Zephyr-latest/include/zephyr/ipc/ |
D | icmsg_me.h | 78 * instance. The structure is initialized with 106 * instance. The structure is initialized with 119 * instance. The structure is initialized with 133 * instance. The structure is initialized with 159 * instance. The structure is initialized with 181 * instance. The structure is initialized with 203 * instance. The structure is initialized with 222 * instance. The structure is initialized with 234 * instance. The structure is initialized with
|
/Zephyr-latest/drivers/timer/ |
D | silabs_sleeptimer_timer.c | 42 bool initialized; /* Set to true when timer is initialized */ member 95 if (!IS_ENABLED(CONFIG_TICKLESS_KERNEL) || !timer->initialized) { in sleeptimer_clock_elapsed() 118 return g_sleeptimer_timer_data.initialized ? sl_sleeptimer_get_tick_count() : 0; in sys_clock_cycle_get_32() 147 timer->initialized = true; in sleeptimer_init()
|
/Zephyr-latest/samples/bluetooth/tmap_bmr/src/ |
D | main.c | 27 printk("Bluetooth initialized\n"); in main() 39 printk("VCP initialized\n"); in main()
|
/Zephyr-latest/samples/subsys/usb/shell/ |
D | README.rst | 54 dev: USB descriptors initialized 59 dev: USB initialized 61 host: USB host initialized
|
/Zephyr-latest/drivers/wifi/simplelink/ |
D | simplelink.c | 39 bool initialized; member 73 (!simplelink_data.initialized)) { in simplelink_wifi_cb() 74 simplelink_data.initialized = true; in simplelink_wifi_cb() 82 (!simplelink_data.initialized)) { in simplelink_wifi_cb() 83 simplelink_data.initialized = true; in simplelink_wifi_cb() 243 simplelink_data.initialized = false; in simplelink_iface_init() 296 LOG_DBG("SimpleLink driver Initialized"); in simplelink_init()
|
/Zephyr-latest/drivers/adc/ |
D | adc_gecko.c | 24 bool initialized; member 112 /* Verify all requested channels are initialized and store resolution */ in start_read() 116 /* Iterate through all channels and check if they are initialized */ in start_read() 123 if (!data->channel_config[index].initialized) { in start_read() 124 LOG_DBG("Channel not initialized"); in start_read() 234 channel_config->initialized = false; in adc_gecko_channel_setup() 261 channel_config->initialized = true; in adc_gecko_channel_setup()
|
/Zephyr-latest/tests/drivers/sdhc/src/ |
D | main.c | 69 zassert_not_equal(props.f_max, 0xFF, "props structure not initialized"); in ZTEST() 70 zassert_not_equal(props.f_min, 0xFF, "props structure not initialized"); in ZTEST() 71 zassert_not_equal(props.power_delay, 0xFF, "props structure not initialized"); in ZTEST() 72 zassert_not_equal(props.max_current_330, 0xFF, "props structure not initialized"); in ZTEST() 73 zassert_not_equal(props.max_current_300, 0xFF, "props structure not initialized"); in ZTEST() 74 zassert_not_equal(props.max_current_180, 0xFF, "props structure not initialized"); in ZTEST()
|
/Zephyr-latest/arch/xtensa/core/ |
D | crt1.S | 60 * - C calling context not initialized: 61 * - PS not initialized 62 * - SP not initialized 63 * - the following are initialized: 129 * does not have BSS initialized! In particular, __memmap_init() 132 * assume they are yet initialized to zero.
|
/Zephyr-latest/subsys/random/ |
D | random_xoshiro128.c | 38 static bool initialized; variable 62 initialized = true; in xoshiro128_init_state() 101 if (unlikely(!initialized)) { in z_impl_sys_rand_get() 117 * initialized properly before initializing ourselves.
|
/Zephyr-latest/samples/bluetooth/tmap_bms/src/ |
D | main.c | 28 printk("Bluetooth initialized\n"); in init() 54 printk("CAP initialized\n"); in main()
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | blob_flash.rst | 14 It must be initialized by calling :c:func:`bt_mesh_blob_flash_rd_init` before being passed to the 22 It must be initialized by calling :c:func:`bt_mesh_blob_flash_rd_init` before being passed to the
|