Home
last modified time | relevance | path

Searched full:accept (Results 1 – 25 of 384) sorted by relevance

12345678910>>...16

/Zephyr-latest/samples/bluetooth/peripheral_accept_list/
DREADME.rst2 :name: Peripheral Accept List
5 Advertise and accept connections only from devices on an accept list.
10 This application demonstrates the Bluetooth LE advertising accept filter list feature.
13 accepted if the central device is on the accept list. Additionally, scan response
14 data will only be sent to devices that are on the accept list. As a result, some
16 in the scan results if the central device is not on the accept list.
Dsample.yaml2 name: Bluetooh Peripheral Accept List
Dprj.conf12 CONFIG_BT_DEVICE_NAME="Accept list"
/Zephyr-latest/tests/modules/thrift/ThriftTest/
Doverlay-tls.conf12 # tcp socket (accept): 1
13 # tls socket (accept): 1
16 # socketpairs for cancellation (accept, client, server): 6
/Zephyr-latest/tests/bluetooth/l2cap/src/
Dmain.c24 .accept = l2cap_accept,
28 .accept = l2cap_accept,
33 .accept = l2cap_accept,
38 .accept = l2cap_accept,
/Zephyr-latest/include/zephyr/drivers/interrupt_controller/
Dintc_esp32c3.h19 #define ESP_INTR_FLAG_LEVEL1 (1<<1) /* Accept a Level 1 int vector, lowest priority */
20 #define ESP_INTR_FLAG_LEVEL2 (1<<2) /* Accept a Level 2 int vector */
21 #define ESP_INTR_FLAG_LEVEL3 (1<<3) /* Accept a Level 3 int vector */
22 #define ESP_INTR_FLAG_LEVEL4 (1<<4) /* Accept a Level 4 int vector */
23 #define ESP_INTR_FLAG_LEVEL5 (1<<5) /* Accept a Level 5 int vector */
24 #define ESP_INTR_FLAG_LEVEL6 (1<<6) /* Accept a Level 6 int vector */
25 #define ESP_INTR_FLAG_NMI (1<<7) /* Accept a Level 7 int vector, highest priority */
Dintc_esp32.h23 #define ESP_INTR_FLAG_LEVEL1 (1<<1) /* Accept a Level 1 int vector, lowest priority */
24 #define ESP_INTR_FLAG_LEVEL2 (1<<2) /* Accept a Level 2 int vector */
25 #define ESP_INTR_FLAG_LEVEL3 (1<<3) /* Accept a Level 3 int vector */
26 #define ESP_INTR_FLAG_LEVEL4 (1<<4) /* Accept a Level 4 int vector */
27 #define ESP_INTR_FLAG_LEVEL5 (1<<5) /* Accept a Level 5 int vector */
28 #define ESP_INTR_FLAG_LEVEL6 (1<<6) /* Accept a Level 6 int vector */
29 #define ESP_INTR_FLAG_NMI (1<<7) /* Accept a Level 7 int vector, highest priority */
/Zephyr-latest/doc/connectivity/bluetooth/shell/classic/
Da2dp.rst84 receive requesting config and accept
88 receive requesting establishment and accept
91 receive requesting start and accept
97 receive requesting suspend and accept
100 receive requesting release and accept
/Zephyr-latest/subsys/net/lib/http/
Dhttp_server_ws.c40 "Sec-WebSocket-Accept: "; in handle_http1_to_websocket_upgrade()
42 char accept[20]; in handle_http1_to_websocket_upgrade() local
55 mbedtls_sha1(key_accept, olen + key_len, accept); in handle_http1_to_websocket_upgrade()
57 ret = base64_encode(tmp, sizeof(tmp) - 1, &olen, accept, sizeof(accept)); in handle_http1_to_websocket_upgrade()
/Zephyr-latest/lib/libc/minimal/source/string/
Dstrspn.c11 const char *accept) in strspn() argument
15 while ((*s != '\0') && (strchr(accept, *s) != NULL)) { in strspn()
/Zephyr-latest/subsys/bluetooth/host/classic/
Dsco_internal.h72 /** @brief SCO Accept Info Structure */
90 /** @brief Server accept callback
95 * @param info The SCO accept information structure
100 int (*accept)(const struct bt_sco_accept_info *info, member
106 * Register SCO server, each new connection is authorized using the accept()
Dl2cap_br_interface.h13 int (*accept)(struct bt_conn *conn, struct bt_l2cap_chan **chan); member
19 .accept = _accept, \
/Zephyr-latest/tests/net/socket/socketpair/src/
Dunsupported_calls.c39 "accept should fail on a socketpair endpoint"); in ZTEST_USER_F()
41 "accept should set errno to EOPNOTSUPP"); in ZTEST_USER_F()
/Zephyr-latest/doc/connectivity/bluetooth/shell/audio/
Dccp.rst51 accept :Accept a call [<{instance_index, gtbs}>] <id>
143 uart:~$ tbs_client accept 0 5
144 <dbg> bt_tbs_client.call_cp_callback_handler: Status: success for the accept opcode for call 0x05
182 accept :Accept call <call_index>
238 …<dbg> bt_tbs.write_call_cp: Index 0: Processed the accept opcode with status success for call inde…
/Zephyr-latest/subsys/net/lib/websocket/
Dwebsocket_internal.h59 * peer sent proper Sec-WebSocket-Accept key.
114 /** Did we receive Sec-WebSocket-Accept: field */
117 /** Is Sec-WebSocket-Accept field correct */
/Zephyr-latest/drivers/espi/
DKconfig.it8xxx2141 With this option enabled, EC will accept 0x81 I/O cycle from the Host.
142 This allows EC to accept 2 bytes of port 80 data written from the Host.
/Zephyr-latest/samples/net/sockets/dumb_http_server/src/
Dsocket_dumb_http.c43 /* If accept returns an error, then we are probably running
86 int client = accept(serv, (struct sockaddr *)&client_addr, in main()
89 printf("Error in accept: %d - continuing\n", errno); in main()
/Zephyr-latest/samples/bluetooth/peripheral_accept_list/src/
Dmain.c107 printk("Added %s to advertising accept filter list\n", addr_str); in add_bonded_addr_to_filter_list()
128 /* BT_LE_ADV_OPT_FILTER_CONN is required to activate accept filter list, in bt_ready()
130 * devices, that are not on the accept filter list in bt_ready()
/Zephyr-latest/tests/bluetooth/audio/mocks/src/
Diso.c46 zassert_not_null(server->accept, "server->accept is NULL"); in bt_iso_server_register()
102 err = iso_server->accept(&info, chan); in mock_bt_iso_accept()
/Zephyr-latest/subsys/net/ip/
DKconfig.ipv473 bool "Accept broadcast ICMPv4 echo-request"
79 bool "Accept 0.0.0.0 broadcast destination address"
81 If set, then accept UDP packets destined to non-standard
/Zephyr-latest/include/zephyr/bluetooth/classic/
Drfcomm.h115 /** Server accept callback
125 int (*accept)(struct bt_conn *conn, struct bt_rfcomm_dlc **dlc); member
133 * using the accept() callback which in case of success shall allocate the dlc
/Zephyr-latest/tests/bsim/bluetooth/host/privacy/device/
DREADME.rst11 * In device privacy mode, a scanner shall accept advertising packets from peers with any address
/Zephyr-latest/doc/connectivity/networking/api/
Dnet_pkt_filter.rst28 Packet outcome is either ``NET_OK`` to accept the packet or ``NET_DROP`` to
70 The above would accept IP packets that are 200 bytes or smaller, and drop
/Zephyr-latest/samples/net/sockets/echo/src/
Dsocket_echo.c78 int client = accept(serv, (struct sockaddr *)&client_addr, in main()
82 printf("error: accept: %d\n", errno); in main()
/Zephyr-latest/drivers/can/
DKconfig80 bool "Accept Remote Transmission Requests (RTR) frames"
82 Accept incoming Remote Transmission Request (RTR) frames matching CAN RX filters. Unless

12345678910>>...16