Home
last modified time | relevance | path

Searched refs:cJSON_GetObjectItem (Results 1 – 3 of 3) sorted by relevance

/external/iperf3/src/
Diperf_api.c1947 if ((j_p = cJSON_GetObjectItem(j, "tcp")) != NULL) in get_parameters()
1949 if ((j_p = cJSON_GetObjectItem(j, "udp")) != NULL) in get_parameters()
1951 if ((j_p = cJSON_GetObjectItem(j, "sctp")) != NULL) in get_parameters()
1953 if ((j_p = cJSON_GetObjectItem(j, "omit")) != NULL) in get_parameters()
1955 if ((j_p = cJSON_GetObjectItem(j, "server_affinity")) != NULL) in get_parameters()
1957 if ((j_p = cJSON_GetObjectItem(j, "time")) != NULL) in get_parameters()
1959 if ((j_p = cJSON_GetObjectItem(j, "num")) != NULL) in get_parameters()
1961 if ((j_p = cJSON_GetObjectItem(j, "blockcount")) != NULL) in get_parameters()
1963 if ((j_p = cJSON_GetObjectItem(j, "MSS")) != NULL) in get_parameters()
1965 if ((j_p = cJSON_GetObjectItem(j, "nodelay")) != NULL) in get_parameters()
[all …]
Dcjson.h177 CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string);
Dcjson.c1909 CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string) in cJSON_GetObjectItem() function
1921 return cJSON_GetObjectItem(object, string) ? 1 : 0; in cJSON_HasObjectItem()
2240 cJSON *to_detach = cJSON_GetObjectItem(object, string); in cJSON_DetachItemFromObject()