Loading src/java/com/android/internal/telephony/Connection.java +7 −0 Original line number Diff line number Diff line Loading @@ -34,6 +34,7 @@ import java.util.concurrent.CopyOnWriteArraySet; public abstract class Connection { public interface PostDialListener { void onPostDialWait(); void onPostDialChar(char c); } /** Loading Loading @@ -352,6 +353,12 @@ public abstract class Connection { } } protected final void notifyPostDialListenersNextChar(char c) { for (PostDialListener listener : new ArrayList<>(mPostDialListeners)) { listener.onPostDialChar(c); } } public abstract PostDialState getPostDialState(); /** Loading src/java/com/android/internal/telephony/cdma/CdmaConnection.java +3 −0 Original line number Diff line number Diff line Loading @@ -689,6 +689,9 @@ public class CdmaConnection extends Connection { } } notifyPostDialListenersNextChar(c); // TODO: remove the following code since the handler no longer executes anything. postDialHandler = mOwner.mPhone.mPostDialHandler; Message notifyMessage; Loading src/java/com/android/internal/telephony/gsm/GsmConnection.java +3 −0 Original line number Diff line number Diff line Loading @@ -637,6 +637,9 @@ public class GsmConnection extends Connection { } } notifyPostDialListenersNextChar(c); // TODO: remove the following code since the handler no longer executes anything. postDialHandler = mOwner.mPhone.mPostDialHandler; Message notifyMessage; Loading src/java/com/android/internal/telephony/imsphone/ImsPhoneConnection.java +3 −0 Original line number Diff line number Diff line Loading @@ -446,6 +446,9 @@ public class ImsPhoneConnection extends Connection { } } notifyPostDialListenersNextChar(c); // TODO: remove the following code since the handler no longer executes anything. postDialHandler = mOwner.mPhone.mPostDialHandler; Message notifyMessage; Loading Loading
src/java/com/android/internal/telephony/Connection.java +7 −0 Original line number Diff line number Diff line Loading @@ -34,6 +34,7 @@ import java.util.concurrent.CopyOnWriteArraySet; public abstract class Connection { public interface PostDialListener { void onPostDialWait(); void onPostDialChar(char c); } /** Loading Loading @@ -352,6 +353,12 @@ public abstract class Connection { } } protected final void notifyPostDialListenersNextChar(char c) { for (PostDialListener listener : new ArrayList<>(mPostDialListeners)) { listener.onPostDialChar(c); } } public abstract PostDialState getPostDialState(); /** Loading
src/java/com/android/internal/telephony/cdma/CdmaConnection.java +3 −0 Original line number Diff line number Diff line Loading @@ -689,6 +689,9 @@ public class CdmaConnection extends Connection { } } notifyPostDialListenersNextChar(c); // TODO: remove the following code since the handler no longer executes anything. postDialHandler = mOwner.mPhone.mPostDialHandler; Message notifyMessage; Loading
src/java/com/android/internal/telephony/gsm/GsmConnection.java +3 −0 Original line number Diff line number Diff line Loading @@ -637,6 +637,9 @@ public class GsmConnection extends Connection { } } notifyPostDialListenersNextChar(c); // TODO: remove the following code since the handler no longer executes anything. postDialHandler = mOwner.mPhone.mPostDialHandler; Message notifyMessage; Loading
src/java/com/android/internal/telephony/imsphone/ImsPhoneConnection.java +3 −0 Original line number Diff line number Diff line Loading @@ -446,6 +446,9 @@ public class ImsPhoneConnection extends Connection { } } notifyPostDialListenersNextChar(c); // TODO: remove the following code since the handler no longer executes anything. postDialHandler = mOwner.mPhone.mPostDialHandler; Message notifyMessage; Loading