Home
last modified time | relevance | path

Searched refs:json_object (Results 1 – 21 of 21) 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()
Dstat.h224 extern struct json_object * show_thread_status(struct thread_stat *ts, struct group_run_stats *rs);
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.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/
Djson-parser.cc290 Handle<JSObject> json_object) { in ParseElement() argument
313 JSObject::SetOwnElementIgnoreAttributes(json_object, index, value, NONE) in ParseElement()
328 Handle<JSObject> json_object = in ParseJsonObject() local
330 Handle<Map> map(json_object->map()); in ParseJsonObject()
346 ParseElementResult element_result = ParseElement(json_object); in ParseJsonObject()
420 CommitStateToJsonObject(json_object, map, &properties); in ParseJsonObject()
422 JSObject::DefinePropertyOrElementIgnoreAttributes(json_object, key, value) in ParseJsonObject()
428 CommitStateToJsonObject(json_object, map, &properties); in ParseJsonObject()
438 ParseElementResult element_result = ParseElement(json_object); in ParseJsonObject()
459 JSObject::DefinePropertyOrElementIgnoreAttributes(json_object, key, in ParseJsonObject()
[all …]
Djson-parser.h120 ParseElementResult ParseElement(Handle<JSObject> json_object);
146 void CommitStateToJsonObject(Handle<JSObject> json_object, Handle<Map> map,
Dbootstrapper.cc1651 Handle<JSObject> json_object = factory->NewJSObject(cons, TENURED); in InitializeGlobal() local
1652 DCHECK(json_object->IsJSObject()); in InitializeGlobal()
1653 JSObject::AddProperty(global, name, json_object, DONT_ENUM); in InitializeGlobal()
1654 SimpleInstallFunction(json_object, "parse", Builtins::kJsonParse, 2, false); in InitializeGlobal()
1655 SimpleInstallFunction(json_object, "stringify", Builtins::kJsonStringify, 3, in InitializeGlobal()
1658 json_object, factory->to_string_tag_symbol(), in InitializeGlobal()
Dapi.cc2851 Local<Object> json_object, in Stringify() argument
2854 i::Handle<i::Object> object = Utils::OpenHandle(*json_object); in Stringify()
/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/v8/build/android/pylib/results/flakiness_dashboard/
Djson_results_generator.py35 def WriteJSON(json_object, file_path, callback=None): argument
37 json_string = json.dumps(json_object, separators=(',', ':'))
210 json_object = self.GetJSON()
211 if json_object:
216 WriteJSON(json_object, file_path)
Djson_results_generator_unittest.py39 def _WriteJSONStub(json_object, file_path, callback=None): argument
/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/include/
Dv8.h1661 Local<Context> context, Local<Object> json_object,