summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Radhika Agrawal <radhikaagrawal@google.com> 2020-03-19 22:09:23 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2020-03-19 22:09:23 +0000
commit66a3e59965d6157059d6f83a7189a8b9cd30e5d7 (patch)
treeec8b5eb7a0f84d8a5b72e86b36ed177bf63142bd
parentc66427a9c78b08bcd835dfcb555ae861da16b534 (diff)
parent96eff34a0aba4dd845d6ce430afc9f2f4436905c (diff)
Merge "API review comments Test: make Bug: b/150126235" into rvc-dev
-rwxr-xr-xapi/system-current.txt4
-rw-r--r--api/test-current.txt4
-rw-r--r--telephony/api/system-current.txt4
-rw-r--r--telephony/java/android/telephony/CallQuality.java4
4 files changed, 8 insertions, 8 deletions
diff --git a/api/system-current.txt b/api/system-current.txt
index fe4e93098806..e9bfdade93cc 100755
--- a/api/system-current.txt
+++ b/api/system-current.txt
@@ -10616,8 +10616,8 @@ package android.telephony {
method public int getNumRtpPacketsTransmitted();
method public int getNumRtpPacketsTransmittedLost();
method public int getUplinkCallQualityLevel();
- method public boolean isIncomingSilenceDetected();
- method public boolean isOutgoingSilenceDetected();
+ method public boolean isIncomingSilenceDetectedAtCallSetup();
+ method public boolean isOutgoingSilenceDetectedAtCallSetup();
method public boolean isRtpInactivityDetected();
method public void writeToParcel(android.os.Parcel, int);
field public static final int CALL_QUALITY_BAD = 4; // 0x4
diff --git a/api/test-current.txt b/api/test-current.txt
index 5505f50bf19a..4704c0b11d49 100644
--- a/api/test-current.txt
+++ b/api/test-current.txt
@@ -3622,8 +3622,8 @@ package android.telephony {
method public int getNumRtpPacketsTransmitted();
method public int getNumRtpPacketsTransmittedLost();
method public int getUplinkCallQualityLevel();
- method public boolean isIncomingSilenceDetected();
- method public boolean isOutgoingSilenceDetected();
+ method public boolean isIncomingSilenceDetectedAtCallSetup();
+ method public boolean isOutgoingSilenceDetectedAtCallSetup();
method public boolean isRtpInactivityDetected();
method public void writeToParcel(android.os.Parcel, int);
field public static final int CALL_QUALITY_BAD = 4; // 0x4
diff --git a/telephony/api/system-current.txt b/telephony/api/system-current.txt
index 73c9b50d1a11..8fc02bf25a8f 100644
--- a/telephony/api/system-current.txt
+++ b/telephony/api/system-current.txt
@@ -42,8 +42,8 @@ package android.telephony {
method public int getNumRtpPacketsTransmitted();
method public int getNumRtpPacketsTransmittedLost();
method public int getUplinkCallQualityLevel();
- method public boolean isIncomingSilenceDetected();
- method public boolean isOutgoingSilenceDetected();
+ method public boolean isIncomingSilenceDetectedAtCallSetup();
+ method public boolean isOutgoingSilenceDetectedAtCallSetup();
method public boolean isRtpInactivityDetected();
method public void writeToParcel(android.os.Parcel, int);
field public static final int CALL_QUALITY_BAD = 4; // 0x4
diff --git a/telephony/java/android/telephony/CallQuality.java b/telephony/java/android/telephony/CallQuality.java
index 428a515844e6..1c82e96a0183 100644
--- a/telephony/java/android/telephony/CallQuality.java
+++ b/telephony/java/android/telephony/CallQuality.java
@@ -287,7 +287,7 @@ public final class CallQuality implements Parcelable {
* Returns true if only silence rtp packets are received for a duration of 20 seconds starting
* at call setup
*/
- public boolean isIncomingSilenceDetected() {
+ public boolean isIncomingSilenceDetectedAtCallSetup() {
return mRxSilenceDetected;
}
@@ -295,7 +295,7 @@ public final class CallQuality implements Parcelable {
* Returns true if only silence rtp packets are sent for a duration of 20 seconds starting at
* call setup
*/
- public boolean isOutgoingSilenceDetected() {
+ public boolean isOutgoingSilenceDetectedAtCallSetup() {
return mTxSilenceDetected;
}