Loading src/java/com/android/internal/telephony/RIL.java +6 −1 Original line number Diff line number Diff line Loading @@ -5658,7 +5658,9 @@ public class RIL extends BaseCommands implements CommandsInterface { ArrayList<android.hardware.radio.V1_0.CellInfo> records) { ArrayList<CellInfo> response = new ArrayList<CellInfo>(records.size()); final long nanotime = SystemClock.elapsedRealtimeNanos(); for (android.hardware.radio.V1_0.CellInfo record : records) { record.timeStamp = nanotime; response.add(CellInfo.create(record)); } Loading @@ -5675,7 +5677,9 @@ public class RIL extends BaseCommands implements CommandsInterface { ArrayList<android.hardware.radio.V1_2.CellInfo> records) { ArrayList<CellInfo> response = new ArrayList<CellInfo>(records.size()); final long nanotime = SystemClock.elapsedRealtimeNanos(); for (android.hardware.radio.V1_2.CellInfo record : records) { record.timeStamp = nanotime; response.add(CellInfo.create(record)); } return response; Loading @@ -5691,8 +5695,9 @@ public class RIL extends BaseCommands implements CommandsInterface { ArrayList<android.hardware.radio.V1_4.CellInfo> records) { ArrayList<CellInfo> response = new ArrayList<CellInfo>(records.size()); final long nanotime = SystemClock.elapsedRealtimeNanos(); for (android.hardware.radio.V1_4.CellInfo record : records) { response.add(CellInfo.create(record)); response.add(CellInfo.create(record, nanotime)); } return response; } Loading Loading
src/java/com/android/internal/telephony/RIL.java +6 −1 Original line number Diff line number Diff line Loading @@ -5658,7 +5658,9 @@ public class RIL extends BaseCommands implements CommandsInterface { ArrayList<android.hardware.radio.V1_0.CellInfo> records) { ArrayList<CellInfo> response = new ArrayList<CellInfo>(records.size()); final long nanotime = SystemClock.elapsedRealtimeNanos(); for (android.hardware.radio.V1_0.CellInfo record : records) { record.timeStamp = nanotime; response.add(CellInfo.create(record)); } Loading @@ -5675,7 +5677,9 @@ public class RIL extends BaseCommands implements CommandsInterface { ArrayList<android.hardware.radio.V1_2.CellInfo> records) { ArrayList<CellInfo> response = new ArrayList<CellInfo>(records.size()); final long nanotime = SystemClock.elapsedRealtimeNanos(); for (android.hardware.radio.V1_2.CellInfo record : records) { record.timeStamp = nanotime; response.add(CellInfo.create(record)); } return response; Loading @@ -5691,8 +5695,9 @@ public class RIL extends BaseCommands implements CommandsInterface { ArrayList<android.hardware.radio.V1_4.CellInfo> records) { ArrayList<CellInfo> response = new ArrayList<CellInfo>(records.size()); final long nanotime = SystemClock.elapsedRealtimeNanos(); for (android.hardware.radio.V1_4.CellInfo record : records) { response.add(CellInfo.create(record)); response.add(CellInfo.create(record, nanotime)); } return response; } Loading