Searched refs:responseStr (Results 1 – 2 of 2) sorted by relevance
/device/generic/goldfish/ril/ |
D | reference-ril.c | 1254 char * responseStr; local 1264 err = at_tok_nextstr(&line, &responseStr); 1265 if (err < 0 || !responseStr) goto error; 1266 RIL_onRequestComplete(t, RIL_E_SUCCESS, responseStr, strlen(responseStr)); 1278 char * responseStr; local 1288 responseStr = strdup("1.0.0.0"); 1289 RIL_onRequestComplete(t, RIL_E_SUCCESS, responseStr, sizeof(responseStr)); 1290 free(responseStr); 1298 char * responseStr[4]; local 1308 responseStr[0] = "----"; [all …]
|
/device/google/cuttlefish_common/guest/hals/ril/ |
D | cuttlefish_ril.cpp | 1146 char** responseStr = NULL; in request_registration_state() local 1152 responseStr = (char**)malloc(numElements * sizeof(char*)); in request_registration_state() 1154 asprintf(&responseStr[0], "%d", kRegisteredInHomeNetwork); in request_registration_state() 1155 responseStr[1] = NULL; // LAC - needed for GSM / WCDMA only. in request_registration_state() 1156 responseStr[2] = NULL; // CID - needed for GSM / WCDMA only. in request_registration_state() 1161 asprintf(&responseStr[3], "%d", getBestVoiceTechnology(gModemCurrentType)); in request_registration_state() 1162 responseStr[4] = strdup("1"); // BSID in request_registration_state() 1163 responseStr[5] = strdup("123"); // Latitude in request_registration_state() 1164 responseStr[6] = strdup("222"); // Longitude in request_registration_state() 1165 responseStr[7] = strdup("0"); // CSS Indicator in request_registration_state() [all …]
|