Home
last modified time | relevance | path

Searched refs:func (Results 101 – 125 of 513) sorted by relevance

12345678910>>...21

/Zephyr-latest/drivers/pinctrl/
Dpinctrl_mchp_mec5.c146 uint32_t pinmux, func; in pinctrl_configure_pins() local
154 func = MCHP_XEC_PINMUX_FUNC(pinmux); in pinctrl_configure_pins()
155 if (func >= MCHP_AFMAX) { in pinctrl_configure_pins()
159 ret = mec5_config_pin(pinmux, func); in pinctrl_configure_pins()
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/
Dsar_cfg_cli.rst18 Configuration Server. Function calls :c:func:`bt_mesh_sar_cfg_cli_transmitter_get` and
19 :c:func:`bt_mesh_sar_cfg_cli_transmitter_set` are used to get and set the SAR Transmitter state
23 Configuration Server. Function calls :c:func:`bt_mesh_sar_cfg_cli_receiver_get` and
24 :c:func:`bt_mesh_sar_cfg_cli_receiver_set` are used to get and set the SAR Receiver state of the
/Zephyr-latest/tests/bluetooth/tester/src/audio/
Dbtp_micp.c229 .func = micp_supported_commands,
234 .func = micp_discover,
239 .func = micp_mute_read,
244 .func = micp_mute,
409 .func = mics_supported_commands,
414 .func = mics_mute_disable,
419 .func = mics_mute_read,
424 .func = mics_mute,
429 .func = mics_unmute,
Dbtp_mcp.c1314 .func = mcp_supported_commands,
1319 .func = mcp_discover,
1324 .func = mcp_track_duration_read,
1329 .func = mcp_track_position_read,
1334 .func = mcp_track_position_set,
1339 .func = mcp_playback_speed_read,
1344 .func = mcp_playback_speed_set,
1349 .func = mcp_seeking_speed_read,
1354 .func = mcp_read_icon_obj_id,
1359 .func = mcp_read_next_track_obj_id,
[all …]
/Zephyr-latest/doc/kernel/services/timing/
Dclocks.rst22 The kernel presents a "cycle" count via the :c:func:`k_cycle_get_32`
23 and :c:func:`k_cycle_get_64` APIs. The intent is that this counter
30 :c:func:`sys_clock_hw_cycles_per_sec` (which on almost all
56 For example: :c:func:`k_ms_to_ticks_ceil32` will convert a
59 :c:func:`k_cyc_to_us_floor64` will convert a measured cycle count
75 This is available at all times via :c:func:`k_uptime_get`, which
82 :c:func:`k_uptime_ticks`.
91 * Kernel blocking operations like :c:func:`k_sem_take` or
92 :c:func:`k_queue_get` may provide a timeout after which the
109 within the expiry function passed to :c:func:`k_timer_init` or the work handler
[all …]
/Zephyr-latest/tests/bluetooth/tester/src/
Dbtp_gap.c93 .func = read_car_cb,
1777 .func = supported_commands,
1783 .func = controller_index_list,
1788 .func = controller_info,
1793 .func = set_powered,
1798 .func = set_connectable,
1803 .func = set_discoverable,
1808 .func = set_bondable,
1813 .func = start_advertising,
1818 .func = start_directed_advertising,
[all …]
/Zephyr-latest/include/zephyr/logging/
Dlog_output.h97 log_output_func_t func; member
130 .func = _func, \
217 log_output_write(output->func, output->buf, output->control_block->offset, in log_output_flush()
/Zephyr-latest/tests/bluetooth/host/id/bt_id_reset/src/
Dtest_suite_invalid_inputs.c154 static void bt_le_ext_adv_foreach_custom_fake(void (*func)(struct bt_le_ext_adv *adv, void *data), in bt_le_ext_adv_foreach_custom_fake()
159 __ASSERT_NO_MSG(func != NULL); in bt_le_ext_adv_foreach_custom_fake()
172 func(&adv_params, data); in bt_le_ext_adv_foreach_custom_fake()
/Zephyr-latest/subsys/net/ip/
Dtp_priv.h43 const char *func; member
68 const char *func; member
/Zephyr-latest/doc/kernel/memory_management/
Dheap.rst21 application-controlled memory using :c:func:`k_heap_init`.
26 Memory can be allocated from a heap using :c:func:`k_heap_alloc`,
40 Memory allocated with :c:func:`k_heap_alloc` must be released using
41 :c:func:`k_heap_free`. Similar to standard C ``free()``, the pointer
43 returned by :c:func:`k_heap_alloc` for the same heap. Freeing a
112 via :c:func:`sys_multi_heap_init`, after which each heap can be added
113 to the managed set via :c:func:`sys_multi_heap_add_heap`. No
120 :c:func:`sys_multi_heap_alloc` and
121 :c:func:`sys_multi_heap_aligned_alloc`. These behave identically to
132 :c:func:`sys_multi_heap_realloc` and
[all …]
/Zephyr-latest/samples/drivers/led/pwm/boards/
Dmec172xevb_assy6906.overlay46 microchip,output-func-invert;
50 microchip,output-func-invert;
54 microchip,output-func-invert;
58 microchip,output-func-invert;
Dmec15xxevb_assy6853.overlay41 microchip,output-func-invert;
45 microchip,output-func-invert;
49 microchip,output-func-invert;
/Zephyr-latest/subsys/bluetooth/host/
Decc.c175 if (cb->func) { in generate_pub_key()
176 cb->func(err ? NULL : pub_key); in generate_pub_key()
257 __ASSERT_NO_MSG(new_cb->func != NULL); in bt_pub_key_gen()
258 new_cb->func(debug_public_key); in bt_pub_key_gen()
302 if (cb->func) { in bt_pub_key_hci_disrupted()
303 cb->func(NULL); in bt_pub_key_hci_disrupted()
Ddata.c17 bool (*func)(struct bt_data *data, void *user_data), in bt_data_parse()
40 if (!func(&data, user_data)) { in bt_data_parse()
/Zephyr-latest/drivers/adc/
Dadc_emul.c45 adc_emul_value_func func; member
155 int adc_emul_value_func_set(const struct device *dev, unsigned int chan, adc_emul_value_func func, in adc_emul_value_func_set() argument
171 chan_cfg->func = func; in adc_emul_value_func_set()
181 adc_emul_value_func func, void *func_data) in adc_emul_raw_value_func_set() argument
196 chan_cfg->func = func; in adc_emul_raw_value_func_set()
480 err = chan_cfg->func(data->dev, chan, chan_cfg->func_data, in adc_emul_get_chan_value()
494 err = chan_cfg->func(data->dev, chan, chan_cfg->func_data, &input_mV); in adc_emul_get_chan_value()
604 chan_cfg->func = NULL; in adc_emul_init()
/Zephyr-latest/subsys/bluetooth/audio/
Dbap_iso.c89 void bt_bap_iso_foreach(bt_bap_iso_func_t func, void *user_data) in bt_bap_iso_foreach() argument
99 iter = func(iso, user_data); in bt_bap_iso_foreach()
110 bt_bap_iso_func_t func; member
119 found = param->func(iso, param->user_data); in bt_bap_iso_find_cb()
127 struct bt_bap_iso *bt_bap_iso_find(bt_bap_iso_func_t func, void *user_data) in bt_bap_iso_find() argument
131 .func = func, in bt_bap_iso_find()
Dbap_iso.h45 void bt_bap_iso_foreach(bt_bap_iso_func_t func, void *user_data);
46 struct bt_bap_iso *bt_bap_iso_find(bt_bap_iso_func_t func, void *user_data);
/Zephyr-latest/soc/renesas/rzt2m/
Dpinctrl_soc.h19 uint32_t func; member
38 .func = RZT2M_GET_FUNC(DT_PROP_BY_IDX(node_id, prop, idx)), \
/Zephyr-latest/tests/subsys/dsp/utils/src/
Df32.c20 #define DEFINE_SHIFT_F32_CASE(n, args, func) \ argument
21 RE_DEFINE_TEST_VARIANT3(shift_f32, func, n, __DEBRACKET args)
Df64.c20 #define DEFINE_SHIFT_F64_CASE(n, args, func) \ argument
21 RE_DEFINE_TEST_VARIANT3(shift_f64, func, n, __DEBRACKET args)
/Zephyr-latest/drivers/modem/
Dmodem_cmd_handler.h31 .func = func_cb_, \
41 .func = func_cb_, \
53 .func = func_cb_, \
75 int (*func)(struct modem_cmd_handler_data *data, uint16_t len, member
/Zephyr-latest/doc/kernel/data_structures/
Dspsc_pbuf.rst14 Packets are added to the buffer using :c:func:`spsc_pbuf_write` which copies a
17 Packets are copied out of the buffer using :c:func:`spsc_pbuf_read`.
/Zephyr-latest/doc/releases/
Dmigration-guide-4.0.rst132 :c:func:`gpio_pin_set`. (:github:`65797`)
225 * The APIs :c:func:`gnss_set_periodic_config` and :c:func:`gnss_get_periodic_config` have
281 * Users of :c:func:`uart_irq_tx_ready` now need to check for ``ret > 0`` to ensure that the FIFO
283 number of bytes that can be provided to :c:func:`uart_fifo_fill` without truncation.
351 * The Unicast Server has a new registration function :c:func:`bt_bap_unicast_server_register` which
358 :c:func:`bt_bap_unicast_server_register` needs to be called once before using the Unicast Server,
359 and more specifically prior to calling :c:func:`bt_bap_unicast_server_register_cb` for the first
361 :c:func:`bt_bap_unicast_server_unregister` has been called.
364 * The Coordinated Set Coordinator functions :c:func:`bt_csip_set_coordinator_lock` and
365 :c:func:`bt_csip_set_coordinator_release` now require that :kconfig:option:`CONFIG_BT_BONDABLE`
[all …]
/Zephyr-latest/doc/services/debugging/
Dgdbstub.rst22 :c:func:`gdb_init` starts gdbstub service and waits for a GDB
52 property of the chosen node to the spare UART device so that :c:func:`printk`
55 * For boards with only one UART device, :c:func:`printk` and logging
71 * Execution should now be paused at :c:func:`gdb_init`.
192 a different source line. Now that it finished executing :c:func:`arch_gdb_init`
193 and is continuing in :c:func:`gdb_init`.
216 set up a breakpoint at :c:func:`main`, and let code execution continue
229 Once code execution reaches :c:func:`main`, execution will be stopped
237 Now GDB is waiting at the beginning of :c:func:`main`:
264 skipping the interior of :c:func:`test`.
[all …]
/Zephyr-latest/tests/bluetooth/audio/mocks/src/
Dgatt.c209 bt_gatt_attr_func_t func, void *user_data) in gatt_foreach_iter() argument
235 result = func(attr, handle, user_data); in gatt_foreach_iter()
247 uint16_t num_matches, bt_gatt_attr_func_t func, void *user_data) in foreach_attr_type_dyndb() argument
267 attr_data, &num_matches, func, in foreach_attr_type_dyndb()
279 bt_gatt_attr_func_t func, void *user_data) in bt_gatt_foreach_attr_type() argument
304 func, user_data) == in bt_gatt_foreach_attr_type()
316 num_matches, func, user_data); in bt_gatt_foreach_attr_type()
487 zassert_not_null(params->func, "'%s()' was called with incorrect '%s' value", __func__, in bt_gatt_discover()
535 params->func(conn, &attr, params); in bt_gatt_discover()

12345678910>>...21