Loading src/java/com/android/internal/telephony/dataconnection/DataConnection.java +5 −1 Original line number Diff line number Diff line Loading @@ -2145,7 +2145,11 @@ public class DataConnection extends StateMachine { loge("EVENT_ALLOCATE_PDU_SESSION_ID: asyncResult is null!"); } else { Consumer<Integer> onAllocated = (Consumer<Integer>) asyncResult.userObj; if (asyncResult.result == null) { if (asyncResult.exception != null) { loge("EVENT_ALLOCATE_PDU_SESSION_ID: exception", asyncResult.exception); onAllocated.accept(PDU_SESSION_ID_NOT_SET); } else if (asyncResult.result == null) { loge("EVENT_ALLOCATE_PDU_SESSION_ID: result null, no id"); onAllocated.accept(PDU_SESSION_ID_NOT_SET); } else { Loading Loading
src/java/com/android/internal/telephony/dataconnection/DataConnection.java +5 −1 Original line number Diff line number Diff line Loading @@ -2145,7 +2145,11 @@ public class DataConnection extends StateMachine { loge("EVENT_ALLOCATE_PDU_SESSION_ID: asyncResult is null!"); } else { Consumer<Integer> onAllocated = (Consumer<Integer>) asyncResult.userObj; if (asyncResult.result == null) { if (asyncResult.exception != null) { loge("EVENT_ALLOCATE_PDU_SESSION_ID: exception", asyncResult.exception); onAllocated.accept(PDU_SESSION_ID_NOT_SET); } else if (asyncResult.result == null) { loge("EVENT_ALLOCATE_PDU_SESSION_ID: result null, no id"); onAllocated.accept(PDU_SESSION_ID_NOT_SET); } else { Loading