/Zephyr-latest/scripts/tests/twister/ |
D | test_runner.py | 272 (1, True, 'mock.ANY', 868 log_info_mock.assert_called_with(expected_log, mock.ANY) 876 mock.ANY, 877 mock.ANY, 878 mock.ANY, 879 mock.ANY, 880 mock.ANY, 881 mock.ANY, 882 mock.ANY, 883 mock.ANY, [all …]
|
D | test_testinstance.py | 296 any( 457 (True, mock.ANY, mock.ANY, mock.ANY, None, [], False), 458 (False, True, mock.ANY, mock.ANY, 'device', [], True), 459 (False, False, 'qemu', mock.ANY, 'qemu', ['QEMU_PIPE=1'], True), 460 (False, False, 'armfvp', mock.ANY, 'armfvp', [], True), 505 ('nt', 'renode', mock.ANY, mock.ANY, 506 mock.ANY, mock.ANY, mock.ANY, 507 mock.ANY, mock.ANY, mock.ANY, mock.ANY, False), 508 ('linux', mock.ANY, mock.ANY, mock.ANY, 509 True, mock.ANY, mock.ANY, [all …]
|
D | test_hardwaremap.py | 44 {'baud': 115200, 'lock': mock.ANY, 'flash_timeout': 60}, 70 'lock': mock.ANY, 118 ('ghm.yaml', mock.ANY, mock.ANY, [], mock.ANY, mock.ANY, mock.ANY, 0, 120 (None, False, 'hm.yaml', [], mock.ANY, mock.ANY, mock.ANY, 0, 122 (None, True, 'hm.yaml', [], mock.ANY, mock.ANY, ['fix'], 1, 124 (None, True, 'hm.yaml', ['pX'], mock.ANY, mock.ANY, ['fix'], 1, 468 'runner': mock.ANY, 476 'runner': mock.ANY, 484 'runner': mock.ANY, 492 'runner': mock.ANY, [all …]
|
/Zephyr-latest/ |
D | LICENSE | 30 "Object" form shall mean any form resulting from mechanical 40 "Derivative Works" shall mean any work, whether in Source or Object 48 "Contribution" shall mean any work of authorship, including 49 the original version of the Work and any modifications or additions 54 means any form of electronic, verbal, or written communication sent 62 "Contributor" shall mean Licensor and any individual or Legal Entity 82 institute patent litigation against any entity (including a 85 or contributory patent infringement, then any patent licenses 90 Work or Derivative Works thereof in any medium, with or without 94 (a) You must give any other recipients of the Work or [all …]
|
/Zephyr-latest/samples/sensor/sensor_shell/pytest/ |
D | test_sensor_shell.py | 15 assert any(['device name: sensor@0' in line for line in lines]), 'expected response not found' 16 assert any(['device name: sensor@1' in line for line in lines]), 'expected response not found' 25 … assert any(['channel type=31(voltage)' in line for line in lines]), 'expected response not found' 28 …assert any(['channel type=53(gauge_state_of_health)' in line for line in lines]), 'expected respon… 33 …assert any(['channel type=59(gauge_desired_charging_current)' in line for line in lines]), 'expect… 42 …assert any(['sensor@0(channel=co2, attr=sampling_frequency)' in line for line in lines]), 'expecte… 45 …assert any(['sensor@1(channel=gauge_state_of_health, attr=slope_th)' in line for line in lines]), … 55 assert any([expected_line in line for line in lines]), 'expected response not found' 59 assert any([expected_line in line for line in lines]), 'expected response not found' 69 assert any([expected_line in line for line in lines]), 'expected response not found' [all …]
|
/Zephyr-latest/scripts/schemas/twister/ |
D | testsuite-schema.yaml | 18 type: any 21 type: any 45 type: any 48 type: any 71 type: any 134 type: any 137 type: any 166 type: any 169 type: any 202 type: any [all …]
|
/Zephyr-latest/lib/libc/minimal/source/stdlib/ |
D | strtoll.c | 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 49 register int neg = 0, any, cutlim; in strtoll() local 52 * Skip white space and pick up leading +/- sign if any. in strtoll() 90 * Set any if any `digits' consumed; make it negative to indicate in strtoll() 96 for (acc = 0, any = 0;; c = *s++) { in strtoll() 107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoll() 108 any = -1; in strtoll() [all …]
|
D | strtol.c | 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 49 register int neg = 0, any, cutlim; in strtol() local 52 * Skip white space and pick up leading +/- sign if any. in strtol() 91 * Set any if any `digits' consumed; make it negative to indicate in strtol() 97 for (acc = 0, any = 0;; c = *s++) { in strtol() 108 if ((any < 0) || (acc > cutoff) || ((acc == cutoff) && (c > cutlim))) { in strtol() 109 any = -1; in strtol() [all …]
|
D | strtoul.c | 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 49 register int neg = 0, any, cutlim; in strtoul() local 77 for (acc = 0, any = 0;; c = *s++) { in strtoul() 88 if ((any < 0) || (acc > cutoff) || ((acc == cutoff) && (c > cutlim))) { in strtoul() 89 any = -1; in strtoul() 91 any = 1; in strtoul() 96 if (any < 0) { in strtoul() [all …]
|
D | strtoull.c | 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 49 register int neg = 0, any, cutlim; in strtoull() local 76 for (acc = 0, any = 0;; c = *s++) { in strtoull() 87 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in strtoull() 88 any = -1; in strtoull() 90 any = 1; in strtoull() 95 if (any < 0) { in strtoull() [all …]
|
/Zephyr-latest/include/zephyr/platform/ |
D | hooks.h | 26 * This hook is implemented by the SoC and can be used to perform any 34 * This hook is implemented by the SoC and can be used to perform any 42 * This hook is implemented by the SoC and can be used to perform any 50 * This hook is implemented by the SoC and can be used to perform any 58 * This hook is implemented by the SoC and can be used to perform any 67 * is implemented by the board and can be used to perform any board-specific 77 * any board-specific initialization.
|
/Zephyr-latest/tests/crypto/tinycrypt/src/ |
D | test_ecc_utils.h | 15 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 23 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 44 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 47 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 50 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 52 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
/Zephyr-latest/modules/trusted-firmware-m/ |
D | Kconfig.tfm.partitions | 18 parameter. Any dependencies between the various TFM_PARTITION_* 29 parameter. Any dependencies between the various TFM_PARTITION_* 40 parameter. Any dependencies between the various TFM_PARTITION_* 52 parameter. Any dependencies between the various TFM_PARTITION_* 63 parameter. Any dependencies between the various TFM_PARTITION_* 75 parameter. Any dependencies between the various TFM_PARTITION_*
|
/Zephyr-latest/samples/bluetooth/ |
D | bluetooth.rst | 6 To build any of the Bluetooth samples, follow the same steps as building 7 any other Zephyr application. Refer to :ref:`bluetooth-dev` for more information. 14 then be used with any external Host (including Zephyr running natively or with 19 If you want to run any bluetooth sample on the nRF5340 device (build using
|
/Zephyr-latest/include/zephyr/sys/ |
D | speculation.h | 16 * CPUs with speculative execution may speculate past any size checks and 18 * This will unconditionally truncate any out-of-bounds indexes to 20 * any branch instructions. 40 * the complement of index, so that we automatically reject any large in k_array_index_sanitize()
|
/Zephyr-latest/samples/subsys/input/input_dump/ |
D | README.rst | 10 The Input Dump sample prints any input event using the :ref:`input` APIs. 15 The samples works on any board with an input driver defined in the board devicetree. 28 After starting, the sample will print any input event in the console.
|
/Zephyr-latest/scripts/dts/python-devicetree/tests/test-bindings/ |
D | device-on-any-bus.yaml | 3 description: Device on any bus 5 compatible: "on-any-bus"
|
/Zephyr-latest/subsys/net/lib/lwm2m/ |
D | lwm2m_rw_json.h | 25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 28 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
D | lwm2m_rw_oma_tlv.h | 25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 28 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
D | lwm2m_rw_plain_text.h | 25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 28 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
/Zephyr-latest/include/zephyr/drivers/mfd/ |
D | npm1300.h | 52 * @retval -errno In case of any bus error (see i2c_write_read_dt()) 65 * @retval -errno In case of any bus error (see i2c_write_read_dt()) 77 * @retval -errno In case of any bus error (see i2c_write_dt()) 90 * @retval -errno In case of any bus error (see i2c_write_dt()) 104 * @retval -errno In case of any bus error (see i2c_write_read_dt(), i2c_write_dt()) 116 * @retval -errno In case of any bus error (see i2c_write_dt()) 125 * @retval -errno In case of any bus error (see i2c_write_dt()) 138 * @retval -errno In case of any bus error (see i2c_write_dt())
|
/Zephyr-latest/doc/kernel/usermode/ |
D | overview.rst | 56 - On MMU systems, threads may access any user thread stack in the same 62 - User threads by default are not granted default access to any memory 98 - The kernel itself, and any threads that are executing in supervisor mode, 101 - The toolchain and any supplemental programs used by the build system are 135 - Any user thread will only have access to a subset of memory: 136 typically its stack, program text, read-only data, and any partitions 137 configured in the :ref:`memory_domain` it belongs to. Access to any other RAM 148 that any data inside a kernel object that is private to the kernel cannot be 151 - User threads by default have no permission to access any kernel object or 164 other means, and verify proper read/write access to any memory buffers [all …]
|
/Zephyr-latest/boards/native/nrf_bsim/ |
D | Kconfig | 74 Any NRF simulated SOC with BabbleSim, based on the POSIX arch 81 Any NRF52 simulated SOC with BabbleSim, based on the POSIX arch 88 Any NRF53 simulated SOC with BabbleSim, based on the POSIX arch 95 Any NRF54L simulated SOC with BabbleSim, based on the POSIX arch
|
/Zephyr-latest/doc/develop/manifest/ |
D | index.rst | 19 To disable any of the active modules, for example a specific HAL, use the 33 call :command:`west update`. You can add any of the projects or modules listed below 37 To enable any of the modules below, use the following commands:: 51 To use any of the projects below, you will need to define your own manifest
|
/Zephyr-latest/lib/libc/minimal/source/string/ |
D | strstr.c | 23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|