Home
last modified time | relevance | path

Searched refs:used (Results 1 – 25 of 157) sorted by relevance

1234567

/openthread-2.7.6/third_party/mbedtls/repo/doxygen/
Dmbedtls.doxyfile3 # This file describes the settings to be used by the documentation system
19 # This tag specifies the encoding used for all characters in the config file
20 # that follow. The default is UTF-8 which is also the encoding used for all
33 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
35 # if some version control system is used.
52 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
55 # where doxygen was started. If left blank the current directory will be used.
68 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
96 # that is used to form the text in various listings. Each string
99 # used as the annotated text. Otherwise, the brief description is used as-is.
[all …]
/openthread-2.7.6/third_party/nlbuild-autotools/repo/autoconf/m4/
Dnl_with_package.m484 # PACKAGE-SUCCINCT-NAME : The package-specific name used for pkg-config,
87 # "mgsp" here is used for --with-mgsp=DIR
181 # PACKAGE-SUCCINCT-NAME : The package-specific name used for pkg-config,
184 # "mgsp" here is used for --with-mgsp=DIR
236 # PACKAGE-SUCCINCT-NAME : The package-specific name used for pkg-config,
239 # "mgsp" here is used for --with-mgsp=DIR
296 # PACKAGE-SUCCINCT-NAME : The package-specific name used for pkg-config,
299 # "mgsp" here is used for --with-mgsp=DIR
339 # This macro is used to test for the presence, with pkg-config if it
359 # be used and is found; otherwise, 'no' if it is not to be used.
[all …]
/openthread-2.7.6/third_party/nlbuild-autotools/repo/examples/
DDoxyfile.in21 # This file describes the settings to be used by the
44 # This tag specifies the encoding used for all characters in the config file
45 # that follow. The default is UTF-8 which is also the encoding used for all text
55 # project for which the documentation is generated. This name is used in the
61 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
63 # control system is used.
80 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
83 # left blank the current directory will be used.
97 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
129 # used to form the text in various listings. Each string in this list, if found
[all …]
/openthread-2.7.6/doc/
DDoxyfile.in15 # names of its contributors may be used to endorse or promote products
32 # This file describes the settings to be used by the
55 # This tag specifies the encoding used for all characters in the config file
56 # that follow. The default is UTF-8 which is also the encoding used for all text
66 # project for which the documentation is generated. This name is used in the
72 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
74 # control system is used.
91 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
94 # left blank the current directory will be used.
108 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
[all …]
/openthread-2.7.6/third_party/mbedtls/repo/programs/fuzz/
DREADME.md6 They are used with a so-called fuzz driver, which will generate inputs, try to process them with th…
8 These targets were meant to be used with oss-fuzz but can be used in other contexts.
56 Here is an example of dummy.py for extracting payload from client to server (if we used `tcp.dstpor…
/openthread-2.7.6/third_party/mbedtls/repo/
D.gitignore10 # CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
34 # CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
/openthread-2.7.6/examples/platforms/cc2538/
Dstartup-gcc.c81 __attribute__((section(".vectors"), used)) void (*const vectors[])(void) = {
175 __attribute__((__section__(".flashcca"), used)) const flash_cca_lock_page_t flash_cca_lock_page = {
/openthread-2.7.6/third_party/mbedtls/repo/library/
Dsha256.c362 uint32_t used; in mbedtls_sha256_finish_ret() local
371 used = ctx->total[0] & 0x3F; in mbedtls_sha256_finish_ret()
373 ctx->buffer[used++] = 0x80; in mbedtls_sha256_finish_ret()
375 if( used <= 56 ) in mbedtls_sha256_finish_ret()
378 memset( ctx->buffer + used, 0, 56 - used ); in mbedtls_sha256_finish_ret()
383 memset( ctx->buffer + used, 0, 64 - used ); in mbedtls_sha256_finish_ret()
Dsha512.c410 unsigned used; in mbedtls_sha512_finish_ret() local
419 used = ctx->total[0] & 0x7F; in mbedtls_sha512_finish_ret()
421 ctx->buffer[used++] = 0x80; in mbedtls_sha512_finish_ret()
423 if( used <= 112 ) in mbedtls_sha512_finish_ret()
426 memset( ctx->buffer + used, 0, 112 - used ); in mbedtls_sha512_finish_ret()
431 memset( ctx->buffer + used, 0, 128 - used ); in mbedtls_sha512_finish_ret()
Dmd5.c323 uint32_t used; in mbedtls_md5_finish_ret() local
329 used = ctx->total[0] & 0x3F; in mbedtls_md5_finish_ret()
331 ctx->buffer[used++] = 0x80; in mbedtls_md5_finish_ret()
333 if( used <= 56 ) in mbedtls_md5_finish_ret()
336 memset( ctx->buffer + used, 0, 56 - used ); in mbedtls_md5_finish_ret()
341 memset( ctx->buffer + used, 0, 64 - used ); in mbedtls_md5_finish_ret()
Dssl_tls.c5309 size_t used = 0; in ssl_session_save() local
5326 used += sizeof( ssl_serialized_session_header ); in ssl_session_save()
5328 if( used <= buf_len ) in ssl_session_save()
5340 used += 8; in ssl_session_save()
5342 if( used <= buf_len ) in ssl_session_save()
5360 used += 2 /* ciphersuite */ in ssl_session_save()
5367 if( used <= buf_len ) in ssl_session_save()
5397 used += 3 + cert_len; in ssl_session_save()
5399 if( used <= buf_len ) in ssl_session_save()
5414 used += 1 /* type */ + 1 /* length */ + session->peer_cert_digest_len; in ssl_session_save()
[all …]
Dsha1.c375 uint32_t used; in mbedtls_sha1_finish_ret() local
384 used = ctx->total[0] & 0x3F; in mbedtls_sha1_finish_ret()
386 ctx->buffer[used++] = 0x80; in mbedtls_sha1_finish_ret()
388 if( used <= 56 ) in mbedtls_sha1_finish_ret()
391 memset( ctx->buffer + used, 0, 56 - used ); in mbedtls_sha1_finish_ret()
396 memset( ctx->buffer + used, 0, 64 - used ); in mbedtls_sha1_finish_ret()
/openthread-2.7.6/tests/toranj/
DREADME.md6 - It can be used to simulate multiple nodes forming complex network topologies.
18 To run all tests, `start` script can be used. This script will build OpenThread with proper configu…
149 `wpan` module provides variables for different `wpantund` properties. Some commonly used are:
160 Method `join_node()` can be used by a node to join another node:
167 Method `allowlist_node()` can be used to add a given node to the allowlist of the device and enable…
226 - or a tuple (ipv6 address as string, port). if no port is given, a random port number is used.
235 `prepare_tx` returns a `wpan.AsyncSender` object. The sender object can be used to check success/fa…
246 After all exchanges are prepared, static method `perform_async_tx_rx()` should be used to start all…
307 When `start.sh` script is used to run all test-cases, if any test fails, to help with debugging of …
373 …arpet#/media/File:Toranj_-_special_circular_design_of_Iranian_carpets.JPG) used in Persian carpets.
/openthread-2.7.6/third_party/mbedtls/repo/tests/data_files/dir-maxpath/
DReadme.txt1 These certificates form a very long chain, used to test the
/openthread-2.7.6/
DSTYLE_GUIDE.md29 - Inline functions should be used judiciously.
56 - The preprocessor shall not be used to redefine reserved language keywords.
59 …- The `undef` preprocessor directive should be avoided and shall never be used to undefine a symbo…
68 …- Standard, scalar data types defined in stdint.h (C) or cstdint (C++) should be used for basic si…
75 …- The symbol used for the guard should be the file name, converted to all uppercase, with any spac…
100 …- Wherever possible and practical, C++ style casts should be used and preferred to the C style cas…
102 …- The C++ `using namespace` statement should not be used outside of object scope inside header fil…
151 …le declarations should be placed together at the top of the enclosing scope in which they are used.
170 - Detail what the globals are and how they are to be used.
171 …- Detail what the free function and object / class methods are and how they are to be used, what t…
/openthread-2.7.6/third_party/mbedtls/repo/docs/proposed/
Dpsa-driver-developer-guide.md20used for hardware **accelerators**. When a transparent driver is available for a particular combin…
21 * **Opaque** drivers implement cryptographic operations on keys that can only be used inside a prot…
/openthread-2.7.6/third_party/build_gn/
DREADME.md19 gn tool requires paths to all the toolchains to be used for compilation, for
/openthread-2.7.6/third_party/jlink/
DREADME.md19 the target's real time behavior. SEGGER RTT can be used with any J-Link model and
/openthread-2.7.6/third_party/mbedtls/repo/tests/suites/
Dmain_test.function10 * The following files were used to create this file.
157 * to allow the setjmp() call used to catch any calls to the
158 * parameter failure callback, to be used. Calls to setjmp()
/openthread-2.7.6/third_party/nlbuild-autotools/repo/make/
Dpost.mak20 # any makefile used in the build tree.
Dpre.mak20 # any makefile used in the build tree.
/openthread-2.7.6/tools/gerrit/
DREADME.md20 - `--no-list` when used the commit message will not include the list of squashed commits.
21 - `--no-commit` when used, the tool squashes and stages the changes but does not commit"
/openthread-2.7.6/third_party/nlbuild-autotools/repo/automake/
Dpost.am20 # be included in any automakefile used in the build tree.
Dpre.am20 # be included in any automakefile used in the build tree.
/openthread-2.7.6/third_party/nlbuild-autotools/repo/make/post/
Drules.mak20 # common rules included in any makefile used in the build tree.

1234567