Home
last modified time | relevance | path

Searched refs:remote (Results 101 – 125 of 282) sorted by relevance

12345678910>>...12

/Zephyr-latest/scripts/coredump/
Dcoredump_gdbserver.py134 conn, remote = gdbserver.accept()
137 remote = "pipe"
/Zephyr-latest/tests/bluetooth/controller/ctrl_collision/src/
Dmain.c111 conn.lll.dle.remote.max_tx_octets = PDU_DC_PAYLOAD_SIZE_MIN * 3; in collision_setup()
112 conn.lll.dle.remote.max_rx_octets = PDU_DC_PAYLOAD_SIZE_MIN * 3; in collision_setup()
113 conn.lll.dle.remote.max_tx_time = PDU_DC_MAX_US(conn.lll.dle.remote.max_tx_octets, in collision_setup()
115 conn.lll.dle.remote.max_rx_time = PDU_DC_MAX_US(conn.lll.dle.remote.max_rx_octets, in collision_setup()
/Zephyr-latest/subsys/mgmt/mcumgr/grp/settings_mgmt/
DCMakeLists.txt15 "use, as all settings on the device can be manipulated by a remote device. See "
/Zephyr-latest/samples/net/capture/src/
Dmain.c213 const char remote[] = CONFIG_NET_CONFIG_PEER_IPV4_ADDR; in init_app() local
219 ret = net_capture_setup(remote, local, peer, &capture_dev); in init_app()
/Zephyr-latest/subsys/bluetooth/host/
DKconfig.gatt77 Quirk: upon re-establishing a bonded connection, assumes the remote
263 bool "Allow to write device name by remote GATT clients"
267 Enabling this option allows remote GATT clients to write to device
275 Select security requirementsf for writing device name by remote GATT
291 bool "Allow to write GAP Appearance by remote GATT clients"
295 Enabling this option allows remote GATT clients to write to device
303 Select security requirementsf for writing device name by remote GATT
/Zephyr-latest/boards/arduino/nano_33_ble/support/
Dstartup.cmm65 PRINT "Use gdb remote: &gdbRemote"
75 TITLE "TRACE32 PowerView front-end debugger for Nano 33 BLE (remote=&gdbRemote)"
/Zephyr-latest/boards/madmachine/mm_swiftio/
Dmm_swiftio.dts119 remote-endpoint-label = "csi_ep_in";
202 remote-endpoint-label = "ov7725_ep_out";
/Zephyr-latest/drivers/mbox/
DKconfig.renesas_rz19 remote processor to consume the previous message before sending a new one. If the
/Zephyr-latest/samples/subsys/zbus/remote_mock/
DREADME.rst1 .. zephyr:code-sample:: zbus-remote-mock
72 From the remote mock (Python script), you would see something like this:
99 Exit the remote mock script by pressing :kbd:`CTRL+C`.
/Zephyr-latest/cmake/toolchain/xt-clang/
Dgeneric.cmake16 # obtain license information from remote licensing servers. So here
/Zephyr-latest/lib/open-amp/
DKconfig12 compatible with linux remote proc framework and OpenAMP library.
/Zephyr-latest/samples/sysbuild/hello_world/
DREADME.rst23 The remote board needs to be specified using ``SB_CONFIG_REMOTE_BOARD``. Some
25 to boot a remote core.
/Zephyr-latest/cmake/toolchain/xcc/
Dgeneric.cmake21 # obtain license information from remote licensing servers. So here
/Zephyr-latest/samples/drivers/mbox/
DCMakeLists.txt12 set(REMOTE_ZEPHYR_DIR ${CMAKE_CURRENT_BINARY_DIR}/../remote/zephyr)
/Zephyr-latest/subsys/net/ip/
Dnet_context.c570 (void)memset(&contexts[i].remote, 0, sizeof(struct sockaddr)); in net_context_get()
897 &net_sin6(&context->remote)->sin6_addr); in net_context_bind()
1006 &net_sin(&context->remote)->sin_addr); in net_context_bind()
1365 &context->remote; in net_context_connect()
1417 &context->remote; in net_context_connect()
1924 mtu = net_pmtu_get_mtu(&context->remote); in get_context_mtu()
1937 &net_sin6(&context->remote)->sin6_addr); in get_context_mtu()
1940 &net_sin(&context->remote)->sin_addr); in get_context_mtu()
2256 addr6 = net_sin6(&context->remote); in context_sendto()
2293 &net_sin6(&context->remote)->sin6_addr) && in context_sendto()
[all …]
/Zephyr-latest/doc/develop/west/
Drelease-notes.rst353 relative to its remote ``url-base:``, use ``repo-path:``. See
400 the ``git fetch`` command used to fetch remote revisions when updating each
766 ``remote`` attributes.
775 - name: remote-1
776 url-base: https://github.com/remote-1
777 - name: remote-2
778 url-base: https://github.com/remote-2
781 remote: remote-1
782 path: remote-1-project
784 remote: remote-2
[all …]
/Zephyr-latest/subsys/mgmt/mcumgr/grp/fs_mgmt/
DCMakeLists.txt28 "use, as all files on the filesystem can be manipulated by a remote device. See "
/Zephyr-latest/boards/espressif/esp32s3_eye/
Desp32s3_eye_procpu.dts133 remote-endpoint = <&dvp_ep_in>;
149 remote-endpoint = <&ov2640_ep_out>;
/Zephyr-latest/doc/contribute/style/
Dindex.rst45 remote="$1"
54 args="$remote $url $local_ref $local_sha $remote_ref $remote_sha"
/Zephyr-latest/tests/subsys/usb/device_next/
Dbuild_all.overlay57 remote-mac-address = "00005E005301";
/Zephyr-latest/subsys/logging/
DKconfig.processing97 int "Maximum remote message latency (in microseconds)"
101 Arbitrary time between log message creation in the remote domain and
105 for remote messages.
/Zephyr-latest/boards/sifive/hifive_unleashed/doc/
Dindex.rst47 (gdb) target remote :3333
/Zephyr-latest/boards/sifive/hifive_unmatched/doc/
Dindex.rst47 (gdb) target remote :3333
/Zephyr-latest/subsys/net/lib/sockets/
Dsockets_inet.c495 int len = MIN(*addrlen, sizeof(ctx->remote)); in zsock_accept_ctx()
497 memcpy(addr, &ctx->remote, len); in zsock_accept_ctx()
501 if (ctx->remote.sa_family == AF_INET) { in zsock_accept_ctx()
503 } else if (ctx->remote.sa_family == AF_INET6) { in zsock_accept_ctx()
806 ret = net_ipv4_is_addr_unspecified(&net_sin(&pkt->remote)->sin_addr); in net_pkt_remote_addr_is_unspecified()
808 ret = net_ipv6_is_addr_unspecified(&net_sin6(&pkt->remote)->sin6_addr); in net_pkt_remote_addr_is_unspecified()
833 memcpy(addr, &pkt->remote, sizeof(struct sockaddr_in)); in sock_get_offload_pkt_src_addr()
841 memcpy(addr, &pkt->remote, sizeof(struct sockaddr_in6)); in sock_get_offload_pkt_src_addr()
844 memcpy(addr, &ctx->remote, MIN(addrlen, sizeof(ctx->remote))); in sock_get_offload_pkt_src_addr()
2755 if (IS_ENABLED(CONFIG_NET_IPV4) && ctx->remote.sa_family == AF_INET) { in zsock_getpeername_ctx()
[all …]
/Zephyr-latest/samples/subsys/ipc/ipc_service/icmsg/remote/src/
Dmain.c15 LOG_MODULE_REGISTER(remote, LOG_LEVEL_INF);

12345678910>>...12