Home
last modified time | relevance | path

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

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dstat_cache.c101 static fake_keys ctrl; variable
116 ctrl.size = 0; in stat_cache_init()
434 if (i != ctrl.used) { in stat_cache_get_entry()
514 ctrl.size = 16; in stat_cache_get_entry()
515 ctrl.used = 0; in stat_cache_get_entry()
516 ctrl.ptr = malloc(ctrl.size * sizeof(*ctrl.ptr)); in stat_cache_get_entry()
517 } else if (ctrl.size == ctrl.used) { in stat_cache_get_entry()
518 ctrl.size += 16; in stat_cache_get_entry()
519 ctrl.ptr = realloc(ctrl.ptr, ctrl.size * sizeof(*ctrl.ptr)); in stat_cache_get_entry()
522 ctrl.ptr[ctrl.used++] = file_ndx; in stat_cache_get_entry()
[all …]