Home
last modified time | relevance | path

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

/external/fio/
Djson.h3 struct json_object;
20 struct json_object *object;
36 struct json_object { struct
45 struct json_object *parent; argument
48 struct json_object *json_create_object(void);
51 void json_free_object(struct json_object *obj);
53 int json_object_add_value_type(struct json_object *obj, const char *name, int type, ...);
79 void json_print_object(struct json_object *obj);
Djson.c9 struct json_object *json_create_object(void) in json_create_object()
11 return calloc(1, sizeof(struct json_object)); in json_create_object()
98 static struct json_value *json_create_value_object(struct json_object *obj) in json_create_value_object()
125 void json_free_object(struct json_object *obj) in json_free_object()
184 static int json_object_add_pair(struct json_object *obj, struct json_pair *pair) in json_object_add_pair()
198 int json_object_add_value_type(struct json_object *obj, const char *name, int type, ...) in json_object_add_value_type()
213 value = json_create_value_object(va_arg(args, struct json_object *)); in json_object_add_value_type()
249 value = json_create_value_object(va_arg(args, struct json_object *)); in json_array_add_value_type()
268 static int json_object_level(struct json_object *object) in json_object_level()
302 void json_print_object(struct json_object *obj) in json_print_object()
Didletime.h57 extern void show_idle_prof_stats(int, struct json_object *);
Ddiskutil.h109 extern void show_disk_util(int terse, struct json_object *parent);
Didletime.c449 void show_idle_prof_stats(int output, struct json_object *parent) in show_idle_prof_stats()
452 struct json_object *tmp; in show_idle_prof_stats()
Ddiskutil.c631 struct json_object *obj; in json_array_add_disk_util()
675 static void json_object_add_disk_utils(struct json_object *obj, in json_object_add_disk_utils()
692 void show_disk_util(int terse, struct json_object *parent) in show_disk_util()
Dstat.h224 extern struct json_object * show_thread_status(struct thread_stat *ts, struct group_run_stats *rs);
Dstat.c674 struct group_run_stats *rs, int ddir, struct json_object *parent) in add_ddir_status_json()
683 struct json_object *dir_object, *tmp_object, *percentile_object; in add_ddir_status_json()
913 static struct json_object *show_thread_status_json(struct thread_stat *ts, in show_thread_status_json()
916 struct json_object *root, *tmp; in show_thread_status_json()
1015 struct json_object *show_thread_status(struct thread_stat *ts, in show_thread_status()
1195 struct json_object *root = NULL; in __show_run_stats()
1383 struct json_object *tmp = show_thread_status_json(ts, rs); in __show_run_stats()
Dclient.c61 static struct json_object *root = NULL;
915 static void json_object_add_client_info(struct json_object *obj, in json_object_add_client_info()
927 struct json_object *tsobj; in handle_ts()
1023 struct json_object *duobj; in handle_du()
/external/v8/src/parsing/
Djson-parser.h165 ParseElementResult ParseElement(Handle<JSObject> json_object);
192 void CommitStateToJsonObject(Handle<JSObject> json_object, Handle<Map> map,
309 Handle<JSObject> json_object) { in ParseElement() argument
332 JSObject::SetOwnElementIgnoreAttributes(json_object, index, value, NONE) in ParseElement()
347 Handle<JSObject> json_object = in ParseJsonObject() local
349 Handle<Map> map(json_object->map()); in ParseJsonObject()
365 ParseElementResult element_result = ParseElement(json_object); in ParseJsonObject()
439 CommitStateToJsonObject(json_object, map, &properties); in ParseJsonObject()
441 JSObject::DefinePropertyOrElementIgnoreAttributes(json_object, key, value) in ParseJsonObject()
447 CommitStateToJsonObject(json_object, map, &properties); in ParseJsonObject()
[all …]
/external/autotest/frontend/shared/
Djson_html_formatter.py103 def _object_to_html(self, json_object): argument
104 if not json_object:
108 for key, value in json_object.iteritems():
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
Ddynamodb_load40 json_object = json.loads(buffer.strip())
52 yield json_object
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/testcase/
Dintegration_testcase.py294 json_object = self.CreateObjectJson(contents=contents,
302 json_object.generation,
304 md5=(Base64ToHexHash(json_object.md5Hash),
305 json_object.md5Hash.strip('\n"\'')))
/external/webrtc/webrtc/examples/peerconnection/client/
Dconductor.cc261 std::string json_object; in OnMessageFromPeer() local
537 void Conductor::SendMessage(const std::string& json_object) { in SendMessage() argument
538 std::string* msg = new std::string(json_object); in SendMessage()
Dconductor.h114 void SendMessage(const std::string& json_object);
/external/v8/src/
Dbootstrapper.cc1495 Handle<JSObject> json_object = factory->NewJSObject(cons, TENURED); in InitializeGlobal() local
1496 DCHECK(json_object->IsJSObject()); in InitializeGlobal()
1497 JSObject::AddProperty(global, name, json_object, DONT_ENUM); in InitializeGlobal()
1507 Handle<JSObject> json_object = factory->NewJSObject(cons, TENURED); in InitializeGlobal() local
1508 DCHECK(json_object->IsJSObject()); in InitializeGlobal()
1509 JSObject::AddProperty(global, name, json_object, DONT_ENUM); in InitializeGlobal()