Home
last modified time | relevance | path

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

/netbsd/src/libexec/httpd/
Dbozohttpd.c193 size_arrays(bozohttpd_t *httpd, bozoprefs_t *bozoprefs, size_t needed) in size_arrays() argument
197 if (bozoprefs->size == 0) { in size_arrays()
199 bozoprefs->name = bozomalloc(httpd, len); in size_arrays()
200 bozoprefs->value = bozomalloc(httpd, len); in size_arrays()
201 } else if (bozoprefs->count == bozoprefs->size) { in size_arrays()
203 bozoprefs->name = bozorealloc(httpd, bozoprefs->name, len); in size_arrays()
204 bozoprefs->value = bozorealloc(httpd, bozoprefs->value, len); in size_arrays()
207 bozoprefs->size = needed; in size_arrays()
212 findvar(bozoprefs_t *bozoprefs, const char *name) in findvar() argument
216 for (i = 0; i < bozoprefs->count; i++) in findvar()
[all …]