Lines Matching refs:name

79 void meta_test_fail(const char *name)
81 (void) name;
85 void meta_test_not_equal(const char *name)
90 (void) name;
97 void meta_test_not_le_s(const char *name)
102 (void) name;
109 void meta_test_not_le_u(const char *name)
114 (void) name;
125 void null_pointer_dereference(const char *name)
127 (void) name;
134 void null_pointer_call(const char *name)
136 (void) name;
151 void read_after_free(const char *name)
153 (void) name;
161 void double_free(const char *name)
163 (void) name;
171 void read_uninitialized_stack(const char *name)
173 (void) name;
185 void memory_leak(const char *name)
187 (void) name;
193 /* name = "test_memory_poison_%(start)_%(offset)_%(count)_%(direction)"
199 void test_memory_poison(const char *name)
203 if (sscanf(name,
209 mbedtls_fprintf(stderr, "%s: Bad name format: %s\n", __func__, name);
257 void mutex_lock_not_initialized(const char *name)
259 (void) name;
273 void mutex_unlock_not_initialized(const char *name)
275 (void) name;
289 void mutex_free_not_initialized(const char *name)
291 (void) name;
303 void mutex_double_init(const char *name)
305 (void) name;
318 void mutex_double_free(const char *name)
320 (void) name;
333 void mutex_leak(const char *name)
335 (void) name;
355 const char *name;
370 * The function receives the name as an argument. This allows using the
371 * same function to perform multiple variants of a test based on the name.
381 void (*entry_point)(const char *name);
454 for (const metatest_t *p = metatests; p->name != NULL; p++) {
455 mbedtls_printf("%s %s\n", p->name, p->platform);
464 for (const metatest_t *p = metatests; p->name != NULL; p++) {
465 if (strcmp(argv[1], p->name) == 0) {