Home
last modified time | relevance | path

Searched full:description (Results 1 – 25 of 387) sorted by relevance

12345678910>>...16

/openthread-latest/third_party/mbedtls/repo/tests/scripts/
Dcheck_test_cases.py68 file_name, line_number, description): argument
75 description: the test case description as a byte string.
101 # This is a test case description line.
112 # test case description between --list-test-cases and its OUTCOME.CSV
118 # `<suite_name>;<description>` pattern.
121 suite_name, description = script_outputs
128 description.rstrip())
162 file_name, _line_number, description): argument
165 key = ';'.join([base_name, description.decode('utf-8')])
177 * Check that each description is valid (length, allowed character set, etc.).
[all …]
Dgenerate_psa_tests.py404 description: str,
410 * `description` : used for the test case names
416 self.description = description #type: str
493 tc.set_description(verb + ' ' + key.description)
499 dependencies += psa_information.generate_deps_from_description(key.description)
530 description = 'lifetime: ' + short
536 description=description)
561 description = 'usage' + extra_desc + ': '
569 description=description)
572 key1.description += crypto_knowledge.short_expression(usage_expr)
[all …]
Dgenerate_bignum_tests.py78 """Text to add at the end of the test case description."""
81 def description(self) -> str: member in BignumOperation
82 """Generate a description for the test case.
97 return super().description()
101 """Generate a description of the argument val.
103 This produces a simple description of the value, which is used in test
186 # Use the section of the docstring relevant to the CLI as description
/openthread-latest/third_party/mbedtls/repo/docs/architecture/testing/
Dtest-framework.md13description which succinctly describes for a human audience what the test does. The first non-comm…
17 …s must be unique within a `.data` file. If you can't think of a better description, the convention…
22 * Make the description descriptive. “foo: x=2, y=4” is more descriptive than “foo #2”. “foo: 0<x<y,…
23 * Avoid changing the description of an existing test case without a good reason. This breaks the tr…
33 …ase in `ssl-opt.sh` has a description which succinctly describes for a human audience what the tes…
35 …or [unit test descriptions](#unit-test-descriptions). In addition, the description must be written…
39 …case in `compat.sh` has a description which succinctly describes for a human audience what the tes…
59 * **Platform**: a description of the platform, e.g. `Linux-x86_64` or `Linux-x86_64-gcc7-msan`.
60 * **Configuration**: a unique description of the configuration (`mbedtls_config.h`).
62 * **Test case**: the description of the test case.
/openthread-latest/third_party/mbedtls/repo/docs/proposed/
Dpsa-driver-developer-guide.md5 For a description of the current state of drivers Mbed TLS, see our [PSA Cryptoprocessor driver dev…
26 … linkage, and to declare these functions in a **driver description file**. The driver description
28description file is JSON. The structure of this JSON file is specified in the section [“Driver des…
32 * A driver description file (in JSON format).
33 …g the types required by the driver description. The names of these header files is declared in the…
34 … for the target platform defining the functions required by the driver description. Implementation…
42 The driver description can include Mbed TLS extensions (marked by the namespace "mbedtls"). Mbed TL…
Dpsa-driver-integration-guide.md5 For a description of the current state of drivers Mbed TLS, see our [PSA Cryptoprocessor driver dev…
17 Concretely speaking, a driver consists of one or more **driver description files** in JSON format a…
23 1. Pass the driver description files through the Make variable `PSA_DRIVERS` when building the libr…
/openthread-latest/third_party/mbedtls/repo/scripts/mbedtls_dev/
Dtest_case.py28 def __init__(self, description: Optional[str] = None):
30 self.description = description #type: Optional[str]
38 def set_description(self, description: str) -> None:
39 self.description = description
51 if self.description is None:
65 assert self.description is not None # guide mypy
70 out.write(self.description + '\n')
Dtest_data_generation.py33 case_description: Short description of the test case. This may be
36 show_test_count: Toggle for inclusion of `count` in the test description.
38 test_name: A common name or description of the test function. This can
66 def description(self) -> str: member in BaseTest
67 """Create a test case description.
69 Creates a description of the test case, including a name for the test
70 function, an optional case count, and a description of the specific
75 Description for the test case.
88 tc.set_description(self.description())
179 def main(args, description: str, generator_class: Type[TestGenerator] = TestGenerator):
[all …]
Dbignum_common.py101 symbol: Symbol to use for the operation in case description.
191 def description(self) -> str: member in OperationCommon
192 """Generate a description for the test case.
208 return super().description()
363 def description(self) -> str: member in ModOperationCommon
364 """Generate a description for the test case.
371 return super().description() + " mod {:x}".format(self.int_n)
372 return super().description()
Dpsa_information.py90 # extra dependencies for test case based on key description.
105 description: str
107 """Return additional dependencies based on test case description and REGEX.
111 if re.search(regex, description):
/openthread-latest/tools/harness-thci/
DdeviceInputFields.xml2 …<DEVICE name="ARM" thumbnail="arm-board.jpg" description = "ARM: NXP FRDM-K64F with FireFly 6LoWPA…
16 … <DEVICE name="NXP" thumbnail="USB-KW24.jpg" description = " NXP(Freescale): USB-KW24D512 Dongles">
30 …<!--DEVICE name="SiLabs_IP" thumbnail="silabs-board.bmp" description = "Ember Debug Adapter (ISA3)…
48 …<DEVICE name="SiLabs" thumbnail="ZM357S-USB.jpg" description = "SiLabs: EM358x USB Stick" THCI="Si…
65 …<DEVICE name="OpenThread" thumbnail="OpenThread.png" description = "OpenThread: TI CC2538DK" THCI=…
79 …<DEVICE name="OpenThread_WpanCtl" thumbnail="OpenThread_WpanCtl.png" description = "OpenThread_Wpa…
97 …<DEVICE name="OpenThread_WpanCtl_SSH" thumbnail="OpenThread_WpanCtl.png" description = "OpenThread…
/openthread-latest/third_party/build_gn/toolchain/
DBUILD.gn9 description = "CC {{output}}"
18 description = "CXX {{output}}"
26 description = "AR {{target_output_name}}{{output_extension}}"
40 description = "SOLINK $soname"
59 description = "LINK $outfile"
68 description = "STAMP {{output}}"
72 description = "COPY {{source}} {{output}}"
/openthread-latest/src/core/net/
Ddnssd.hpp215 …e documentation for `otPlatDnssdRegisterService()`, for a more detailed description of the behavior
227 …documentation for `otPlatDnssdUnregisterService()`, for a more detailed description of the behavior
239 …* Refer to the documentation for `otPlatDnssdRegisterHost()`, for a more detailed description of t…
251 …he documentation for `otPlatDnssdUnregisterHost()`, for a more detailed description of the behavior
263 …* Refer to the documentation for `otPlatDnssdRegisterKey()`, for a more detailed description of th…
275 …* Refer to the documentation for `otPlatDnssdUnregisterKey()`, for a more detailed description of …
287 …* Refer to the documentation for `otPlatDnssdStartBrowser()` for a more detailed description of th…
297 …* Refer to the documentation for `otPlatDnssdStopBrowser()` for a more detailed description of the…
307 …e documentation for `otPlatDnssdStartSrvResolver()` for a more detailed description of the behavior
317 …he documentation for `otPlatDnssdStopSrvResolver()` for a more detailed description of the behavior
[all …]
/openthread-latest/.github/workflows/
Dotbr.yml124 description: ""
130 description: ""
136 description: "MATN"
142 description: "LowPower"
148 description: "internet access"
154 description: ""
160 description: ""
167 description: "core-firewall"
168 name: BR ${{ matrix.description }} (${{ matrix.otbr_mdns }}, TREL=${{matrix.otbr_trel}})
213 name: cov-br-docker-${{ matrix.description }}-${{ matrix.otbr_mdns }}-${{matrix.otbr_trel}}
[all …]
/openthread-latest/tools/tcat_ble_client/
Dpoetry.lock6 description = "Timeout context manager for asyncio programs"
20 description = "Bluetooth Low Energy platform Agnostic Klient"
40 description = "Python WinRT bindings for Bleak"
60 description = "Cross-platform colored terminal text."
71 description = "A faster version of dbus-next"
110 description = "Backport of PEP 654 (exception groups)"
124 description = "Read metadata from Python packages"
144 description = "brain-dead simple config-ini parsing"
155 description = "Core utilities for Python packages"
166 description = "plugin and hook calling mechanisms for python"
[all …]
/openthread-latest/third_party/mbedtls/repo/scripts/
Dgenerate_errors.pl77 die "Description neither before nor after $name in $file\n"
79 die "Description both before and after $name in $file\n"
81 my $description = (defined($before) ? $before : $after);
82 $description =~ s/^\s+//;
83 $description =~ s/\n( *\*)? */ /g;
84 $description =~ s/\.?\s+$//;
85 push @matches, [$name, $value, $description];
108 my ($error_name, $error_code, $description) = @$match;
113 $description =~ s/\\/\\\\/g;
196 "${white_space} return( \"$module_name - $description\" );\n"
/openthread-latest/etc/cmake/
Doptions.cmake52 macro(ot_option name ot_config description)
55 # `description` provides the help string for this OT cmake
64 set(${name} ${ARGN} CACHE STRING "enable ${description}")
66 set(${name} "" CACHE STRING "enable ${description}")
83 macro(ot_string_option name ot_config description)
85 # OPENTHREAD_CONFIG `ot_config`. Parameter `description` provides
92 set(${name} ${ARGN} CACHE STRING "${description}")
94 set(${name} "" CACHE STRING "${description}")
108 macro(ot_int_option name ot_config description)
116 set(${name} ${ARGN} CACHE STRING "${description}")
[all …]
/openthread-latest/.github/ISSUE_TEMPLATE/
Dfeature_request.md6 **Is your feature request related to a problem? Please describe.** A clear and concise description
8 **Describe the solution you'd like** A clear and concise description of what you want to happen.
10 **Describe alternatives you've considered** A clear and concise description of any alternative solu…
Dbug_report.md6 **Describe the bug** A clear and concise description of what the bug is.
15 **Expected behavior** A clear and concise description of what you expected to happen.
/openthread-latest/third_party/mbedtls/repo/ChangeLog.d/
D00README.md39 * Change description.
40 * Another change description.
43 * Yet another change description. This is a long change description that
45 * Yet again another change description.
/openthread-latest/third_party/jlink/SEGGER_RTT_V640/Syscalls/
DSEGGER_RTT_Syscalls_KEIL.c116 * Function description:
132 * Function description:
159 * Function description:
178 * Function description:
206 * Function description:
232 * Function description:
255 * Function description:
276 * Function description:
295 * Function description:
314 * Function description:
[all …]
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_asn1parse.function172 const char *description;
175 /* Value returned by traverse_callback if description runs out. */
177 /* Value returned by traverse_callback if description has an invalid format
187 const char *rest = state->description;
211 state->description = rest;
561 const char *description,
564 /* The description string is a comma-separated list of integers.
565 * For each element in the SEQUENCE in input, description contains
574 const char *rest = description;
619 const char *description,
[all …]
/openthread-latest/tools/harness-simulation/harness/Web/data/
DdeviceInputFields.xml2 …<DEVICE name="OpenThread_Sim" thumbnail="OpenThread.png" description = "OpenThread Simulation" THC…
5 …<DEVICE name="OpenThread_BR_Sim" thumbnail="OpenThread_BR.png" description = "OpenThread BR Simula…
/openthread-latest/third_party/mbedtls/repo/tests/include/test/
Dhelpers.h96 * \brief Get the current test name/description
98 * \return The current test name/description
206 * \param test Description of the failure or assertion that failed. This
219 * \param test Description of the assumption that caused the test case to
268 * \param test Description of the failure or assertion that failed. This
289 * \param test Description of the failure or assertion that failed. This
310 * \param test Description of the failure or assertion that failed. This
/openthread-latest/third_party/jlink/SEGGER_RTT_V640/RTT/
DSEGGER_RTT.c268 * Function description
316 * Function description
381 * Function description
450 * Function description
471 * Function description
509 * Function description
600 * Function description
632 * Function description
727 * Function description
872 * Function description
[all …]

12345678910>>...16