mirror of
https://github.com/joel16/android_device_sony_kitakami-common.git
synced 2024-11-23 11:49:47 +00:00
kitakami-common: libril: Fix network operator search
* For search, the number of strings returned for RIL_REQUEST_QUERY_AVAILABLE_NETWORKS should be defined in the system prop ro.ril.telephony.mqanelements Change-Id: Ie5bb8ba80c5ac93b7502da3b1bb3d2b4404ecd5e
This commit is contained in:
parent
b39d2d0a7d
commit
0fb57652bd
@ -31,6 +31,7 @@
|
||||
#include <hidl/HidlTransportSupport.h>
|
||||
#include <utils/SystemClock.h>
|
||||
#include <inttypes.h>
|
||||
#include <cutils/properties.h>
|
||||
|
||||
#define INVALID_HEX_CHAR 16
|
||||
|
||||
@ -4621,20 +4622,21 @@ int radio::getAvailableNetworksResponse(int slotId,
|
||||
#if VDBG
|
||||
RLOGD("getAvailableNetworksResponse: serial %d", serial);
|
||||
#endif
|
||||
int mqanelements = property_get_int32("ro.ril.telephony.mqanelements", 4);
|
||||
|
||||
if (radioService[slotId]->mRadioResponse != NULL) {
|
||||
RadioResponseInfo responseInfo = {};
|
||||
populateResponseInfo(responseInfo, serial, responseType, e);
|
||||
hidl_vec<OperatorInfo> networks;
|
||||
if ((response == NULL && responseLen != 0)
|
||||
|| responseLen % (4 * sizeof(char *))!= 0) {
|
||||
|| responseLen % (mqanelements * sizeof(char *))!= 0) {
|
||||
RLOGE("getAvailableNetworksResponse Invalid response: NULL");
|
||||
if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
|
||||
} else {
|
||||
char **resp = (char **) response;
|
||||
int numStrings = responseLen / sizeof(char *);
|
||||
networks.resize(numStrings/4);
|
||||
for (int i = 0, j = 0; i < numStrings; i = i + 4, j++) {
|
||||
networks.resize(numStrings/mqanelements);
|
||||
for (int i = 0, j = 0; i < numStrings; i = i + mqanelements, j++) {
|
||||
networks[j].alphaLong = convertCharPtrToHidlString(resp[i]);
|
||||
networks[j].alphaShort = convertCharPtrToHidlString(resp[i + 1]);
|
||||
#ifndef OLD_MNC_FORMAT
|
||||
|
Loading…
Reference in New Issue
Block a user