Home
last modified time | relevance | path

Searched refs:any (Results 1 – 25 of 789) sorted by relevance

12345678910>>...32

/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/lib/libc/minimal/source/stdlib/
Dstrtoul.c49 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()
103 *endptr = (char *)(any ? (s - 1) : nptr); in strtoul()
Dstrtoull.c49 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()
102 *endptr = (char *)(any ? (char *)s - 1 : nptr); in strtoull()
Dstrtol.c49 register int neg = 0, any, cutlim; in strtol() local
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()
111 any = 1; in strtol()
117 if (any < 0) { in strtol()
125 *endptr = (char *)(any ? (s - 1) : nptr); in strtol()
Dstrtoll.c49 register int neg = 0, any, cutlim; in strtoll() local
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()
110 any = 1; in strtoll()
116 if (any < 0) { in strtoll()
124 *endptr = (char *)(any ? (char *)s - 1 : nptr); in strtoll()
/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/
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/soc/altr/zephyr_nios2f/cpu/
Dghrd_10m50da.qpf6 # functions, and any output files from any of the foregoing
7 # (including device programming or simulation files), and any
/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/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/.github/ISSUE_TEMPLATE/
D002_enhancement.md22 A clear and concise description of any alternative solutions or features you've considered.
27 Add any other context or graphics (drag-and-drop an image) about the feature request here.
D004_feature_request.md22 A clear and concise description of any alternative solutions or features you've considered.
27 Add any other context or graphics (drag-and-drop an image) about the feature request here.
D003_rfc-proposal.md38 as possible. Please also ensure to include any context or background info here.
53 List any concerns, unknowns, and generally unresolved questions etc.
58 List any alternatives considered, and the reasons for choosing this option
/Zephyr-latest/drivers/counter/
DKconfig.nrfx12 # Internal flag which detects if PPI wrap feature is enabled for any instance
21 # Internal flag which detects if fixed top feature is enabled for any instance
/Zephyr-latest/scripts/coccinelle/
Dmini_lock.cocci52 ... when any
59 ... when any
73 when any
81 when any
/Zephyr-latest/boards/shields/npm1300_ek/doc/
Dindex.rst18 the ``arduino_i2c`` bus. This allows to use the shield with any host board that
24 The shield can be used in any application by setting ``--shield npm1300_ek``
/Zephyr-latest/subsys/net/l2/dummy/any/
DKconfig5 bool "Pseudo network interface a.k.a any interface"
12 The option will create an "any" network interface which acts
DCMakeLists.txt6 zephyr_library_sources_ifdef(CONFIG_NET_PSEUDO_IFACE any.c)
/Zephyr-latest/samples/drivers/display/
DREADME.rst15 at any point or the order of the corners is not as described above then the LCD
21 As this is a generic sample it should work with any display supported by Zephyr.
33 For testing purpose without the need of any hardware, the :ref:`native_sim <native_sim>`
/Zephyr-latest/subsys/net/l2/dummy/
DKconfig4 source "subsys/net/l2/dummy/any/Kconfig"
DCMakeLists.txt11 add_subdirectory(any)
/Zephyr-latest/doc/develop/west/
Dwest-apis.rst122 The *topdir* parameter can now be any ``os.PathLike``.
392 can now be any ``os.PathLike``.
406 The *project_ids* sequence can now contain any ``os.PathLike``.
457 The *path* and *topdir* parameters can now be any ``os.PathLike``.
480 The *cwd* parameter can now be any ``os.PathLike``.
484 The *cwd* parameter can now be any ``os.PathLike``.
489 The *cwd* parameter can now be any ``os.PathLike``.
493 The *cwd* parameter can now be any ``os.PathLike``.
497 The *cwd* parameter can now be any ``os.PathLike``.
502 The *cwd* parameter can now be any ``os.PathLike``.
[all …]
/Zephyr-latest/boards/shields/npm1100_ek/doc/
Dindex.rst23 Arduino shield pins. This allows to use the shield with any host board that
36 The shield can be used in any application by setting ``--shield npm1100_ek``
/Zephyr-latest/cmake/linker/ld/host-gcc/
Dlinker_flags.cmake1 # The host-gcc supports the same flags as any other gcc.
/Zephyr-latest/doc/connectivity/networking/api/
Dtls_credentials_shell.rst78 "``<SECTAG>``", "The sectag to use for the new credential. Can be any non-negative integer."
82 …"``<DATA>``", "If provided, this argument will be used as the credential data, instead of any data…
107 "``<SECTAG>``", "The sectag of the credential to delete. Can be any non-negative integer."
133 "``<SECTAG>``", "The sectag of the credential to get. Can be any non-negative integer."
163 cred list any <TYPE>
179 … only list credentials with this sectag. Pass ``any`` or omit to allow any sectag. Otherwise, can …
180 …vided, only list credentials with this credential type. Pass ``any`` or omit to allow any credenti…
248 …`BIN`` format can be used to install credentials of any type, since base64 can be used to encode a…

12345678910>>...32