- 11 Sep, 2015 1 commit
-
-
Baligh Uddin authored
-
- 10 Sep, 2015 6 commits
-
-
Baligh Uddin authored
Change-Id: Iea50a1f3fd8fbf380b096a549e00092ae6ae6b9f Auto-generated-cl: translation import
-
Tyler Gunn authored
-
Nivedita Sarkar authored
Currently call extras are closely coupled with call state changes. To propagate call extras from internal.telephony.Connection the PRECISE_CALL_STATE_CHANGED event shall be triggered which is genarally triggered when phone/call changes its state. This change removes the above mentioned dependency by updating call extras upon receiving the onExtrasChanged notification which can be triggered independently of call state changes. Bug: 22329706 Change-Id: I57ae69ef48fa2ac23cb5ffbc4902275e865e1a1c
-
Tyler Gunn authored
Per RFC5767, a SIP uri can contain the hostname "anonymous.invalid" if the identity of the caller is unknown (e.g. blocked caller ID). Added code to pick up on this and set the number presentation for CEP participants matching this pattern. This prevents the anonymousA@anonymous.invalid participant names associated with caller ID blocked numbers from showing up. Bug: 23753757 Change-Id: I7765db66e7c881ec87a9fc74ba51172d763ae61b
-
Amit Mahajan authored
-
Sungmin Choi authored
Bug: 23862319 Change-Id: I92c3a5d7fdf7025e2078dccbeb5c13d9263596e3
-
- 09 Sep, 2015 2 commits
-
-
Tyler Gunn authored
-
Andrew Lee authored
-
- 08 Sep, 2015 1 commit
-
-
Andrew Lee authored
Submitted previously to master, but not mnc-dev. Bug: 23779012 Change-Id: I10cf0c0d54de26a32c7a9bd6bc94432febdc09c0
-
- 07 Sep, 2015 1 commit
-
-
Geoff Mendal authored
Change-Id: I037da92138e061842d8811ff26aa9927c33abb3d Auto-generated-cl: translation import
-
- 03 Sep, 2015 3 commits
-
-
Amit Mahajan authored
-
Nancy Chen authored
am bb521eea: Merge "Do not send deactivate SMS because the account may be unprovisioned." into mnc-dev * commit 'bb521eea': Do not send deactivate SMS because the account may be unprovisioned.
-
Nancy Chen authored
-
- 02 Sep, 2015 4 commits
-
-
Nancy Chen authored
Sending an deactivate text upon reboot results in bad user experience and unnecessary pings to the carrier especially when the visual voicemail account may be unprovisioned (which results in an error returned from the carrier). Bug: 23370330 Change-Id: I816803d481328a47cdf2b946f26a5dcb7f711280
-
Roshan Pius authored
* commit 'fc8883b2': Update call state for 2nd call in CDMA conference.
-
Roshan Pius authored
In CDMA when we make a new call in presence of another active call, the new call and the original call will eventually become a conference call which shares a single underlying OriginalConnection. Since the OriginalConnection is already in ACTIVE state, we need a way to fake the 2 call object's state in such a way that the user sees the first call as being held and the second call as dialing for a few seconds before it is merged into a conference call. The first call object's state is moved back from HOLD to ACTIVE in |resetStateForConference| after this timeout expiry. However for the second call we need to force update the state of the call object in |forceAsDialing(false)|, otherwise the call object's state remains DIALING since the OriginalConnectionState does not change throughout this duration. Forcing the state updation will help revert the fake DIALING state of second call object and move it to ACTIVE state since the underlying OriginalConnection is in ACTIVE state. This issue is not noticed on the phone UI since it only displays the state of the new conference call created and the 2 child call's state is not individually presented. BUG: 23316217 Change-Id: Ie04d340c326441e5ca08bbbea5cb225007fc55d9
-
Geoff Mendal authored
Change-Id: I67211a8d04f949f0fa75056143756d7e8b23951f Auto-generated-cl: translation import
-
- 01 Sep, 2015 1 commit
-
-
Tyler Gunn authored
- Added verbose debug logs to have better visibility as to what is being compared (in case this fix doesn't work). - Changed to using PhoneNumberUtils.compare, which will strip out any special characters such as +, -, etc when performing the number comparison. Bug: 23691306 Change-Id: I68ed5cea5a65c44e8f8bc2518dd02c29a9149540
-
- 31 Aug, 2015 2 commits
-
-
Tyler Gunn authored
Some carriers prohibit making non-emergency calls when the phone is in ECM mode. Add carrier config to control this and blocking of non-emergency calls when in ECM mode. Bug: 23063217 Change-Id: I4d8a31f8883af7c443b709e19dd86153c015f5a6
-
Sungmin Choi authored
Bug: 22639018 Change-Id: I8dd93a26309cc13c2744efcd3bdc3ea9dd06e088
-
- 29 Aug, 2015 2 commits
-
-
Pavel Zhamaitsiak authored
-
Geoff Mendal authored
Change-Id: Ic99a7ad1a9241080847db24c57077c3551eca4d8 Auto-generated-cl: translation import
-
- 28 Aug, 2015 1 commit
-
-
Sungmin Choi authored
Bug: 23539759 Change-Id: I069d994eaef2f57c3d01ff2f36abcd274da431a5
-
- 26 Aug, 2015 1 commit
-
-
Anthony Lee authored
Bug: 23519922 Change-Id: I0178861da84d0ef8da78242a9c43ddbf386b9043
-
- 25 Aug, 2015 3 commits
-
-
Anthony Lee authored
-
Anthony Lee authored
-
Tyler Gunn authored
Previously only the video capabilities were being transferred from the conference host connection to the IMS conference. This change also transfers the HD indicator to the IMS conference. Bug: 23263670 Change-Id: I41da617fd4d59d43b36acea8bcba8757a7ddd0a6
-
- 24 Aug, 2015 6 commits
-
-
Tyler Gunn authored
-
Tyler Gunn authored
In ImsConference, the "handleConferenceParticipantsUpdate" method is called in response to the "onConferenceParticipantsChanged" callback from the IMS stack. Although ImsConference stores the participants in a thread-safe collection, the code which accesses this collection when performing the update could result in duplicates in multithreading scenarios. The change looks big about, but really it's just wrapping the body of "handleConferenceParticipantsUpdate" in a synchronized block. Bug: 23482867 Change-Id: I44317277f3cccff786f1c696b4f441a52dbd1b89
-
Tyler Gunn authored
The EVENT_SIM_NETWORK_LOCKED event in Telephony triggers displaying the depersonalization dialog. It appears, however, that there are instances when the EVENT_SIM_NETWORK_LOCKED event gets triggered multiple times, resulting in multiple stacked dialogs being shown. Added singleton code into the dialog to ensure only a single instance can be opened at the same time. Bug: 22963631 Change-Id: Ib43b34acdc9da7dcf4b1cfc4c37ba30b10d16cad
-
Tyler Gunn authored
Conference event package data contains the phone numbers of all participants in a conference, but is formatted as a SIP Uri. This is problematic as Telecom will not be able to look up contact info for the URI, and InCall will not format the phone number appropriately. Sip URIs can represent the phone number in a few ways, so we attempt to extract the phone number and to reformat as a TEL uri. Bug: 22629231 Change-Id: I3f9f3934d5db1c07547127fb9e6be4c415c7e056
-
Tyler Gunn authored
-
Geoff Mendal authored
Change-Id: Ic006b44b74305a736993736a04794ac518091c5a Auto-generated-cl: translation import
-
- 21 Aug, 2015 4 commits
-
-
Tyler Gunn authored
Some carriers will include the conference originator in the conference event package data. This means that my own phone number can show up in the "manage conference" screen. Added a method in TelecomAccountRegistry to get the device phone number given a phone account. In ImsConference, when adding new participants add a check to see if the participant # is the same as the conference host's number. Also, caching and reusing the phone account handle instead of re-creating it each time. Bug: 22629231 Change-Id: I76067f330482c1fa2562bd89dfad659850da428f
-
Roshan Pius authored
-
Tyler Gunn authored
-
Roshan Pius authored
On SRVCC fallback to GSM connection, we need to copy the connect time set on the existing IMSConnection to the new GSM connection created so that we can keep track of the call time across the SRVCC event. BUG: 21918593 Change-Id: I38253e66cee5474d93bd461128f62ee39a6cc96c
-
- 20 Aug, 2015 2 commits
-
-
Nancy Chen authored
* commit '42f5cb37': Only mark as read voicemails with the "is_read" flag set.
-
Nancy Chen authored
The vvm sync service was querying for all voicemails with the "dirty" bit set instead of voicemails that had actually been read and then marking the voicemail as "read" locally. This resulted in voicemails being marked as read that had not been listened to by the user. Bug: 23351142 Change-Id: I24500fca0e835f643b3c635d498f51947359a481
-