Home
last modified time | relevance | path

Searched refs:clone (Results 1 – 25 of 49) sorted by relevance

12

/Zephyr-Core-3.4.0/subsys/net/
Dbuf.c536 struct net_buf *clone; in net_buf_clone() local
542 clone = net_buf_alloc_len(pool, 0, timeout); in net_buf_clone()
543 if (!clone) { in net_buf_clone()
551 clone->__buf = data_ref(buf, buf->__buf); in net_buf_clone()
552 clone->data = buf->data; in net_buf_clone()
553 clone->len = buf->len; in net_buf_clone()
554 clone->size = buf->size; in net_buf_clone()
569 clone->__buf = data_alloc(clone, &size, timeout); in net_buf_clone()
570 if (!clone->__buf || size < buf->size) { in net_buf_clone()
571 net_buf_destroy(clone); in net_buf_clone()
[all …]
Dbuf_simple.c51 struct net_buf_simple *clone) in net_buf_simple_clone() argument
53 memcpy(clone, original, sizeof(struct net_buf_simple)); in net_buf_simple_clone()
/Zephyr-Core-3.4.0/subsys/net/lib/sockets/
Dsockets_can.c104 struct net_pkt *clone = NULL; in zcan_received_cb() local
133 clone = net_pkt_clone(pkt, MEM_ALLOC_TIMEOUT); in zcan_received_cb()
134 if (!clone) { in zcan_received_cb()
138 clone = pkt; in zcan_received_cb()
141 clone = pkt; in zcan_received_cb()
153 NET_DBG("[%d] ctx %p pkt %p st %d", i, ctx, clone, status); in zcan_received_cb()
156 if (!clone) { in zcan_received_cb()
176 net_pkt_set_eof(clone, false); in zcan_received_cb()
178 k_fifo_put(&ctx->recv_q, clone); in zcan_received_cb()
188 if (clone && clone != pkt) { in zcan_received_cb()
/Zephyr-Core-3.4.0/doc/develop/west/
Dwithout-west.rst34 you will need to manually clone the additional projects listed in the
41 git clone https://github.com/zephyrproject-rtos/zephyr
42 # clone additional repositories listed in zephyr/west.yml,
96 git clone https://github.com/zephyrproject-rtos/west.git .west/west
Dinstall.rst24 Once west is installed, you can use it to :ref:`clone the Zephyr repositories
25 <clone-zephyr>`.
Dbasics.rst141 #. Check out the ``v2.5.0`` git tag in your local zephyr clone
146 to clone the rest of the projects into the workspace to finish.
174 placed within the workspace, what URLs to clone them from, and what Git
/Zephyr-Core-3.4.0/boards/x86/common/scripts/
Dbuild_grub.sh23 git clone http://git.savannah.gnu.org/r/grub.git src
/Zephyr-Core-3.4.0/tests/net/buf_simple/src/
Dmain.c41 struct net_buf_simple clone; in ZTEST() local
43 net_buf_simple_clone(&buf, &clone); in ZTEST()
45 zassert_equal(buf.data, clone.data, "Incorrect clone data pointer"); in ZTEST()
/Zephyr-Core-3.4.0/subsys/net/ip/
Dtp.c169 struct net_buf *clone = net_buf_clone(buf, K_NO_WAIT); in tp_nbuf_clone() local
172 tp_dbg("size=%d %p %s:%d %s()", clone->size, clone, file, line, func); in tp_nbuf_clone()
174 tb->nbuf = clone; in tp_nbuf_clone()
180 return clone; in tp_nbuf_clone()
/Zephyr-Core-3.4.0/doc/releases/
Dindex.rst68 release), or clone the GitHub repository.
71 it is no longer recommended to download or clone the source code manually.
/Zephyr-Core-3.4.0/tests/net/buf/src/
Dmain.c410 struct net_buf *buf, *clone; in ZTEST() local
417 clone = net_buf_clone(buf, K_NO_WAIT); in ZTEST()
418 zassert_not_null(clone, "Failed to get clone buffer"); in ZTEST()
419 zassert_equal(buf->data, clone->data, "Incorrect clone data pointer"); in ZTEST()
422 net_buf_unref(clone); in ZTEST()
/Zephyr-Core-3.4.0/doc/develop/toolchains/
Dcrosstool_ng.rst22 You will need to clone the ``sdk-ng`` repo and run the following command:
/Zephyr-Core-3.4.0/boards/arm/pan1770_evb/doc/
Dindex.rst12 It is basically a clone of the official nRF52840 development kit (PCA10056)
/Zephyr-Core-3.4.0/boards/arm/pan1780_evb/doc/
Dindex.rst12 It is basically a clone of the official nRF52840 development kit (PCA10056)
/Zephyr-Core-3.4.0/doc/connectivity/networking/
Dnative_posix_setup.rst26 git clone https://github.com/zephyrproject-rtos/net-tools
Dqemu_eth_setup.rst26 git clone https://github.com/zephyrproject-rtos/net-tools
/Zephyr-Core-3.4.0/doc/connectivity/bluetooth/autopts/
Dautopts-linux.rst236 git clone https://github.com/intel/auto-pts.git
255 In Git Bash, clone auto-pts project repo:
259 git clone https://github.com/intel/auto-pts.git
Dautopts-win10.rst139 In Git Bash, clone project repo:
143 git clone https://github.com/intel/auto-pts.git
/Zephyr-Core-3.4.0/boards/arm64/fvp_base_revc_2xaemv8a/doc/
Dindex.rst98 git clone https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git --depth 1
/Zephyr-Core-3.4.0/samples/modules/tflite-micro/magic_wand/train/
Dtrain_magic_wand_model.ipynb82 …"We'll also clone the TensorFlow repository, which contains the training scripts, and copy them in…
96 "!git clone --depth 1 -q https://github.com/tensorflow/tensorflow\n",
/Zephyr-Core-3.4.0/samples/net/gptp/
DREADME.rst71 git clone git@github.com:AVnu/gptp.git
135 git clone git://git.code.sf.net/p/linuxptp/code
/Zephyr-Core-3.4.0/boards/arm/npcx9m6f_evb/doc/
Dindex.rst108 git clone https://git.code.sf.net/p/openocd/code ~/openocd
/Zephyr-Core-3.4.0/samples/drivers/ethernet/eth_ivshmem/
DREADME.rst21 git clone https://github.com/siemens/jailhouse-images.git
/Zephyr-Core-3.4.0/samples/subsys/mgmt/hawkbit/
DREADME.rst180 Below steps clone and build the hawkbit with self-signed certificate
185 git clone https://github.com/eclipse/hawkbit.git
/Zephyr-Core-3.4.0/boards/arm/zybo/doc/
Dindex.rst68 git clone -b v2022.04 https://source.denx.de/u-boot/u-boot.git

12