Home
last modified time | relevance | path

Searched full:part (Results 1 – 25 of 893) sorted by relevance

12345678910>>...36

/Zephyr-latest/subsys/storage/flash_map/
Dflash_map_default.c16 #define FLASH_AREA_FOO(part) \ argument
17 {.fa_id = DT_FIXED_PARTITION_ID(part), \
18 .fa_off = DT_REG_ADDR(part), \
19 .fa_dev = DEVICE_DT_GET(DT_MTD_FROM_FIXED_PARTITION(part)), \
20 .fa_size = DT_REG_SIZE(part), \
21 .fa_label = DT_PROP_OR(part, label, NULL), },
23 #define FLASH_AREA_FOO(part) \ argument
24 {.fa_id = DT_FIXED_PARTITION_ID(part), \
25 .fa_off = DT_REG_ADDR(part), \
26 .fa_dev = DEVICE_DT_GET(DT_MTD_FROM_FIXED_PARTITION(part)), \
[all …]
/Zephyr-latest/scripts/west_commands/runners/
Duf2.py46 def get_uf2_info_path(part) -> Path: argument
47 return Path(part.mountpoint) / "INFO_UF2.TXT"
50 def is_uf2_partition(part): argument
52 return ((part.fstype in ['vfat', 'FAT', 'msdos']) and
53 UF2BinaryRunner.get_uf2_info_path(part).is_file())
58 def get_uf2_info(part): argument
59 lines = UF2BinaryRunner.get_uf2_info_path(part).read_text().splitlines()
69 def match_board_id(self, part): argument
70 info = self.get_uf2_info(part)
75 parts = [part for part in psutil.disk_partitions() if self.is_uf2_partition(part)]
[all …]
/Zephyr-latest/drivers/crypto/
Dcrypto_intel_sha_registers.h33 } part; member
42 } part; member
51 } part; member
59 } part; member
67 } part; member
75 } part; member
83 } part; member
91 } part; member
98 } part; member
106 } part; member
[all …]
Dcrypto_intel_sha.c35 if (status == 0 && sha->dfsha->shactl.part.en == 1) { in intel_sha_set_ctl_enable()
36 while (sha->dfsha->shasts.part.busy) { in intel_sha_set_ctl_enable()
40 sha->dfsha->shactl.part.en = status; in intel_sha_set_ctl_enable()
96 self->dfsha->pibcs.part.peen = 0; in intel_sha_device_run()
106 self->dfsha->pibcs.part.bscie = 1; in intel_sha_device_run()
107 self->dfsha->pibcs.part.teie = 0; in intel_sha_device_run()
109 self->dfsha->pibcs.part.peen = 1; in intel_sha_device_run()
111 if (self->dfsha->shactl.part.en) { in intel_sha_device_run()
115 self->dfsha->shactl.part.hrsm = state_u.part.hrsm; in intel_sha_device_run()
118 if (state_u.part.hrsm) { in intel_sha_device_run()
[all …]
/Zephyr-latest/doc/_static/js/
Ddark-mode-toggle.min.mjs2part=lightLabel]::before,[part=lightThreeWayLabel]::before{background-image:var(--${L}-light-icon,…
/Zephyr-latest/kernel/
Dmem_domain.c25 struct k_mem_partition *part) in check_add_partition() argument
31 if (part == NULL) { in check_add_partition()
40 if (K_MEM_PARTITION_IS_EXECUTABLE(part->attr) && in check_add_partition()
41 K_MEM_PARTITION_IS_WRITABLE(part->attr)) { in check_add_partition()
43 part->start); in check_add_partition()
48 if (part->size == 0U) { in check_add_partition()
50 part, part->start); in check_add_partition()
54 pstart = part->start; in check_add_partition()
55 pend = part->start + part->size; in check_add_partition()
59 part, part->start, part->size); in check_add_partition()
[all …]
/Zephyr-latest/tests/bsim/bluetooth/host/privacy/device/
DREADME.rst13 part A, 5.4.5.)
17 For references, see the Bluetooth Core specification version 5.4, vol. 1, part A, 5.4.5 and vol. 6,
18 part B, 6.
/Zephyr-latest/tests/bluetooth/host/data/bt_data_parse/src/
Dmain.c55 /* Significant part */ in ZTEST()
74 * Test early termination of the significant part
77 * - The significant part contains a sequence of N AD structures
78 * - The non-significant part extends the data with all-zero octets
87 /* Significant part */ in ZTEST()
91 /* Non-significant part */ in ZTEST()
119 /* Significant part */ in ZTEST()
177 /* Significant part */ in ZTEST()
/Zephyr-latest/subsys/bluetooth/crypto/
Dbt_crypto.h16 * Defined in Core Vol. 3, part H 2.2.5.
31 * Defined in Core Vol. 3, part H 2.2.6.
47 * Defined in Core Vol. 3, part H 2.2.7.
66 * Defined in Core Vol. 3, part H 2.2.8.
87 * Defined in Core Vol. 3, part H 2.2.9.
104 * Link key conversion defined in Core Vol. 3, part H 2.2.10.
118 * Link key conversion defined in Core Vol. 3, part H 2.2.11.
132 * Defined in Core Vol. 6, part E 1.1.1.
/Zephyr-latest/drivers/regulator/
DKconfig.fake14 int "Fake regulator driver init priority (common part)"
17 Init priority for the fake regulator driver (common part).
DKconfig.max2033516 int "MAX20335 regulator driver init priority (common part)"
20 (common part). It must be greater than I2C and MFD init priority.
DKconfig.npm130016 int "nPM1300 regulator driver init priority (common part)"
19 Init priority for the Nordic nPM1300 regulator driver (common part).
DKconfig.npm210016 int "nPM2100 regulator driver init priority (common part)"
19 Init priority for the Nordic nPM2100 regulator driver (common part).
DKconfig.pca942015 int "NXP PCA9420 regulator driver init priority (common part)"
18 Init priority for the NXP PCA9420 regulator driver (common part). It
/Zephyr-latest/tests/kernel/mem_slab/mslab/src/
Dmain.c64 /* Wait for part 1 to complete */ in helper_thread()
67 /* Part 2 of test */ in helper_thread()
74 k_sem_give(&SEM_HELPERDONE); /* Indicate part 2 is complete */ in helper_thread()
75 /* Wait for part 3 to complete */ in helper_thread()
79 * Part 4 of test. in helper_thread()
91 /* Part 5 of test */ in helper_thread()
218 /* Part 1 of test */ in ZTEST()
234 * Part 3 of test. in ZTEST()
249 k_sem_give(&SEM_REGRESSDONE); /* Allow helper thread to run part 4 */ in ZTEST()
258 k_sem_give(&SEM_REGRESSDONE); /* Allow helper thread to run part 5 */ in ZTEST()
/Zephyr-latest/include/zephyr/drivers/sensor/
Dsgp40.h23 /* Temperature in degC; only the integer part is used */
25 /* Relative Humidity in %; only the integer part is used */
/Zephyr-latest/include/zephyr/bluetooth/
Datt.h29 * Defined by The Bluetooth Core Specification, Version 5.4, Vol 3, Part F, Section 3.4.1.1
83 * Defined by the Supplement to the Bluetooth Core Specification (CSS), v11, Part B, Section 1.2.
94 /* Version 5.2, Vol 3, Part F, 3.2.9 defines maximum attribute length to 512 */
105 * Vol 3, Part F, Section 3.4.1.1 and in
107 * Part B, Section 1.2.
109 * The ATT and GATT documentation found in Vol 4, Part F and
110 * Part G describe when the different error codes are used.
/Zephyr-latest/lib/posix/options/
Dspinlock.c81 /* not specified as part of POSIX but this is the Linux behavior */ in pthread_spin_init()
103 /* not specified as part of POSIX but this is the Linux behavior */ in pthread_spin_destroy()
121 /* not specified as part of POSIX but this is the Linux behavior */ in pthread_spin_lock()
138 /* not specified as part of POSIX but this is the Linux behavior */ in pthread_spin_trylock()
153 /* not specified as part of POSIX but this is the Linux behavior */ in pthread_spin_unlock()
/Zephyr-latest/doc/services/portability/posix/implementation/
Dindex.rst31 - The POSIX interface and implementations should be part of Zephyr's POSIX library, and not
33 example where the implementation should remain part of the POSIX implementation is
34 ``getopt()``. Examples where the implementation should be part of separate libraries are
76 :ref:`System Call <syscalls>` is needed as part of the implementation, the declaration and the
/Zephyr-latest/arch/arm/core/mpu/
Darm_mpu_v7_internal.h60 * @param part Pointer to the data structure holding the partition
63 static int mpu_partition_is_valid(const struct z_arm_mpu_partition *part) in mpu_partition_is_valid() argument
71 ((part->size & (part->size - 1U)) == 0U) in mpu_partition_is_valid()
73 (part->size >= CONFIG_ARM_MPU_REGION_MIN_ALIGN_AND_SIZE) in mpu_partition_is_valid()
75 ((part->start & (part->size - 1U)) == 0U); in mpu_partition_is_valid()
/Zephyr-latest/soc/
DKconfig.v234 This string holds the full part number of the SoC. It is a hidden option
35 that you should not set directly. The part number selection choice defines
/Zephyr-latest/modules/mbedtls/configs/
Dconfig-threadnet.h2 * Minimal configuration for using TLS as part of Thread
19 * This file is part of mbed TLS (https://tls.mbed.org)
23 * Minimal configuration for using TLS a part of Thread
/Zephyr-latest/include/zephyr/fs/
Dlittlefs.h21 * @brief Get the major part of the littlefs disk version
24 * @return The major part of the littlefs disk version.
29 * @brief Get the minor part of the littlefs disk version
32 * @return The minor part of the littlefs disk version.
/Zephyr-latest/tests/ztest/error_hook/
DREADME.txt17 into a common part and let other test suites or applications reuse it, instead
105 Assert error expected as part of test case.
123 Fatal error expected as part of test case.
137 Fatal error expected as part of test case.
149 Fatal error expected as part of test case.
160 Fatal error expected as part of test case.
171 Fatal error expected as part of test case.
178 Assert error expected as part of test case.
191 Fatal error expected as part of test case.
/Zephyr-latest/subsys/bluetooth/controller/
DKconfig.df73 # BT Core spec 5.1, Vol 6, Part B, sec. 4.6 Feature Support
188 periodic advertising chain. The range is taken from BT Core spec 5.1, Vol 4 Part E
198 periodic advertising chain. The range is taken from BT Core spec 5.1, Vol 4 Part E
282 Bluetooth 5.3 Core Specification defines IQ samples to be 8 bits wide: Vol 4, Part E
292 Bluetooth 5.3 Core Specification defines IQ samples to be 8 bits wide: Vol 4, Part E
303 Bluetooth 5.3 Core Specification defines IQ samples to be 8 bits wide: Vol 4, Part E
319 integer, see Vol 4, Part E section 7.7.65.21. This option enables a vendor specific
329 integer, see Vol 4, Part E section 7.7.65.22. This option enables a vendor specific

12345678910>>...36