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

Function md_json_getj

modules/md/md_json.c:473–490  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

471/* json itself */
472
473md_json_t *md_json_getj(md_json_t *json, ...)
474{
475 json_t *j;
476 va_list ap;
477
478 va_start(ap, json);
479 j = jselect(json, ap);
480 va_end(ap);
481
482 if (j) {
483 if (j == json->j) {
484 return json;
485 }
486 json_incref(j);
487 return json_create(json->p, j);
488 }
489 return NULL;
490}
491
492md_json_t *md_json_dupj(apr_pool_t *p, const md_json_t *json, ...)
493{

Callers 9

md_pkeys_spec_to_jsonFunction · 0.85
md_http_cert_statusFunction · 0.85
si_val_cert_valid_timeFunction · 0.85
si_val_ca_urlsFunction · 0.85
si_val_namesFunction · 0.85
add_status_cellFunction · 0.85
md_job_from_jsonFunction · 0.85
md_from_jsonFunction · 0.85
inspect_problemFunction · 0.85

Calls 2

jselectFunction · 0.85
json_createFunction · 0.85

Tested by

no test coverage detected