/Zephyr-Core-3.7.0/include/zephyr/ |
D | kernel_version.h | 33 #define SYS_KERNEL_VER_MAJOR(ver) (((ver) >> 24) & 0xFF) argument 34 #define SYS_KERNEL_VER_MINOR(ver) (((ver) >> 16) & 0xFF) argument 35 #define SYS_KERNEL_VER_PATCHLEVEL(ver) (((ver) >> 8) & 0xFF) argument
|
/Zephyr-Core-3.7.0/subsys/mgmt/mcumgr/grp/img_mgmt/src/ |
D | img_mgmt_util.c | 13 img_mgmt_ver_str(const struct image_version *ver, char *dst) in img_mgmt_ver_str() argument 19 (uint16_t)ver->iv_major, (uint16_t)ver->iv_minor, in img_mgmt_ver_str() 20 ver->iv_revision); in img_mgmt_ver_str() 22 if (rc >= 0 && ver->iv_build_num != 0) { in img_mgmt_ver_str() 24 ver->iv_build_num); in img_mgmt_ver_str()
|
D | img_mgmt.c | 163 int img_mgmt_read_info(int image_slot, struct image_version *ver, uint8_t *hash, in img_mgmt_read_info() argument 185 if (ver != NULL) { in img_mgmt_read_info() 186 memset(ver, erased_val, sizeof(*ver)); in img_mgmt_read_info() 190 if (ver != NULL) { in img_mgmt_read_info() 191 memcpy(ver, &hdr.ih_ver, sizeof(*ver)); in img_mgmt_read_info() 271 struct image_version ver; in img_mgmt_find_by_ver() local 274 if (img_mgmt_read_info(i, &ver, hash, NULL) != 0) { in img_mgmt_find_by_ver() 277 if (!memcmp(find, &ver, sizeof(ver))) { in img_mgmt_find_by_ver() 289 img_mgmt_find_by_hash(uint8_t *find, struct image_version *ver) in img_mgmt_find_by_hash() argument 295 if (img_mgmt_read_info(i, ver, hash, NULL) != 0) { in img_mgmt_find_by_hash() [all …]
|
D | img_mgmt_state.c | 423 struct image_version ver; in img_mgmt_state_encode_slot() local 425 int rc = img_mgmt_read_info(slot, &ver, hash, &flags); in img_mgmt_state_encode_slot() 441 if (img_mgmt_ver_str(&ver, vers_str) < 0) { in img_mgmt_state_encode_slot()
|
/Zephyr-Core-3.7.0/include/zephyr/drivers/pm_cpu_ops/ |
D | psci.h | 25 #define PSCI_VERSION_MAJOR(ver) \ argument 26 (((ver) & PSCI_VERSION_MAJOR_MASK) >> PSCI_VERSION_MAJOR_SHIFT) 27 #define PSCI_VERSION_MINOR(ver) \ argument 28 ((ver) & PSCI_VERSION_MINOR_MASK)
|
/Zephyr-Core-3.7.0/drivers/pm_cpu_ops/ |
D | pm_cpu_ops_psci.c | 102 if (!(PSCI_VERSION_MAJOR(psci_data.ver) >= 1)) { in psci_features_check() 179 uint32_t ver = psci_get_version(); in psci_detect() local 182 PSCI_VERSION_MAJOR(ver), in psci_detect() 183 PSCI_VERSION_MINOR(ver)); in psci_detect() 185 if (PSCI_VERSION_MAJOR(ver) == 0 && PSCI_VERSION_MINOR(ver) < 2) { in psci_detect() 190 psci_data.ver = ver; in psci_detect() 197 return psci_data.ver; in psci_version() 217 #define PSCI_DEFINE(inst, ver) \ argument 218 static const struct psci_config_t psci_config_##inst##ver = { \ 225 &psci_config_##inst##ver, \
|
D | pm_cpu_ops_psci.h | 113 uint32_t ver; member
|
/Zephyr-Core-3.7.0/tests/arch/arm64/arm64_psci/src/ |
D | main.c | 13 uint32_t ver; in ZTEST() local 17 ver = psci_version(); in ZTEST() 18 zassert_false((PSCI_VERSION_MAJOR(ver) == 0 && in ZTEST() 19 PSCI_VERSION_MINOR(ver) < 2), in ZTEST()
|
/Zephyr-Core-3.7.0/subsys/net/lib/socks/ |
D | socks_internal.h | 37 uint8_t ver; member 47 uint8_t ver; member 62 uint8_t ver; member 77 uint8_t ver; member
|
D | socks.c | 85 method_req.r.ver = SOCKS5_PKT_MAGIC; in socks5_tcp_connect() 110 if (method_rsp.ver != SOCKS5_PKT_MAGIC) { in socks5_tcp_connect() 121 cmd_req.r.ver = SOCKS5_PKT_MAGIC; in socks5_tcp_connect() 171 if (cmd_rsp.r.ver != SOCKS5_PKT_MAGIC) { in socks5_tcp_connect()
|
/Zephyr-Core-3.7.0/subsys/portability/cmsis_rtos_v2/ |
D | kernel.c | 19 uint32_t ver = sys_kernel_version_get(); in osKernelGetInfo() local 22 version->api = ver; in osKernelGetInfo() 23 version->kernel = ver; in osKernelGetInfo()
|
/Zephyr-Core-3.7.0/drivers/hwinfo/ |
D | hwinfo_andes.c | 37 uint32_t ver; in z_impl_hwinfo_get_device_id() local 43 ret = syscon_read_reg(syscon_dev, SMU_SYSTEMVER, &ver); in z_impl_hwinfo_get_device_id() 52 sys_put_le24(ver, id); in z_impl_hwinfo_get_device_id()
|
/Zephyr-Core-3.7.0/include/zephyr/mgmt/mcumgr/grp/img_mgmt/ |
D | img_mgmt.h | 233 int img_mgmt_read_info(int image_slot, struct image_version *ver, uint8_t *hash, uint32_t *flags); 242 int img_mgmt_my_version(struct image_version *ver); 252 int img_mgmt_ver_str(const struct image_version *ver, char *dst);
|
/Zephyr-Core-3.7.0/include/zephyr/arch/arc/v2/ |
D | arc_connect.h | 140 ver:8; member 142 uint32_t ver:8, 157 uint32_t pad:21, cirqnum:3, ver:8; member 159 uint32_t ver:8, cirqnum:3, pad:21;
|
/Zephyr-Core-3.7.0/cmake/modules/ |
D | version.cmake | 51 file(READ ${file} ver) 54 string(REGEX MATCH "VERSION_MAJOR = ([0-9]*)" _ ${ver}) 57 string(REGEX MATCH "VERSION_MINOR = ([0-9]*)" _ ${ver}) 60 string(REGEX MATCH "PATCHLEVEL = ([0-9]*)" _ ${ver}) 63 string(REGEX MATCH "VERSION_TWEAK = ([0-9]*)" _ ${ver}) 66 string(REGEX MATCH "EXTRAVERSION = ([a-z0-9]*)" _ ${ver})
|
/Zephyr-Core-3.7.0/lib/open-amp/ |
D | resource_table.c | 38 .ver = 1,
|
/Zephyr-Core-3.7.0/include/zephyr/debug/ |
D | mipi_stp_decoder.h | 72 uint32_t ver; member
|
/Zephyr-Core-3.7.0/subsys/mgmt/mcumgr/grp/img_mgmt/include/mgmt/mcumgr/grp/img_mgmt/ |
D | img_mgmt_priv.h | 207 int img_mgmt_find_by_hash(uint8_t *find, struct image_version *ver);
|
/Zephyr-Core-3.7.0/drivers/disk/nvme/ |
D | nvme.h | 131 uint32_t ver; member 347 s->ver = sys_le32_to_cpu(s->ver); in nvme_controller_data_swapbytes()
|
/Zephyr-Core-3.7.0/boards/96boards/aerocore2/doc/ |
D | index.rst | 295 …Found DFU: [0483:df11] ver=2200, devnum=15, cfg=1, intf=0, alt=3, name="@Device Feature/0xFFFF0000… 296 …Found DFU: [0483:df11] ver=2200, devnum=15, cfg=1, intf=0, alt=2, name="@OTP Memory /0x1FFF7800/01… 297 …Found DFU: [0483:df11] ver=2200, devnum=15, cfg=1, intf=0, alt=1, name="@Option Bytes /0x1FFFC000/… 298 …Found DFU: [0483:df11] ver=2200, devnum=15, cfg=1, intf=0, alt=0, name="@Internal Flash /0x0800000… 299 …Found Runtime: [05ac:8290] ver=0104, devnum=2, cfg=1, intf=5, alt=0, name="UNKNOWN", serial="UNKNO…
|
/Zephyr-Core-3.7.0/boards/96boards/carbon/doc/ |
D | stm32f401xe.rst | 283 …Found DFU: [0483:df11] ver=2200, devnum=15, cfg=1, intf=0, alt=3, name="@Device Feature/0xFFFF0000… 284 …Found DFU: [0483:df11] ver=2200, devnum=15, cfg=1, intf=0, alt=2, name="@OTP Memory /0x1FFF7800/01… 285 …Found DFU: [0483:df11] ver=2200, devnum=15, cfg=1, intf=0, alt=1, name="@Option Bytes /0x1FFFC000/… 286 …Found DFU: [0483:df11] ver=2200, devnum=15, cfg=1, intf=0, alt=0, name="@Internal Flash /0x0800000… 287 …Found Runtime: [05ac:8290] ver=0104, devnum=2, cfg=1, intf=5, alt=0, name="UNKNOWN", serial="UNKNO…
|
/Zephyr-Core-3.7.0/drivers/video/ |
D | ov7725.c | 565 uint8_t pid, ver; in ov7725_init() local 587 ret = ov7725_read_reg(&cfg->i2c, OV7725_VER, &ver); in ov7725_init() 593 if (OV7725_REVISION != (((uint32_t)pid << 8U) | (uint32_t)ver)) { in ov7725_init()
|
/Zephyr-Core-3.7.0/boards/st/sensortile_box/doc/ |
D | index.rst | 171 …Found DFU: [0483:df11] ver=2200, devnum=74, cfg=1, intf=0, path="2-2", alt=2, name="@OTP Memory /0… 172 …Found DFU: [0483:df11] ver=2200, devnum=74, cfg=1, intf=0, path="2-2", alt=1, name="@Option Bytes … 173 …Found DFU: [0483:df11] ver=2200, devnum=74, cfg=1, intf=0, path="2-2", alt=0, name="@Internal Flas…
|
/Zephyr-Core-3.7.0/scripts/ci/ |
D | version_mgr.py | 93 ver = item_compat.get("version")
|
/Zephyr-Core-3.7.0/doc/security/ |
D | security-citations.rst | 21 Evaluation ver. 3.1 rev. 4, 2012.
|