/openthread-latest/third_party/mbedtls/repo/ |
D | .uncrustify.cfg | 58 # At least 1 space around assignment 64 # At least 1 space around '||' and '&&' 88 # At least 1 space around comparison operators 127 # At least 1 space before a '*' pointer star 142 # At least 1 space after a type in variable definition etc 182 # At least 1 space inside '{ }' 185 # At least 1 space inside '{ }' in an enum 188 # At least 1 space inside '{ }' in a struct 191 # At least 1 space between a function return type and the function name 205 # At least 1 space between a macro's name and its definition [all …]
|
D | BRANCHES.md | 3 At any point in time, we have a number of maintained branches, currently consisting of:
|
D | CMakeLists.txt | 146 # Linking to non-existent file is not desirable. At best you will have a
|
/openthread-latest/src/core/common/ |
D | array.hpp | 247 Type *At(IndexType aIndex) { return (aIndex < mLength) ? &mElements[aIndex] : nullptr; } in At() function in ot::Array 258 …const Type *At(IndexType aIndex) const { return (aIndex < mLength) ? &mElements[aIndex] : nullptr;… in At() function in ot::Array 265 Type *Front(void) { return At(0); } in Front() 272 const Type *Front(void) const { return At(0); } in Front() 279 Type *Back(void) { return At(mLength - 1); } in Back() 286 const Type *Back(void) const { return At(mLength - 1); } in Back()
|
D | heap_array.hpp | 203 Type *At(IndexType aIndex) { return (aIndex < mLength) ? &mArray[aIndex] : nullptr; } in At() function in ot::Heap::Array 215 … const Type *At(IndexType aIndex) const { return (aIndex < mLength) ? &mArray[aIndex] : nullptr; } in At() function in ot::Heap::Array 224 Type *Front(void) { return At(0); } in Front() 233 const Type *Front(void) const { return At(0); } in Front()
|
/openthread-latest/tests/unit/ |
D | test_array.cpp | 60 VerifyOrQuit(array.At(0) == nullptr); in TestArray() 99 VerifyOrQuit(array.At(index) != nullptr); in TestArray() 100 VerifyOrQuit(*array.At(index) == seed + index + 1); in TestArray()
|
/openthread-latest/third_party/mbedtls/repo/programs/test/cmake_package/ |
D | CMakeLists.txt | 32 # At this point, the Mbed TLS targets should have been imported, and we can now
|
/openthread-latest/third_party/mbedtls/repo/programs/test/cmake_package_install/ |
D | CMakeLists.txt | 35 # At this point, the Mbed TLS targets should have been imported, and we can now
|
/openthread-latest/third_party/mbedtls/repo/scripts/ |
D | ci.requirements.txt | 14 # At the time of writing, only needed for tests/scripts/audit-validity-dates.py.
|
/openthread-latest/third_party/mbedtls/repo/docs/architecture/testing/ |
D | driver-interface-test-strategy.md | 45 * At least one test should register multiple drivers with a key in each driver and check that the e… 46 * At least one test should register the same driver structure with multiple lifetime values and che… 65 * Unexpected errors. At least test that if the driver returns `PSA_ERROR_GENERIC_ERROR`, this is pr… 70 * Check that the storage ends up in the expected state. At least make sure that no intermediate fil…
|
D | test-framework.md | 21 …We have a lot of test cases with longer descriptions, but they should be avoided. At least please …
|
D | invasive-testing.md | 76 * At the beginning of the test function, set the global function pointers to the desired value.
|
/openthread-latest/src/core/radio/ |
D | trel_interface.cpp | 422 const Peer *entry = mPeerTable.At(aIterator); in GetNextPeer()
|
/openthread-latest/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_shax.function | 241 * At each test ensure that the same hash is generated.
|
D | test_suite_psa_crypto_metadata.function | 341 /* At-leat-this-length versions */ 467 /* At-leat-this-length versions */
|
D | test_suite_bignum_random.function | 101 /* At this point, x = floor((b - 2^n) / 2^(n-8)). b is significantly above
|
D | host_test.function | 264 * At high optimization levels (e.g. gcc -O3), this function may be
|
/openthread-latest/tools/spi-hdlc-adapter/ |
D | README.md | 53 At which point you will see something like this in the syslogs:
|
/openthread-latest/third_party/mbedtls/repo/docs/ |
D | psa-driver-example-and-guide.md | 127 * *At compile time via flags.* This is the preferred option when your project uses Mbed TLS mostly …
|
D | driver-only-builds.md | 226 At the moment, there is no driver support for interruptible operations
|
/openthread-latest/third_party/mbedtls/repo/docs/architecture/ |
D | psa-crypto-implementation-structure.md | 105 At the time of writing, all cryptographic mechanisms that are accessible through `psa_xxx` APIs in …
|
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-thread-safety/ |
D | psa-thread-safety.md | 320 * At this point, the destroying thread directly calls `psa_wipe_key_slot`. 365 …easonably expect them to be more flexible in terms of re-entrancy as well. At this point it is har…
|
/openthread-latest/third_party/mbedtls/repo/docs/proposed/ |
D | psa-conditional-inclusion-c.md | 195 At the time of writing, the preferred configuration mechanism for a PSA service is in JSON syntax. …
|
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-migration/ |
D | md-cipher-dispatch.md | 266 …t as well call the accelerator, unless it's important that the call fails. At the time of writing,… 417 Unlike the full MD, MD light does not support null pointers as `mbedtls_md_context_t *`. At least s…
|
/openthread-latest/src/core/net/ |
D | srp_server.cpp | 1832 const Heap::String *subType = mSubTypes.At(aIndex); in GetSubTypeServiceNameAt()
|