Loading telephony/java/android/telephony/MSimTelephonyManager.java +2 −2 Original line number Diff line number Diff line Loading @@ -937,9 +937,9 @@ public class MSimTelephonyManager { * * @hide pending API review */ public List<CellInfo> getAllCellInfo() { public List<CellInfo> getAllCellInfo(int subscription) { try { return getITelephonyMSim().getAllCellInfo(); return getITelephonyMSim().getAllCellInfo(subscription); } catch (RemoteException ex) { return null; } catch (NullPointerException ex) { Loading telephony/java/com/android/internal/telephony/msim/ITelephonyMSim.aidl +2 −1 Original line number Diff line number Diff line Loading @@ -343,8 +343,9 @@ interface ITelephonyMSim { /** * Returns the all observed cell information of the device. * @param subscription user preferred subscription. */ List<CellInfo> getAllCellInfo(); List<CellInfo> getAllCellInfo(int subscription); /** * get default subscription Loading Loading
telephony/java/android/telephony/MSimTelephonyManager.java +2 −2 Original line number Diff line number Diff line Loading @@ -937,9 +937,9 @@ public class MSimTelephonyManager { * * @hide pending API review */ public List<CellInfo> getAllCellInfo() { public List<CellInfo> getAllCellInfo(int subscription) { try { return getITelephonyMSim().getAllCellInfo(); return getITelephonyMSim().getAllCellInfo(subscription); } catch (RemoteException ex) { return null; } catch (NullPointerException ex) { Loading
telephony/java/com/android/internal/telephony/msim/ITelephonyMSim.aidl +2 −1 Original line number Diff line number Diff line Loading @@ -343,8 +343,9 @@ interface ITelephonyMSim { /** * Returns the all observed cell information of the device. * @param subscription user preferred subscription. */ List<CellInfo> getAllCellInfo(); List<CellInfo> getAllCellInfo(int subscription); /** * get default subscription Loading