Home
last modified time | relevance | path

Searched full:any (Results 1 – 25 of 2333) sorted by relevance

12345678910>>...94

/Zephyr-latest/scripts/tests/twister/
Dtest_runner.py272 (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 …]
Dtest_testinstance.py296 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 …]
Dtest_hardwaremap.py44 {'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/
DLICENSE30 "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/
Dtest_sensor_shell.py15 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/
Dtestsuite-schema.yaml18 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/
Dstrtoll.c20 * 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 …]
Dstrtol.c20 * 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 …]
Dstrtoul.c20 * 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 …]
Dstrtoull.c20 * 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/
Dhooks.h26 * 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/
Dtest_ecc_utils.h15 * 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/
DKconfig.tfm.partitions18 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/
Dbluetooth.rst6 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/
Dspeculation.h16 * 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/
DREADME.rst10 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/
Ddevice-on-any-bus.yaml3 description: Device on any bus
5 compatible: "on-any-bus"
/Zephyr-latest/subsys/net/lib/lwm2m/
Dlwm2m_rw_json.h25 * "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
Dlwm2m_rw_oma_tlv.h25 * "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
Dlwm2m_rw_plain_text.h25 * "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/
Dnpm1300.h52 * @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/
Doverview.rst56 - 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/
DKconfig74 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/
Dindex.rst19 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/
Dstrstr.c23 * 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

12345678910>>...94