Searched refs:o_type (Results 1 - 4 of 4) sorted by relevance

/hardware/qcom/msm8998/json-c/
H A Djson_object_private.h23 enum json_type o_type; member in struct:json_object
H A Djson_object.c53 static struct json_object* json_object_new(enum json_type o_type);
88 MC_DEBUG("\t%s:%p\n", json_type_to_name(obj->o_type), obj);
182 json_type_to_name(jso->o_type), jso);
189 static struct json_object* json_object_new(enum json_type o_type) argument
196 jso->o_type = o_type;
201 MC_DEBUG("json_object_new_%s: %p\n", json_type_to_name(jso->o_type), jso);
213 return (jso->o_type == type);
220 return jso->o_type;
241 switch(jso->o_type)
521 enum json_type o_type; local
[all...]
H A Djson_util.h44 extern const char *json_type_to_name(enum json_type o_type);
H A Djson_util.c289 const char *json_type_to_name(enum json_type o_type) argument
291 int o_type_int = (int)o_type;
294 MC_ERROR("json_type_to_name: type %d is out of range [0,%d]\n", o_type, NELEM(json_type_name));
297 return json_type_name[o_type];

Completed in 96 milliseconds