Lines Matching defs:free
99 * "IDLE" -> "FREED" [label="free"];
111 * The framework attempts to detect missing calls to init and free by counting
112 * calls to init and free. If there are more calls to init than free, this
115 * mbedtls_threading_mutex_t object itself. If there are more calls to free
119 * calls to init and free but the calls don't match. A bug like this is
140 void (*free)(mbedtls_threading_mutex_t *);
192 * 2. Given the 'global' position of the initialization and free of this
222 mbedtls_test_mutex_usage_error(mutex, "free without init or double free");
229 mbedtls_test_mutex_usage_error(mutex, "free without unlock");
240 mutex_functions.free(mutex);
307 mutex_functions.free = mbedtls_mutex_free;
322 /* A positive number (more init than free) means that a mutex resource
328 mbedtls_test_set_mutex_usage_error("missing free");
345 mbedtls_mutex_free = mutex_functions.free;
349 mutex_functions.free(&mbedtls_test_mutex_mutex);