Home
last modified time | relevance | path

Searched refs:ber_int_memory_fns (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/bsd/openldap/dist/libraries/liblber/
H A Dmemory.c128 BerMemoryFunctions *ber_int_memory_fns = NULL; variable
139 if( ber_int_memory_fns == NULL || ctx == NULL ) { in ber_memfree_x()
162 assert( ber_int_memory_fns->bmf_free != 0 ); in ber_memfree_x()
164 (*ber_int_memory_fns->bmf_free)( p, ctx ); in ber_memfree_x()
207 if( ber_int_memory_fns == NULL || ctx == NULL ) { in ber_memalloc_x()
236 new = (*ber_int_memory_fns->bmf_malloc)( s, ctx ); in ber_memalloc_x()
262 if( ber_int_memory_fns == NULL || ctx == NULL ) { in ber_memcalloc_x()
292 new = (*ber_int_memory_fns->bmf_calloc)( n, s, ctx ); in ber_memcalloc_x()
326 if( ber_int_memory_fns == NULL || ctx == NULL ) { in ber_memrealloc_x()
365 new = (*ber_int_memory_fns->bmf_realloc)( p, s, ctx ); in ber_memrealloc_x()
H A Doptions.c171 if ( ber_int_memory_fns == NULL ) in ber_set_option()
183 ber_int_memory_fns = &ber_int_memory_fns_datum; in ber_set_option()
185 AC_MEMCPY(ber_int_memory_fns, f, in ber_set_option()
H A Dlber-int.h196 LBER_V (BerMemoryFunctions *) ber_int_memory_fns;