Home
last modified time | relevance | path

Searched refs:container (Results 1 – 25 of 38) sorted by relevance

12

/Zephyr-latest/doc/_extensions/zephyr/kconfig/static/
Dkconfig.css8 #__kconfig-search .input-container {
17 #__kconfig-search .input-container input {
27 #__kconfig-search .input-container input:focus,
28 #__kconfig-search .input-container input:active {
32 #__kconfig-search .input-container button {
55 #__kconfig-search .results-per-page-container {
Dkconfig.mjs205 const container = document.createElement('dl');
206 container.className = 'kconfig';
211 container.appendChild(title);
230 container.append(details);
274 return container;
359 /* populate kconfig-search container */
360 const container = document.getElementById('__kconfig-search');
361 if (!container) {
362 console.error("Couldn't find Kconfig search container");
368 inputContainer.className = 'input-container'
[all …]
/Zephyr-latest/soc/nxp/imxrt/imxrt118x/
DKconfig38 hex "Image container"
41 Image container is a boot image format that is used by ROM. Container
42 format consists container header, image arrary entry, signature block
43 and user program images and data. The boot ROM expects container data
46 # Note- This config present the offest between container header and user
50 hex "The offset between container header and user image"
53 The offset between container and user image. IF change the user image
/Zephyr-latest/doc/_extensions/zephyr/domain/static/js/
Dcodesample-livesearch.js8 const container = input.closest(".code-sample-listing");
110 processSection(container);
114 container.style.display = "";
/Zephyr-latest/scripts/net/
Drun-sample-tests.sh220 docker container exec net-tools $test || return $?
288 This script runs Zephyr sample tests using Docker container and
296 only start Docker container and network and exit
298 only stop Docker container and network
300 keep Docker container and network after test
DREADME.txt2 the network test applications Docker container provided by the 'net-tools'
10 'net-tools' Docker container has been created, see the first bullet point
48 The Docker container and a corresponding 'net-tools0' Docker network is started
65 container, is returned to the script on Zephyr or Docker application
/Zephyr-latest/subsys/net/lib/ptp/
Dtlv.c52 struct ptp_tlv_container *container; in tlv_mgmt_post_recv() local
73 container = CONTAINER_OF((void *)mgmt_tlv, struct ptp_tlv_container, tlv); in tlv_mgmt_post_recv()
75 clock_desc = &container->clock_desc; in tlv_mgmt_post_recv()
185 container = CONTAINER_OF((void *)mgmt_tlv, struct ptp_tlv_container, tlv); in tlv_mgmt_post_recv()
190 container->clock_desc.user_desc = (struct ptp_text *)mgmt_tlv->data; in tlv_mgmt_post_recv()
266 struct ptp_tlv_container *container; in tlv_mgmt_pre_send() local
273 container = CONTAINER_OF((void *)mgmt_tlv, struct ptp_tlv_container, tlv); in tlv_mgmt_pre_send()
274 clock_desc = &container->clock_desc; in tlv_mgmt_pre_send()
Dport.c742 struct ptp_tlv_container *container = ptp_tlv_alloc(); in port_management_resp_tlv_fill() local
744 if (!container) { in port_management_resp_tlv_fill()
748 container->tlv = (struct ptp_tlv *)resp->management.suffix; in port_management_resp_tlv_fill()
749 mgmt = (struct ptp_tlv_mgmt *)container->tlv; in port_management_resp_tlv_fill()
833 ptp_tlv_free(container); in port_management_resp_tlv_fill()
843 container->tlv->length = sizeof(mgmt->id) + length; in port_management_resp_tlv_fill()
844 resp->header.msg_length += sizeof(*container->tlv) + container->tlv->length; in port_management_resp_tlv_fill()
845 sys_slist_append(&resp->tlvs, &container->node); in port_management_resp_tlv_fill()
/Zephyr-latest/soc/nxp/imxrt/
DCMakeLists.txt64 INPUT ".boot_hdr.container"
82 zephyr_linker_sources_ifdef(CONFIG_SOC_SERIES_IMXRT118X SECTIONS container.ld)
Dboot_header.ld25 KEEP(*(.boot_hdr.container))
/Zephyr-latest/doc/_extensions/zephyr/domain/
D__init__.py285 def output_sample_categories_list_items(self, tree, container: nodes.Node):
342 container += list_item
364 def output_sample_categories_sections(self, tree, container: nodes.Node, show_titles=False):
377 container += section
379 section = container
406 container = nodes.container()
407 container["classes"].append("code-sample-listing")
421 container += search_input
436 self.output_sample_categories_sections(category_node, container)
438 node.replace_self(container)
[all …]
/Zephyr-latest/samples/net/sockets/echo_server/src/ws_console/
Dstyle.css25 div.container {
/Zephyr-latest/tests/net/lib/lwm2m/interop/
DREADME.md19 ### Run Lehan server from net-tools Docker container
21 Zephyr's net-tools Docker container already contains Leshan, so if you don't want to set the enviro…
24 First, build the docker container. You only need to do this one, or when you update the container.
36 Start the docker container and run leshan
39 docker container exec net-tools /net-tools/start-leshan.sh
/Zephyr-latest/subsys/mgmt/mcumgr/smp/src/
Dsmp.c499 struct cbor_nb_writer *container = CONTAINER_OF(zse, struct cbor_nb_writer, zs[0]); in smp_add_cmd_err() local
501 container->error_group = group; in smp_add_cmd_err()
502 container->error_ret = ret; in smp_add_cmd_err()
/Zephyr-latest/include/zephyr/linker/
Dsections.h70 #define _IMX_BOOT_CONTAINER_SECTION_NAME .boot_hdr.container
/Zephyr-latest/doc/kernel/data_structures/
Dslist.rst29 The container struct pointer may be retrieved from a list node using
57 in a "container" variant (:c:macro:`SYS_SLIST_FOR_EACH_CONTAINER` and
59 variable of a type that matches the user's container struct and not
/Zephyr-latest/doc/_extensions/zephyr/domain/static/css/
Dboard-catalog.css62 .select-container {
66 .select-container::after {
/Zephyr-latest/doc/_static/css/
Dgcs.css27 .gsc-completion-container {
/Zephyr-latest/modules/canopennode/
DCO_driver.c144 struct canopen_tx_work_container *container = in canopen_tx_retry() local
146 CO_CANmodule_t *CANmodule = container->CANmodule; in canopen_tx_retry()
/Zephyr-latest/doc/build/dts/
Dzephyr-user-node.rst9 values without having to write a binding. It is meant as a convenient container
/Zephyr-latest/doc/safety/images/
DIEC-61508-basis.svg1container[jax="SVG"] {
 direction: ltr;
}

mjx-container[jax="SVG"] > svg {&#x…
/Zephyr-latest/samples/drivers/ethernet/eth_ivshmem/
DREADME.rst31 ./kas-container menu
/Zephyr-latest/samples/net/sockets/echo_client/
DREADME.rst234 - Install the OTBR (OpenThread Border Router) docker container on your HOST PC (x86_64)
247 2. Pull docker container for OTBR:
/Zephyr-latest/doc/services/device_mgmt/
Dsmp_protocol.rst159 followed by CBOR map container.
/Zephyr-latest/doc/connectivity/networking/conn_mgr/
Dimplementation.rst59 …be shared by several Zephyr ifaces, each binding instantiates a context container (of :ref:`config…
60 Each binding is then instantiated with a reference to that container, which implementations can the…
363 This applies to all descendents of the binding, including anything in the :ref:`context container <…

12