Symbol: heap_context
usr/src/lib/libresolv2/common/isc/ev_timers.c
409
heap_context
usr/src/lib/libresolv2/common/isc/eventlib_p.h
253
heap_context timers;
usr/src/lib/libresolv2/common/isc/eventlib_p.h
270
heap_context evCreateTimers(const evContext_p *);
usr/src/lib/libresolv2/common/isc/heap.c
102
float_up(heap_context ctx, int i, void *elt) {
usr/src/lib/libresolv2/common/isc/heap.c
118
sink_down(heap_context ctx, int i, void *elt) {
usr/src/lib/libresolv2/common/isc/heap.c
142
heap_insert(heap_context ctx, void *elt) {
usr/src/lib/libresolv2/common/isc/heap.c
160
heap_delete(heap_context ctx, int i) {
usr/src/lib/libresolv2/common/isc/heap.c
185
heap_increased(heap_context ctx, int i) {
usr/src/lib/libresolv2/common/isc/heap.c
197
heap_decreased(heap_context ctx, int i) {
usr/src/lib/libresolv2/common/isc/heap.c
209
heap_element(heap_context ctx, int i) {
usr/src/lib/libresolv2/common/isc/heap.c
219
heap_for_each(heap_context ctx, heap_for_each_func action, void *uap) {
usr/src/lib/libresolv2/common/isc/heap.c
48
heap_context
usr/src/lib/libresolv2/common/isc/heap.c
51
heap_context ctx;
usr/src/lib/libresolv2/common/isc/heap.c
56
ctx = (heap_context)malloc(sizeof (struct heap_context));
usr/src/lib/libresolv2/common/isc/heap.c
73
heap_free(heap_context ctx) {
usr/src/lib/libresolv2/common/isc/heap.c
87
heap_resize(heap_context ctx) {
usr/src/lib/libresolv2/include/isc/heap.h
40
heap_context heap_new(heap_higher_priority_func, heap_index_func, int);
usr/src/lib/libresolv2/include/isc/heap.h
41
int heap_free(heap_context);
usr/src/lib/libresolv2/include/isc/heap.h
42
int heap_insert(heap_context, void *);
usr/src/lib/libresolv2/include/isc/heap.h
43
int heap_delete(heap_context, int);
usr/src/lib/libresolv2/include/isc/heap.h
44
int heap_increased(heap_context, int);
usr/src/lib/libresolv2/include/isc/heap.h
45
int heap_decreased(heap_context, int);
usr/src/lib/libresolv2/include/isc/heap.h
46
void * heap_element(heap_context, int);
usr/src/lib/libresolv2/include/isc/heap.h
47
int heap_for_each(heap_context, heap_for_each_func, void *);