Home
last modified time | relevance | path

Searched full:package (Results 1 – 25 of 437) sorted by relevance

12345678910>>...18

/Zephyr-latest/tests/subsys/logging/log_output/src/
Dlog_output_test.c50 char package[256]; in ZTEST() local
54 err = cbprintf_package(package, sizeof(package), 0, TEST_STR); in ZTEST()
57 log_output_process(&log_output, 0, NULL, SNAME, NULL, LOG_LEVEL_INF, package, NULL, 0, 0); in ZTEST()
65 char package[256]; in ZTEST() local
69 err = cbprintf_package(package, sizeof(package), 0, TEST_STR); in ZTEST()
73 package, NULL, 0, 0); in ZTEST()
81 char package[256]; in ZTEST() local
85 err = cbprintf_package(package, sizeof(package), 0, TEST_STR); in ZTEST()
88 log_output_process(&log_output, 0, DNAME, SNAME, NULL, LOG_LEVEL_INF, package, NULL, 0, 0); in ZTEST()
96 char package[256]; in ZTEST() local
[all …]
/Zephyr-latest/scripts/west_commands/zspdx/
Ddatatypes.py35 # dict of SPDX ID => Package
62 # PackageConfig contains settings used to configure how an SPDX Package should
68 # package name
74 # primary package purpose (ex. "LIBRARY", "APPLICATION", etc.)
77 # package URL
80 # package version
83 # package revision
86 # package external references
89 # the Package's declared license
92 # the Package's copyright text
[all …]
Dscanner.py21 # when assembling a Package's data, should we auto-conclude the
22 # Package's license, based on the licenses of its Files?
25 # when assembling a Package's Files' data, should we auto-conclude
33 # should we calculate SHA256 hashes for each Package's Files?
37 # should we calculate MD5 hashes for each Package's Files?
106 Calculate the SPDX Package Verification Code for all files in the package.
109 - pkg: Package
141 - pkg: Package
192 log.inf(f"scanning files in package {pkg.cfg.name} in document {doc.cfg.name}")
194 # first, gather File data for this package
[all …]
Dwalker.py14 from zspdx.datatypes import DocumentConfig, Document, File, PackageConfig, Package, RelationshipDat…
80 # '<protocol><base_url>/<namespace>/<package>
81 …tp(s)?:\/\/)(?P<base_url>[\w\.@]+)(\/|:))(?P<namespace>[\w,\-,\_]+)\/(?P<package>[\w,\-,\_]+)(.git…
85 … purl = f'pkg:{match.group("base_url")}/{match.group("namespace")}/{match.group("package")}'
188 # also set up app sources package
195 pkgApp = Package(cfgPackageApp, self.docApp)
211 # with the zephyr_final package
237 # set up zephyr sources package
269 pkgZephyr = Package(cfgPackageZephyr, self.docZephyr)
284 # set up zephyr sources package
[all …]
/Zephyr-latest/doc/services/
Dformatted_output.rst51 Such state forms a self-contained package which contains format string and
52 arguments. Additionally, package may contain copies of strings which are
53 part of a format string (format string or any ``%s`` argument). Package primary
55 used to process a package. Since package contains data which is processed as
57 size of the package depends on alignment. When package is copied, it should be
60 Package can have following variants:
62 * **Self-contained** - non read-only strings appended to the package. String can be
63 formatted from such package as long as there is access to read-only string
64 locations. Package may contain information where read-only strings are located
65 within the package. That information can be used to convert packet to fully
[all …]
/Zephyr-latest/scripts/west_commands/
Dexport.py14 config package in the CMake user package registry.
16 In Windows, the CMake user package registry is found in:
19 In Linux and MacOS, the CMake user package registry is found in:
29 'export Zephyr installation as a CMake config package',
45 self.run_cmake_export(share / 'zephyr-package' / 'cmake')
46 self.run_cmake_export(share / 'zephyrunittest-package' / 'cmake')
49 # Run a package installation script.
/Zephyr-latest/doc/build/
Dzephyr_cmake_package.rst3 Zephyr CMake Package
6 The Zephyr `CMake package`_ is a convenient way to create a Zephyr-based application.
12 The Zephyr CMake package ensures that CMake can automatically select a Zephyr installation to use f…
20 To use the Zephyr CMake package it must first be exported to the `CMake user package registry`_.
22 CMake user package registry.
29 In Linux, the CMake user package registry is found in:
35 In macOS, the CMake user package registry is found in:
41 In Windows, the CMake user package registry is found in:
46 The Zephyr CMake package allows CMake to automatically find a Zephyr base.
52 Zephyr CMake package export (west)
[all …]
/Zephyr-latest/tests/lib/cbprintf_package/src/
Dmain.c41 static void dump(const char *desc, uint8_t *package, size_t len) in dump() argument
43 printk("%s package %p:\n", desc, package); in dump()
45 printk("%02x ", package[i]); in dump()
51 uint8_t *package, size_t len) in unpack() argument
53 cbpprintf((cbprintf_cb)out, buf, package); in unpack()
73 /* Aligned so the package is similar to the static one. */ \
89 package[len + ALIGN_OFFSET];\
91 pkg = &package[ALIGN_OFFSET]; \
182 /* package with string indexes will contain two more bytes holding indexes in ZTEST()
219 /* Compare descriptor content. Second package has one ro string index. */ in ZTEST()
[all …]
/Zephyr-latest/subsys/logging/
Dlog_msg.c26 /* For simplified message handling cprintf package must have only 1 word. */
79 * Simple log message has 0-2 32 bit word arguments so creating cbprintf package
82 * package header which is very simple as it only contain non-zero length field.
90 * @param data Package content (without header).
91 * @param len Package content length in words.
95 /* Package length (in words) is increased by the header. */ in z_log_msg_simple_create()
97 /* Package length in bytes. */ in z_log_msg_simple_create()
109 uint32_t *package = (uint32_t *)msg->data; in z_log_msg_simple_create() local
111 *package++ = (uint32_t)(uintptr_t)package_hdr.raw; in z_log_msg_simple_create()
113 *package++ = data[i]; in z_log_msg_simple_create()
[all …]
/Zephyr-latest/include/zephyr/sys/
Dcbprintf.h43 * @brief cbprintf package descriptor.
46 /** Package length (in 32 bit words) */
49 /** Number of appended strings in the package. */
52 /** Number of read-only strings, indexes appended to the package */
55 /** Number of read-write strings, indexes appended to the package */
59 /** Flags used to create the package */
74 /** @brief cbprintf package header
76 * cbprintf package header, without the format string pointer.
92 /** @brief cbprintf package header with format string pointer.
94 * cbprintf package header with format string pointer.
[all …]
/Zephyr-latest/share/zephyr-package/cmake/
DZephyrConfigVersion.cmake3 # This file provides Zephyr Config Package version information.
26 # a Zephyr config package (This code)
53 # meaning the package version must be ignored and the Zephyr pointed to by
55 if (${ZEPHYR_BASE}/share/zephyr-package/cmake STREQUAL ${CMAKE_CURRENT_LIST_DIR})
60 # Zephyr uses project version, but CMake package uses PACKAGE_VERSION
66 # package file is returned. This Zephyr version has already been printed
97 # Zephyr uses project version, but CMake package uses PACKAGE_VERSION
111 # Only do this if we are an installed CMake Config package and checking for workspace candidates.
127 # CMake finds packages will look all packages registered in the user package registry.
129 # another package has a common path with the current sample, and if so, we
[all …]
Dzephyr_package_search.cmake1 # The purpose of this file is to provide search mechanism for locating Zephyr in-work-tree package
2 # even when they are not installed into CMake package system
6 # Relative directory of workspace project dir as seen from Zephyr package file
9 # Relative directory of Zephyr dir as seen from Zephyr package file
14 # `Zephyr_DIR-NOTFOUND` or pointing to the Zephyr package including the
15 # boilerplate code instead of the Zephyr package of the included boilerplate.
41 # This macro can check for additional Zephyr package that has a better match
49 # - VERSION_CHECK : This is the version check stage by CMake find package
74 # The find package will also find ourself when searching using installed candidates.
Dzephyr_export.cmake3 # Purpose of this CMake file is to install a ZephyrConfig package reference in:
7 # Having ZephyrConfig package allows for find_package(Zephyr) to work when ZEPHYR_BASE is not defin…
22 message("has been added to the user package registry in:")
DZephyrConfig.cmake3 # This file provides Zephyr Config Package functionality.
13 # Internal Zephyr CMake package message macro.
15 # This macro is only intended to be used within the Zephyr CMake package.
29 set(Zephyr_DIR ${ZEPHYR_BASE}/share/zephyr-package/cmake CACHE PATH
34 zephyr_package_message(DEPRECATION "The ZephyrUnittest CMake package has been deprecated.\n"
135 # CMake finds packages will look all packages registered in the user package registry.
136 # As this code is processed inside registered packages, we simply test if another package has a
138 # and if so, we will return here, and let CMake call into the other registered package for real
/Zephyr-latest/tests/subsys/logging/log_output_net/src/
Dlog_output_test.c52 char package[256]; in ZTEST() local
62 err = cbprintf_package(package, sizeof(package), 0, TEST_STR); in ZTEST()
65 log_output_process(&log_output, 1000000, DNAME, SNAME, NULL, LOG_LEVEL_INF, package, NULL, in ZTEST()
/Zephyr-latest/share/zephyrunittest-package/cmake/
Dzephyr_export.cmake3 # Purpose of this CMake file is to install a ZephyrUnittestConfig package reference in:
7 # Having ZephyrUnittestConfig package allows for find_package(ZephyrUnittest) to work when ZEPHYR_B…
22 message("has been added to the user package registry in:")
/Zephyr-latest/tests/subsys/logging/log_timestamp/src/
Dlog_timestamp_test.c67 char package[256]; in ZTEST() local
71 err = cbprintf_package(package, sizeof(package), 0, TEST_STR); in ZTEST()
75 package, NULL, 0, flags); in ZTEST()
/Zephyr-latest/boards/shields/x_nucleo_eeprma2/
Dx_nucleo_eeprma2.overlay22 /* M24C02-FMC6TG aka U1 (2 kbit eeprom in DFN8 package) */
35 /* M24256-DFDW6TP aka U2 (256 kbit eeprom in TSSOP package) */
48 /* M24M01-DFMN6TP aka U3 (1 Mbit eeprom in SO8N package) */
84 /* M95040-RMC6TG aka U5 (4 kbit eeprom in DFN8 package) */
98 /* M95256-DFDW6TP aka U6 (256 kbit eeprom in TSSOP package) */
112 /* M95M04-DRMN6TP aka U7 (4 Mbit eeprom in SON8 package) */
/Zephyr-latest/dts/bindings/i2c/
Dmicrochip,xec-i2c.yaml45 determined by chip and package.
52 determined by chip and package.
/Zephyr-latest/cmake/
Dpackage_helper.cmake5 # The Zephyr package helper script provides a generic script mode interface
6 # to the Zephyr CMake package and module structure.
38 # Note: the samples CMakeLists.txt file is not processed by package helper, so
95 "No MODULES defined, please invoke package helper with minimum one module"
/Zephyr-latest/doc/develop/
Dbeyond-GSG.rst16 Python 3 and its package manager, pip\ [#pip]_, are used extensively by Zephyr
30 and the system package manager, and is the default on Debian-based
38 On all operating systems, pip's ``-U`` flag installs or updates the package if the
39 package is already installed locally but a more recent version is available. It
40 is good practice to use this flag if the latest version of a package is
42 see if a specific Python package version is expected.)
147 Export Zephyr CMake package
150 The :ref:`cmake_pkg` can be exported to CMake's user package registry if it has
339 pip is Python's package installer. Its ``install`` command first tries to
340 reuse packages and package dependencies already installed on your computer.
[all …]
/Zephyr-latest/include/zephyr/mgmt/
Dupdatehub.h62 * @brief Apply the update package.
70 * @return UPDATEHUB_DOWNLOAD_ERROR fail while downloading the update package.
71 * @return UPDATEHUB_INSTALL_ERROR fail while installing the update package.
/Zephyr-latest/soc/microchip/mec/common/reg/
Dmec_global_cfg.h37 * bits[3:0] = package type
67 /* SZ 144-pin package parts */
70 /* LJ 176-pin package parts */
/Zephyr-latest/boards/intel/rpl/doc/
Dindex.rst15 Platform Controller Hub (PCH-S) Die in the Package.
17 The P-Processor line is a 2-Die Multi Chip Package (MCP) that includes the
18 Processor Die and Platform Controller Hub (PCH-P) Die on the same package as
/Zephyr-latest/include/zephyr/logging/
Dlog_frontend.h27 * @param package Cbprintf package containing logging formatted string. Length s in @p desc.
33 uint8_t *package, const void *data);

12345678910>>...18