Searched refs:pointer (Results 1 – 21 of 21) sorted by relevance
/openthread-3.5.0/third_party/mbedtls/repo/tests/include/test/ |
D | macros.h | 123 #define ASSERT_ALLOC( pointer, length ) \ 126 TEST_ASSERT( ( pointer ) == NULL ); \ 129 ( pointer ) = mbedtls_calloc( sizeof( *( pointer ) ), \ 131 TEST_ASSERT( ( pointer ) != NULL ); \ 141 #define ASSERT_ALLOC_WEAK( pointer, length ) \ 144 TEST_ASSERT( ( pointer ) == NULL ); \ 147 ( pointer ) = mbedtls_calloc( sizeof( *( pointer ) ), \ 149 TEST_ASSUME( ( pointer ) != NULL ); \
|
/openthread-3.5.0/src/core/common/ |
D | owned_ptr.hpp | 142 Type *pointer = mPointer; in Release() local 144 return pointer; in Release()
|
D | retain_ptr.hpp | 134 Type *pointer = mPointer; in Release() local 136 return pointer; in Release()
|
/openthread-3.5.0/third_party/mbedtls/repo/programs/test/ |
D | selftest.c | 375 void *pointer; in main() local 382 memset( &pointer, 0, sizeof( void * ) ); in main() 383 if( pointer != NULL ) in main()
|
/openthread-3.5.0/third_party/mbedtls/repo/docs/architecture/ |
D | tls13-experimental.md | 62 - Reader (Abstracted pointer arithmetic and reassembly logic for incoming data) 63 - Writer (Abstracted pointer arithmetic and fragmentation logic for outgoing data)
|
/openthread-3.5.0/third_party/mbedtls/repo/tests/suites/ |
D | host_test.function | 102 * \brief Read a line from the passed file pointer. 104 * \param f FILE pointer 430 * \param info A pointer to the test info structure. 524 void *pointer; 543 * of a NULL pointer. We do however use that in our code for initializing 546 memset( &pointer, 0, sizeof( void * ) ); 547 if( pointer != NULL ) 549 mbedtls_fprintf( stderr, "all-bits-zero is not a NULL pointer\n" );
|
D | main_test.function | 134 * \brief Function pointer type for test function wrappers. 169 * \param fp Function pointer to the test function.
|
D | test_suite_net.function | 69 * bug might trigger an invalid pointer dereference or a memory leak. */
|
D | test_suite_entropy.function | 154 * bug might trigger an invalid pointer dereference or a memory leak. */
|
D | test_suite_asn1parse.data | 610 Free named data: null pointer
|
D | test_suite_psa_crypto.function | 4098 /* If the label is empty, the test framework puts a non-null pointer 4099 * in label->x. Test that a null pointer works as well. */ 4246 /* If the label is empty, the test framework puts a non-null pointer 4247 * in label->x. Test that a null pointer works as well. */ 4309 /* If the label is empty, the test framework puts a non-null pointer 4310 * in label->x. Test that a null pointer works as well. */
|
D | test_suite_pk.function | 223 /* In informational functions, we accept NULL where a context pointer
|
D | test_suite_rsa.function | 509 * bug might trigger an invalid pointer dereference or a memory leak. */
|
D | test_suite_ssl.function | 2188 /* In order to always have a valid pointer we always allocate at least 1 2203 /* In order to always have a valid pointer we always allocate at least 1
|
/openthread-3.5.0/third_party/mbedtls/repo/ |
D | CMakeLists.txt | 207 …n -fsanitize=undefined -fno-sanitize-recover=all -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sib… 218 …n -fsanitize=undefined -fno-sanitize-recover=all -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sib… 220 …set(CMAKE_C_FLAGS_MEMSANDBG "-fsanitize=memory -O1 -g3 -fno-omit-frame-pointer -fno-optimize-sib…
|
D | ChangeLog | 100 * Fix a potential invalid pointer dereference and infinite loop bugs in 260 * Fix a null pointer dereference when mbedtls_mpi_exp_mod() was called with 596 * Remove the zeroization of a pointer variable in AES rounds. It was valid 776 * Avoid NULL pointer dereferencing if mbedtls_ssl_free() is called with a 777 NULL pointer argument. Contributed by Sander Visser in #3312. 2552 * Fix bug in mbedtls_rsa_rsaes_pkcs1_v15_encrypt that made null pointer 2564 the need to pass -fomit-frame-pointer to avoid a build error with -O0. 2693 * Fix possible client-side NULL pointer dereference (read) when the client 2704 * Made X509 profile pointer const in mbedtls_ssl_conf_cert_profile() to allow 2818 pointer, parameters reordered). [all …]
|
D | README.md | 203 - All-bits-zero must be a valid representation of a null pointer.
|
/openthread-3.5.0/third_party/mbedtls/repo/docs/architecture/testing/ |
D | driver-interface-test-strategy.md | 43 …t with a driver that does not have the requisite method (i.e. the method pointer is `NULL`) but ha… 44 …ver that does not have the substructure containing that method (i.e. the pointer to the substructu…
|
D | invasive-testing.md | 69 …h cases, the function should generally not modify its parameters, so any pointer argument should b… 71 With `MBEDTLS_TEST_HOOKS` set, `mbedtls_foo` is a global variable of function pointer type. This gl…
|
/openthread-3.5.0/ |
D | STYLE_GUIDE.md | 89 …over and above a pointer, the reference, indicated by the & symbol. Where appropriate, the referen…
|
/openthread-3.5.0/third_party/mbedtls/repo/docs/proposed/ |
D | psa-driver-interface.md | 207 Buffers of size 0 may be represented with either a null pointer or a non-null pointer. 609 …of bytes that the driver needs in a key context for a key. This may be a pointer to function. This… 789 …pointer to the first byte of the persistent state. This pointer remains valid during a call to a d…
|