Searched refs:valuestring (Results 1 – 4 of 4) sorted by relevance
/external/iperf3/src/ |
D | cjson.c | 113 return item->valuestring; in cJSON_GetStringValue() 270 if (!(item->type & cJSON_IsReference) && (item->valuestring != NULL)) in cJSON_Delete() 272 global_hooks.deallocate(item->valuestring); in cJSON_Delete() 407 CJSON_PUBLIC(char*) cJSON_SetValuestring(cJSON *object, const char *valuestring) in cJSON_SetValuestring() argument 415 if (strlen(valuestring) <= strlen(object->valuestring)) in cJSON_SetValuestring() 417 strcpy(object->valuestring, valuestring); in cJSON_SetValuestring() 418 return object->valuestring; in cJSON_SetValuestring() 420 copy = (char*) cJSON_strdup((const unsigned char*)valuestring, &global_hooks); in cJSON_SetValuestring() 425 if (object->valuestring != NULL) in cJSON_SetValuestring() 427 cJSON_free(object->valuestring); in cJSON_SetValuestring() [all …]
|
D | cjson.h | 120 char *valuestring; member 285 CJSON_PUBLIC(char*) cJSON_SetValuestring(cJSON *object, const char *valuestring);
|
D | iperf_api.c | 1990 test->title = strdup(j_p->valuestring); in get_parameters() 1992 test->extra_data = strdup(j_p->valuestring); in get_parameters() 1994 test->congestion = strdup(j_p->valuestring); in get_parameters() 1996 test->congestion_used = strdup(j_p->valuestring); in get_parameters() 2005 test->settings->authtoken = strdup(j_p->valuestring); in get_parameters() 2268 test->server_output_text = strdup(j_server_output->valuestring); in get_results() 2277 test->remote_congestion_used = strdup(j_remote_congestion_used->valuestring); in get_results()
|
/external/protobuf/src/google/protobuf/ |
D | text_format_unittest.cc | 1443 #define EXPECT_FIELD(name, value, valuestring) \ in TEST_F() argument 1445 valuestring, d->FindFieldByName("optional_" #name), message.get())); \ in TEST_F() 1449 #define EXPECT_BOOL_FIELD(name, value, valuestring) \ in TEST_F() argument 1451 valuestring, d->FindFieldByName("optional_" #name), message.get())); \ in TEST_F() 1455 #define EXPECT_FLOAT_FIELD(name, value, valuestring) \ in TEST_F() argument 1457 valuestring, d->FindFieldByName("optional_" #name), message.get())); \ in TEST_F() 1461 #define EXPECT_DOUBLE_FIELD(name, value, valuestring) \ in TEST_F() argument 1463 valuestring, d->FindFieldByName("optional_" #name), message.get())); \ in TEST_F() 1467 #define EXPECT_INVALID(name, valuestring) \ in TEST_F() argument 1469 valuestring, d->FindFieldByName("optional_" #name), message.get())); in TEST_F()
|