/Zephyr-latest/lib/net_buf/ |
D | buf.c | 514 struct net_buf *clone; in net_buf_clone() local 520 clone = net_buf_alloc_len(pool, 0, timeout); in net_buf_clone() 521 if (!clone) { in net_buf_clone() 529 clone->__buf = buf->__buf ? data_ref(buf, buf->__buf) : NULL; in net_buf_clone() 530 clone->data = buf->data; in net_buf_clone() 531 clone->len = buf->len; in net_buf_clone() 532 clone->size = buf->size; in net_buf_clone() 538 clone->__buf = data_alloc(clone, &size, timeout); in net_buf_clone() 539 if (!clone->__buf || size < buf->size) { in net_buf_clone() 540 net_buf_destroy(clone); in net_buf_clone() [all …]
|
/Zephyr-latest/tests/lib/net_buf/buf/src/ |
D | main.c | 413 struct net_buf *buf, *clone; in ZTEST() local 421 clone = net_buf_clone(buf, K_NO_WAIT); in ZTEST() 422 zassert_not_null(clone, "Failed to get clone buffer"); in ZTEST() 423 zassert_equal(buf->data, clone->data, "Incorrect clone data pointer"); in ZTEST() 426 net_buf_unref(clone); in ZTEST() 433 struct net_buf *buf, *clone; in ZTEST() local 443 clone = net_buf_clone(buf, K_NO_WAIT); in ZTEST() 444 zassert_not_null(clone, "Failed to get clone buffer"); in ZTEST() 445 zassert_not_equal(buf->data, clone->data, in ZTEST() 447 zassert_mem_equal(clone->data, data, sizeof(data)); in ZTEST() [all …]
|
/Zephyr-latest/subsys/net/lib/sockets/ |
D | sockets_can.c | 100 struct net_pkt *clone = NULL; in zcan_received_cb() local 121 * original net_pkt as a template, and just clone it to all in zcan_received_cb() 126 /* There are multiple receivers, we need to clone in zcan_received_cb() 129 clone = net_pkt_clone(pkt, MEM_ALLOC_TIMEOUT); in zcan_received_cb() 130 if (!clone) { in zcan_received_cb() 132 * if there is no memory to clone the packet. in zcan_received_cb() 134 clone = pkt; in zcan_received_cb() 137 clone = pkt; in zcan_received_cb() 149 NET_DBG("[%d] ctx %p pkt %p st %d", i, ctx, clone, status); in zcan_received_cb() 152 if (!clone) { in zcan_received_cb() [all …]
|
/Zephyr-latest/doc/develop/west/ |
D | without-west.rst | 34 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
|
D | install.rst | 24 Once west is installed, you can use it to :ref:`clone the Zephyr repositories 25 <clone-zephyr>`.
|
D | basics.rst | 145 #. Clone the manifest repository from 148 #. Check out the ``v2.5.0`` git tag in your local zephyr clone 153 to clone the rest of the projects into the workspace to finish. 181 placed within the workspace, what URLs to clone them from, and what Git
|
D | moving-to-west.rst | 49 #. Clone the rest of the repositories used by zephyr::
|
/Zephyr-latest/samples/modules/tflite-micro/magic_wand/train/ |
D | train_magic_wand_model.ipynb | 82 …"We'll also clone the TensorFlow repository, which contains the training scripts, and copy them in… 95 "# Clone the repository from GitHub\n", 96 "!git clone --depth 1 -q https://github.com/tensorflow/tensorflow\n",
|
/Zephyr-latest/doc/develop/toolchains/ |
D | crosstool_ng.rst | 22 You will need to clone the ``sdk-ng`` repo and run the following command:
|
/Zephyr-latest/boards/panasonic/pan1770_evb/doc/ |
D | index.rst | 9 It is basically a clone of the official nRF52840 development kit (PCA10056)
|
/Zephyr-latest/boards/panasonic/pan1780_evb/doc/ |
D | index.rst | 9 It is basically a clone of the official nRF52840 development kit (PCA10056)
|
/Zephyr-latest/boards/intel/common/scripts/ |
D | build_grub.sh | 23 git clone https://git.savannah.gnu.org/git/grub.git src
|
/Zephyr-latest/tests/lib/net_buf/buf_simple/src/ |
D | main.c | 44 struct net_buf_simple clone; in ZTEST() local 46 net_buf_simple_clone(&buf, &clone); in ZTEST() 48 zassert_equal(buf.data, clone.data, "Incorrect clone data pointer"); in ZTEST()
|
/Zephyr-latest/samples/net/ptp/ |
D | README.rst | 50 git clone git://git.code.sf.net/p/linuxptp/code
|
/Zephyr-latest/subsys/net/ip/ |
D | tp.c | 169 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-latest/doc/connectivity/networking/ |
D | native_sim_setup.rst | 30 git clone https://github.com/zephyrproject-rtos/net-tools 126 git clone https://github.com/zephyrproject-rtos/net-tools
|
/Zephyr-latest/samples/drivers/ethernet/eth_ivshmem/ |
D | README.rst | 17 Clone Jailhouse yocto project. At the time of writing, the "next" branch has 22 git clone https://github.com/siemens/jailhouse-images.git
|
/Zephyr-latest/.github/workflows/ |
D | twister-prep.yaml | 52 - name: Clone cached Zephyr repository 55 git clone --shared /repo-cache/zephyrproject/zephyr .
|
D | clang.yaml | 45 - name: Clone cached Zephyr repository 48 git clone --shared /repo-cache/zephyrproject/zephyr .
|
D | bsim-tests.yaml | 63 - name: Clone cached Zephyr repository 66 git clone --shared /repo-cache/zephyrproject/zephyr .
|
/Zephyr-latest/samples/subsys/mgmt/hawkbit/ |
D | README.rst | 154 Step 8: Clone and build hawkbit with https 157 Below steps clone and build the hawkbit with self-signed certificate 162 git clone https://github.com/eclipse/hawkbit.git
|
/Zephyr-latest/doc/connectivity/bluetooth/autopts/ |
D | autopts-linux.rst | 264 Clone auto-pts project: 268 git clone https://github.com/auto-pts/auto-pts.git 287 In Git Bash, clone auto-pts project repo: 291 git clone https://github.com/auto-pts/auto-pts.git
|
/Zephyr-latest/samples/net/gptp/ |
D | README.rst | 72 git clone git@github.com:AVnu/gptp.git 136 git clone git://git.code.sf.net/p/linuxptp/code
|
/Zephyr-latest/boards/mediatek/ |
D | index.rst | 113 git clone https://github.com/crosstool-ng/crosstool-ng 114 git clone https://github.com/thesofproject/xtensa-overlay
|
/Zephyr-latest/boards/starfive/visionfive2/doc/ |
D | index.rst | 43 git clone the vf2-loader tool from https://github.com/orangecms/vf2-loader.git and
|