Home
last modified time | relevance | path

Searched refs:At (Results 1 – 25 of 34) sorted by relevance

12

/openthread-latest/third_party/mbedtls/repo/
D.uncrustify.cfg58 # 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 …]
DBRANCHES.md3 At any point in time, we have a number of maintained branches, currently consisting of:
DCMakeLists.txt146 # Linking to non-existent file is not desirable. At best you will have a
/openthread-latest/src/core/common/
Darray.hpp247 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()
Dheap_array.hpp203 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/
Dtest_array.cpp60 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/
DCMakeLists.txt32 # 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/
DCMakeLists.txt35 # At this point, the Mbed TLS targets should have been imported, and we can now
/openthread-latest/third_party/mbedtls/repo/scripts/
Dci.requirements.txt14 # At the time of writing, only needed for tests/scripts/audit-validity-dates.py.
/openthread-latest/third_party/mbedtls/repo/docs/architecture/testing/
Ddriver-interface-test-strategy.md45 * 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…
Dtest-framework.md21 …We have a lot of test cases with longer descriptions, but they should be avoided. At least please …
Dinvasive-testing.md76 * At the beginning of the test function, set the global function pointers to the desired value.
/openthread-latest/src/core/radio/
Dtrel_interface.cpp422 const Peer *entry = mPeerTable.At(aIterator); in GetNextPeer()
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_shax.function241 * At each test ensure that the same hash is generated.
Dtest_suite_psa_crypto_metadata.function341 /* At-leat-this-length versions */
467 /* At-leat-this-length versions */
Dtest_suite_bignum_random.function101 /* At this point, x = floor((b - 2^n) / 2^(n-8)). b is significantly above
Dhost_test.function264 * At high optimization levels (e.g. gcc -O3), this function may be
/openthread-latest/tools/spi-hdlc-adapter/
DREADME.md53 At which point you will see something like this in the syslogs:
/openthread-latest/third_party/mbedtls/repo/docs/
Dpsa-driver-example-and-guide.md127 * *At compile time via flags.* This is the preferred option when your project uses Mbed TLS mostly …
Ddriver-only-builds.md226 At the moment, there is no driver support for interruptible operations
/openthread-latest/third_party/mbedtls/repo/docs/architecture/
Dpsa-crypto-implementation-structure.md105 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/
Dpsa-thread-safety.md320 * 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/
Dpsa-conditional-inclusion-c.md195 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/
Dmd-cipher-dispatch.md266 …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/
Dsrp_server.cpp1832 const Heap::String *subType = mSubTypes.At(aIndex); in GetSubTypeServiceNameAt()

12