Lines Matching defs:file
6 * this file except in compliance with the License. You can obtain a copy
7 * in the file LICENSE in the source distribution or at
12 * This file is in two halves. The first half implements the public API
141 void *CRYPTO_secure_malloc(size_t num, const char *file, int line)
148 return CRYPTO_malloc(num, file, line);
158 return CRYPTO_malloc(num, file, line);
162 void *CRYPTO_secure_zalloc(size_t num, const char *file, int line)
167 return CRYPTO_secure_malloc(num, file, line);
169 return CRYPTO_zalloc(num, file, line);
172 void CRYPTO_secure_free(void *ptr, const char *file, int line)
180 CRYPTO_free(ptr, file, line);
191 CRYPTO_free(ptr, file, line);
196 const char *file, int line)
205 CRYPTO_free(ptr, file, line);
219 CRYPTO_free(ptr, file, line);