Home
last modified time | relevance | path

Searched refs:clients (Results 1 – 25 of 39) sorted by relevance

12

/Zephyr-Core-3.4.0/drivers/interrupt_controller/
Dintc_shared_irq.c49 struct shared_irq_runtime *clients = dev->data; in isr_register() local
54 if (!clients->client[i].isr_dev) { in isr_register()
55 clients->client[i].isr_dev = isr_dev; in isr_register()
56 clients->client[i].isr_func = isr_func; in isr_register()
71 struct shared_irq_runtime *clients = dev->data; in enable() local
76 if (clients->client[i].isr_dev == isr_dev) { in enable()
77 clients->client[i].enabled = 1U; in enable()
85 static int last_enabled_isr(struct shared_irq_runtime *clients, int count) in last_enabled_isr() argument
90 if (clients->client[i].enabled) { in last_enabled_isr()
104 struct shared_irq_runtime *clients = dev->data; in disable() local
[all …]
DKconfig.it8xxx215 Configures the maximum number of clients allowed per shared
/Zephyr-Core-3.4.0/subsys/sip_svc/
Dsip_svc_subsys.c150 if (ctrl->clients[i].token == c_token) { in sip_svc_get_c_idx()
177 ctrl->clients[c_idx].id = c_idx; in sip_svc_register()
178 ctrl->clients[c_idx].token = sip_svc_generate_c_token(); in sip_svc_register()
179 ctrl->clients[c_idx].state = SIP_SVC_CLIENT_ST_IDLE; in sip_svc_register()
180 ctrl->clients[c_idx].priv_data = priv_data; in sip_svc_register()
182 LOG_INF("Register the client channel 0x%x", ctrl->clients[c_idx].token); in sip_svc_register()
183 return ctrl->clients[c_idx].token; in sip_svc_register()
213 if (ctrl->clients[c_idx].id == SIP_SVC_ID_INVALID) { in sip_svc_unregister()
218 if (ctrl->clients[c_idx].active_trans_cnt != 0) { in sip_svc_unregister()
223 if (ctrl->clients[c_idx].state != SIP_SVC_CLIENT_ST_IDLE) { in sip_svc_unregister()
[all …]
Dsip_svc_shell.c364 if (ctrl->clients[i].id != SIP_SVC_ID_INVALID) { in cmd_info()
365 if (ctrl->clients[i].state <= SIP_SVC_CLIENT_ST_ABORT) { in cmd_info()
366 state_str = state_str_list[ctrl->clients[i].state]; in cmd_info()
369 shell_print(sh, "%08x \t%-10s\t%-9d\n", ctrl->clients[i].token, in cmd_info()
370 state_str, ctrl->clients[i].active_trans_cnt); in cmd_info()
DKconfig49 Maximum number of clients inside sip_svc subsystem per controller.
/Zephyr-Core-3.4.0/lib/os/
Donoff.c217 && !sys_slist_is_empty(&mgr->clients)) { in process_recheck()
223 && !sys_slist_is_empty(&mgr->clients)) { in process_recheck()
238 sys_slist_t *clients, in process_complete() argument
245 *clients = mgr->clients; in process_complete()
246 sys_slist_init(&mgr->clients); in process_complete()
250 *clients = mgr->clients; in process_complete()
251 sys_slist_init(&mgr->clients); in process_complete()
259 SYS_SLIST_FOR_EACH_CONTAINER(clients, cp, node) { in process_complete()
302 sys_slist_t clients; in process_event() local
324 sys_slist_init(&clients); in process_event()
[all …]
/Zephyr-Core-3.4.0/subsys/bluetooth/audio/
Dmcs.c72 } clients[CONFIG_BT_MAX_CONN]; variable
77 memset(&clients[bt_conn_index(conn)], 0, sizeof(struct client_state)); in disconnected()
92 struct client_state *client = &clients[bt_conn_index(conn)]; in read_player_name()
134 struct client_state *client = &clients[bt_conn_index(conn)]; in read_icon_url()
158 struct client_state *client = &clients[bt_conn_index(conn)]; in read_track_title()
183 struct client_state *client = &clients[bt_conn_index(conn)]; in read_track_duration()
205 struct client_state *client = &clients[bt_conn_index(conn)]; in read_track_position()
251 struct client_state *client = &clients[bt_conn_index(conn)]; in read_playback_speed()
295 struct client_state *client = &clients[bt_conn_index(conn)]; in read_seeking_speed()
332 struct client_state *client = &clients[bt_conn_index(conn)]; in read_current_track_id()
[all …]
DKconfig.has21 This option enables support for clients to subscribe for notifications
46 This option enables support for clients to subscribe for notifications
DKconfig.pacs44 This option enables support for clients to write to the Sink PAC
83 This option enables support for clients to write to the Source PAC
DKconfig.vocs44 Control Service clients.
/Zephyr-Core-3.4.0/samples/subsys/sip_svc/boards/
Dintel_socfpga_agilex_socdk.overlay10 zephyr,num-clients = <1>;
/Zephyr-Core-3.4.0/subsys/bluetooth/mesh/
Dproxy_srv.c70 } clients[CONFIG_BT_MAX_CONN] = { variable
80 return &clients[bt_conn_index(conn)]; in find_client()
362 for (i = 0; i < ARRAY_SIZE(clients); i++) { in bt_mesh_proxy_beacon_send()
363 if (clients[i].cli) { in bt_mesh_proxy_beacon_send()
364 beacon_send(&clients[i], sub); in bt_mesh_proxy_beacon_send()
882 for (int i = 0; i < ARRAY_SIZE(clients); i++) { in svc_reg_work_handler()
883 if (clients[i].cli) { in svc_reg_work_handler()
884 clients[i].filter_type = ACCEPT; in svc_reg_work_handler()
914 for (i = 0; i < ARRAY_SIZE(clients); i++) { in bt_mesh_proxy_gatt_disconnect()
915 struct bt_mesh_proxy_client *client = &clients[i]; in bt_mesh_proxy_gatt_disconnect()
[all …]
/Zephyr-Core-3.4.0/doc/services/resource_management/
Dindex.rst7 use at runtime among multiple clients. These include power rails,
26 An on-off manager supports an arbitrary number of clients of a service
53 immediately turned on again (where context allows) and waiting clients
56 Requests are reference counted, but not tracked. That means clients are
60 shut out, and the manager does not maintain a record of specific clients
/Zephyr-Core-3.4.0/include/zephyr/sip_svc/
Dsip_svc_controller.h69 struct sip_svc_client *clients; member
/Zephyr-Core-3.4.0/doc/hardware/peripherals/
Dfuel_gauge.rst29 The Fuel Gauge API explicitly provides no caching for its clients.
/Zephyr-Core-3.4.0/tests/net/lib/mqtt_sn_client/src/
Dmqtt_sn_client.c87 static ZTEST_BMEM struct mqtt_sn_client clients[3]; variable
95 client = &clients[i++]; in setup()
/Zephyr-Core-3.4.0/subsys/bluetooth/host/
DKconfig.gatt118 characteristics which can be used by clients to detect if anything has
255 bool "Allow to write name by remote GATT clients"
259 Enabling this option allows remote GATT clients to write to device
264 bool "Encryption required to write name by remote GATT clients"
272 bool "Authentication required to write name by remote GATT clients"
/Zephyr-Core-3.4.0/include/zephyr/sys/
Donoff.h158 sys_slist_t clients; member
/Zephyr-Core-3.4.0/subsys/net/lib/mqtt_sn/
DKconfig35 int "Maximum number of clients Keep alive time for MQTT-SN (in seconds)"
/Zephyr-Core-3.4.0/doc/connectivity/networking/api/
Dmqtt.rst24 MQTT clients require an MQTT server to connect to. Such a server, called an MQTT Broker,
26 published by clients. There are many implementations of MQTT brokers, one of them
48 of the MQTT client and can be shared among MQTT clients:
Dmqtt_sn.rst24 MQTT-SN clients require an MQTT-SN gateway to connect to. These gateways translate between
56 The MQTT-SN library will inform clients about certain events using a callback.
/Zephyr-Core-3.4.0/subsys/net/lib/tls_credentials/
DKconfig48 Allows clients of the socket APIs to specify filenames
/Zephyr-Core-3.4.0/samples/boards/nrf/mesh/onoff-app/
DREADME.rst23 After provisioning, the button clients must
35 of onoff clients from 4 to 2.
/Zephyr-Core-3.4.0/dts/arm64/intel/
Dintel_socfpga_agilex.dtsi118 zephyr,num-clients = <2>;
/Zephyr-Core-3.4.0/subsys/net/lib/mqtt/
DKconfig21 int "Maximum number of clients Keep alive time for MQTT (in seconds)"

12