HomeSort by relevance Sort by last modified time
    Searched refs:jso (Results 1 - 2 of 2) sorted by null

  /hardware/qcom/msm8998/json-c/
json_object.c 52 static void json_object_generic_delete(struct json_object* jso);
152 extern struct json_object* json_object_get(struct json_object *jso)
154 if (jso)
155 jso->_ref_count++;
156 return jso;
159 int json_object_put(struct json_object *jso)
161 if(jso)
163 jso->_ref_count--;
164 if(!jso->_ref_count)
166 if (jso->_user_delete
191 struct json_object *jso; local
370 struct json_object *jso = json_object_new(json_type_object); local
470 struct json_object *jso = json_object_new(json_type_boolean); local
510 struct json_object *jso = json_object_new(json_type_int); local
559 struct json_object *jso = json_object_new(json_type_int); local
635 struct json_object *jso = json_object_new(json_type_double); local
645 struct json_object *jso = json_object_new_double(d); local
745 struct json_object *jso = json_object_new(json_type_string); local
763 struct json_object *jso = json_object_new(json_type_string); local
865 struct json_object *jso = json_object_new(json_type_array); local
    [all...]
json_object.h 88 typedef void (json_object_delete_fn)(struct json_object *jso, void *userdata);
93 typedef int (json_object_to_json_string_fn)(struct json_object *jso,
203 * @param jso the object to customize
208 extern void json_object_set_serializer(json_object *jso,
217 * @param jso unused
223 * Copy the jso->_userdata string over to pb as-is.
226 * @param jso The object whose _userdata is used.
400 /** Sorts the elements of jso of type json_type_array
408 extern void json_object_array_sort(struct json_object *jso, int(*sort_fn)(const void *, const void *));
541 * jso = json_object_new_double(d)
    [all...]

Completed in 44 milliseconds