Searched refs:json_object_get (Results 1 – 15 of 15) sorted by relevance
| /NextBSD/contrib/jansson/test/suites/api/ |
| HD | test_object.c | 86 if(json_object_get(object, "a") != ten || in test_update() 87 json_object_get(object, "b") != ten || in test_update() 88 json_object_get(object, "c") != ten || in test_update() 89 json_object_get(object, "d") != ten || in test_update() 90 json_object_get(object, "e") != ten) in test_update() 102 if(json_object_get(object, "a") != ten || in test_update() 103 json_object_get(object, "b") != ten || in test_update() 104 json_object_get(object, "c") != ten || in test_update() 105 json_object_get(object, "d") != ten || in test_update() 106 json_object_get(object, "e") != ten) in test_update() [all …]
|
| HD | test_dump.c | 86 json_object_set_new(json_object_get(json, "a"), "b", json_object()); in circular_references() 87 json_object_set(json_object_get(json_object_get(json, "a"), "b"), "c", in circular_references() 88 json_object_get(json, "a")); in circular_references() 93 json_object_del(json_object_get(json_object_get(json, "a"), "b"), "c"); in circular_references()
|
| HD | test_pack.c | 179 if(!json_is_array(json_object_get(value, "foo"))) in run_tests() 181 if(json_object_get(value, "foo")->refcount != (size_t)1) in run_tests() 189 if(!json_is_array(json_object_get(value, "foobarbaz"))) in run_tests() 191 if(json_object_get(value, "foobarbaz")->refcount != (size_t)1) in run_tests()
|
| HD | test_copy.c | 258 value2 = json_object_get(copy, key); in test_copy_object() 298 value2 = json_object_get(copy, key); in test_deep_copy_object()
|
| /NextBSD/bin/launchctl/ |
| HD | launchctl.c | 145 if ((val = json_object_get(json, LAUNCH_JOBSOCKETKEY_TYPE))) { in create_socket() 154 if ((val = json_object_get(json, LAUNCH_JOBSOCKETKEY_PASSIVE))) in create_socket() 157 if ((val = json_object_get(json, LAUNCH_JOBSOCKETKEY_PATHNAME))) { in create_socket() 172 if ((val = json_object_get(json, LAUNCH_JOBSOCKETKEY_PATHMODE))) { in create_socket() 220 if ((val = json_object_get(json, LAUNCH_JOBSOCKETKEY_NODENAME))) in create_socket() 223 if ((val = json_object_get(json, LAUNCH_JOBSOCKETKEY_MULTICASTGROUP))) in create_socket() 226 if ((val = json_object_get(json, LAUNCH_JOBSOCKETKEY_SERVICENAME))) { in create_socket() 234 if ((val = json_object_get(json, LAUNCH_JOBSOCKETKEY_FAMILY))) { in create_socket() 241 if ((val = json_object_get(json, LAUNCH_JOBSOCKETKEY_PROTOCOL))) { in create_socket()
|
| /NextBSD/contrib/jansson/doc/ |
| HD | github_commits.c | 169 sha = json_object_get(data, "sha"); in main() 176 commit = json_object_get(data, "commit"); in main() 184 message = json_object_get(commit, "message"); in main()
|
| HD | tutorial.rst | 210 sha = json_object_get(data, "sha"); 218 commit = json_object_get(data, "commit"); 226 message = json_object_get(commit, "message");
|
| HD | apiref.rst | 592 .. function:: json_t *json_object_get(const json_t *object, const char *key)
|
| /NextBSD/contrib/jansson/src/ |
| HD | jansson.def | 34 json_object_get
|
| HD | value.c | 93 json_t *json_object_get(const json_t *json, const char *key) in json_object_get() function 189 if(json_object_get(object, key)) in json_object_update_existing() 205 if(!json_object_get(object, key)) in json_object_update_missing() 287 value2 = json_object_get(object2, key); in json_object_equal()
|
| HD | dump.c | 341 value = json_object_get(json, key); in do_dump()
|
| HD | jansson.h | 134 json_t *json_object_get(const json_t *object, const char *key);
|
| HD | pack_unpack.c | 419 value = json_object_get(root, key); in unpack_object()
|
| HD | load.c | 709 if(json_object_get(object, key)) { in parse_object()
|
| /NextBSD/contrib/jansson/ |
| HD | CHANGES | 39 - Check for *NULL* key in `json_object_get()` and
|