Home
last modified time | relevance | path

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

/device/generic/goldfish/radio/ril/
Dreference-ril.c1296 char * responseStr; local
1306 err = at_tok_nextstr(&line, &responseStr);
1307 if (err < 0 || !responseStr) goto error;
1308 RIL_onRequestComplete(t, RIL_E_SUCCESS, responseStr, strlen(responseStr));
1320 char * responseStr; local
1330 responseStr = strdup("1.0.0.0");
1331 RIL_onRequestComplete(t, RIL_E_SUCCESS, responseStr, sizeof(responseStr));
1332 free(responseStr);
1340 char * responseStr[4]; local
1350 responseStr[0] = "----";
[all …]
/device/google/cuttlefish/guest/hals/ril/
Dcuttlefish_ril.cpp1072 char** responseStr = NULL; in request_registration_state() local
1078 responseStr = (char**)malloc(numElements * sizeof(char*)); in request_registration_state()
1080 asprintf(&responseStr[0], "%d", kRegisteredInHomeNetwork); in request_registration_state()
1081 responseStr[1] = NULL; // LAC - needed for GSM / WCDMA only. in request_registration_state()
1082 responseStr[2] = NULL; // CID - needed for GSM / WCDMA only. in request_registration_state()
1087 asprintf(&responseStr[3], "%d", getBestVoiceTechnology(gModemCurrentType)); in request_registration_state()
1088 responseStr[4] = strdup("1"); // BSID in request_registration_state()
1089 responseStr[5] = strdup("123"); // Latitude in request_registration_state()
1090 responseStr[6] = strdup("222"); // Longitude in request_registration_state()
1091 responseStr[7] = strdup("0"); // CSS Indicator in request_registration_state()
[all …]
/device/google/cuttlefish/guest/hals/ril/reference-ril/
Dreference-ril.c1370 char * responseStr; local
1380 err = at_tok_nextstr(&line, &responseStr);
1381 if (err < 0 || !responseStr) goto error;
1382 RIL_onRequestComplete(t, RIL_E_SUCCESS, responseStr, strlen(responseStr));
1394 char * responseStr; local
1404 responseStr = strdup("1.0.0.0");
1405 RIL_onRequestComplete(t, RIL_E_SUCCESS, responseStr, sizeof(responseStr));
1406 free(responseStr);
1414 char * responseStr[4]; local
1424 responseStr[0] = "----";
[all …]