Searched refs:cJSON_GetObjectItem (Results 1 – 3 of 3) sorted by relevance
/external/iperf3/src/ |
D | iperf_api.c | 1712 if ((j_p = cJSON_GetObjectItem(j, "tcp")) != NULL) in get_parameters() 1714 if ((j_p = cJSON_GetObjectItem(j, "udp")) != NULL) in get_parameters() 1716 if ((j_p = cJSON_GetObjectItem(j, "sctp")) != NULL) in get_parameters() 1718 if ((j_p = cJSON_GetObjectItem(j, "omit")) != NULL) in get_parameters() 1720 if ((j_p = cJSON_GetObjectItem(j, "server_affinity")) != NULL) in get_parameters() 1722 if ((j_p = cJSON_GetObjectItem(j, "time")) != NULL) in get_parameters() 1724 if ((j_p = cJSON_GetObjectItem(j, "num")) != NULL) in get_parameters() 1726 if ((j_p = cJSON_GetObjectItem(j, "blockcount")) != NULL) in get_parameters() 1728 if ((j_p = cJSON_GetObjectItem(j, "MSS")) != NULL) in get_parameters() 1730 if ((j_p = cJSON_GetObjectItem(j, "nodelay")) != NULL) in get_parameters() [all …]
|
D | cjson.h | 163 CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string);
|
D | cjson.c | 1736 CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string) in cJSON_GetObjectItem() function 1748 return cJSON_GetObjectItem(object, string) ? 1 : 0; in cJSON_HasObjectItem() 1892 cJSON *to_detach = cJSON_GetObjectItem(object, string); in cJSON_DetachItemFromObject() 1991 cJSON_ReplaceItemViaPointer(object, cJSON_GetObjectItem(object, string), newitem); in cJSON_ReplaceItemInObject()
|