Searched refs:str_end (Results 1 – 2 of 2) sorted by relevance
/AliOS-Things-master/components/linkkit/include/linkkit/infra/ |
A D | infra_json_parser.h | 108 char *json_get_object(int type, char *str, char *str_end); 109 char *json_get_next_object(int type, char *str, char *str_end, char **key,
|
/AliOS-Things-master/components/linkkit/infra/ |
A D | infra_json_parser.c | 41 char *json_get_object(int type, char *str, char *str_end) in json_get_object() argument 46 if (!str || !str_end) { in json_get_object() 50 while (str != NULL && *str != 0 && str < str_end) { in json_get_object() 61 char *json_get_next_object(int type, char *str, char *str_end, char **key, in json_get_next_object() argument 88 while (p_cPos && *p_cPos && p_cPos < str_end) { in json_get_next_object() 114 while (p_cPos && *p_cPos && p_cPos < str_end && iValueType > JNONE) { in json_get_next_object() 168 if ((p_cName + iNameLen) > str_end) { in json_get_next_object() 174 if ((p_cValue + iValueLen) > str_end) { in json_get_next_object()
|
Completed in 5 milliseconds