MCPcopy Create free account
hub / github.com/apache/httpd / jselect

Function jselect

modules/md/md_json.c:125–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123
124
125static json_t *jselect(const md_json_t *json, va_list ap)
126{
127 json_t *j;
128 const char *key;
129
130 j = json->j;
131 key = va_arg(ap, char *);
132 while (key && j) {
133 j = json_object_get(j, key);
134 key = va_arg(ap, char *);
135 }
136 return j;
137}
138
139static json_t *jselect_parent(const char **child_key, int create, md_json_t *json, va_list ap)
140{

Callers 15

md_json_has_keyFunction · 0.85
md_json_isFunction · 0.85
md_json_getbFunction · 0.85
md_json_getnFunction · 0.85
md_json_getlFunction · 0.85
md_json_getsFunction · 0.85
md_json_dupsFunction · 0.85
md_json_get_timeFunction · 0.85
md_json_getjFunction · 0.85
md_json_dupjFunction · 0.85
md_json_getcjFunction · 0.85
md_json_limitaFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected