Home
last modified time | relevance | path

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

/NextBSD/contrib/jansson/test/suites/api/
HDtest_object.c24 if(json_object_set(object, "a", ten) || in test_clear()
25 json_object_set(object, "b", ten) || in test_clear()
26 json_object_set(object, "c", ten) || in test_clear()
27 json_object_set(object, "d", ten) || in test_clear()
28 json_object_set(object, "e", ten)) in test_clear()
73 if(json_object_set(other, "a", ten) || in test_update()
74 json_object_set(other, "b", ten) || in test_update()
75 json_object_set(other, "c", ten) || in test_update()
76 json_object_set(other, "d", ten) || in test_update()
77 json_object_set(other, "e", ten)) in test_update()
[all …]
HDtest_dump.c87 json_object_set(json_object_get(json_object_get(json, "a"), "b"), "c", in circular_references()
/NextBSD/bin/launchctl/
HDlaunchctl.c706 json_object_set(msg, "StartJob", json_string(argv[1])); in cmd_start_stop()
709 json_object_set(msg, "StopJob", json_string(argv[1])); in cmd_start_stop()
725 json_object_set(msg, "RemoveJob", json_string(argv[1])); in cmd_remove()
762 json_object_set(msg, "GetJob", json_string(argv[1])); in cmd_dump()
/NextBSD/contrib/jansson/src/
HDjansson.h161 int json_object_set(json_t *object, const char *key, json_t *value) in json_object_set() function
/NextBSD/contrib/jansson/doc/
HDapiref.rst239 json_object_set(obj, "foo", obj);
241 Jansson will refuse to do this, and :func:`json_object_set()` (and
599 .. function:: int json_object_set(json_t *object, const char *key, json_t *value)
608 Like :func:`json_object_set`, but doesn't check that *key* is
615 Like :func:`json_object_set()` but steals the reference to
/NextBSD/contrib/jansson/
HDCHANGES370 `json_object_set()` and friends.