- 06 May, 2016 1 commit
-
-
Nathan Harold authored
am: f3769da0 * commit 'f3769da0': Specify the INVALID flag for BSIC to be 0xFF Change-Id: I9676bb84fa15d888abda71ca73360d2f9805b106
-
- 05 May, 2016 1 commit
-
-
Nathan Harold authored
Bug: 28299027 Change-Id: I3786265a266508d6ea842ccc2a2c3dcf99c3654f
-
- 29 Apr, 2016 4 commits
-
-
Aurimas Liutikas authored
am: 5eaec8ba * commit '5eaec8ba': Suppress unused-parameter warnings in libril. Change-Id: I859774e38c07c92634567e91ef129e38a4e1998d
-
Aurimas Liutikas authored
am: a22b1288 * commit 'a22b1288': Suppress unused-parameter warnings in libril. Change-Id: I9c6d05fae4dbb4ff29c44146c7cc221fa1a44a50
-
Aurimas Liutikas authored
-
Aurimas Liutikas authored
Bug: 26936282 Change-Id: I848a9b2e98e31845d29cc84ccea3517d13339dcc
-
- 14 Apr, 2016 7 commits
-
-
Keun Soo Yim authored
am: 1067bb62 * commit '1067bb62': build fix Change-Id: I742d5d9295b7b3ebdd57a68497fb771138844f71
-
Keun Soo Yim authored
Change-Id: I52d7255c352f1a8188658d28f609e5028179d0a0
-
Keun Soo Yim authored
am: c23238d3 * commit 'c23238d3': fail explicitly if setuid() fails Change-Id: I6be3ecc549efc5279d590477fe91b74548707dea
-
Keun Soo Yim authored
am: 1973685c * commit '1973685c': avoid a potential buffer overflow Change-Id: Ib3792c7e229f2bda3244d68137e9e620069cd26c
-
Keun Soo Yim authored
-
Keun Soo Yim authored
otherwise, the following code can be executed with unintended privileges. bug:28178548 Change-Id: I265f8c0e1693344a675cc2623968db816309b1f4
-
Keun Soo Yim authored
strncat can copy upto n bytes if its 3rd argument is n, while the 1st argument which is the destination has only n bytes in this case. Change-Id: I3469abdcf55e64c5878a855700b323335c40c8be
-
- 08 Apr, 2016 4 commits
-
-
Yu Ning authored
pthread_cond_timedwait_relative_np() is deprecated, and is only available in the 32-bit ABI (see bionic/libc/include/pthread.h). It is still used by the 32-bit version of reference-ril. Thanks to a recent bugfix for 64-bit [1], it is now safe to replace the deprecated function with the standard pthread_cond_timedwait(). Doing so also simplifies the code, as there is now a unified logic for 32 and 64-bit targets. [1] https://android-review.googlesource.com/210301 Signed-off-by:
Yu Ning <yu.ning@intel.com> (cherry picked from commit 3480b183) Change-Id: I1a15ee0fdfea38b6ee9c9fd49845d10d45f485b1
-
Jinhui Li authored
setTimespecRelative() converts a relative time to an absolute time, by adding the relative time to current system time. However, it fails to handle the case where the nanosecond component (tv_nsec) of the conversion result exceeds 10^9, which can cause a subsequent call to pthread_cond_timedwait() to return EINVAL. This bug is the root cause of the "no SIM card" error seen occasionally on x86_64 Android emulator. In fact, all 64-bit targets use setTimespecRelative() in conjunction with pthread_cond_timedwait() during AT handshake, but an EINVAL return value from the latter will lead to an infinite loop and hang the communication. With this fix, x86_64 emulator can boot with functional 3G networking every time. Signed-off-by:
Jinhui Li <jinhui.li@intel.com> [Revised code and commit message] Signed-off-by:
Yu Ning <yu.ning@intel.com> (cherry picked from commit 11476211) Change-Id: I5d7396ef7f0af5ef02ccab785046d635fb8f168c
- 01 Apr, 2016 5 commits
-
-
Elliott Hughes authored
-
Sanket Padawe authored
am: 1be49ba5 * commit '1be49ba5': Add documentation for RIL_SAP_INIT in ril.h Change-Id: Ib48fb227e88901c4bac17891d0f09fc459f3ceb2
-
Sanket Padawe authored
Bug: 27726715 Change-Id: I3c48820f689052a89986191ccb08754197eea229
- 31 Mar, 2016 1 commit
-
-
Yu Ning authored
pthread_cond_timedwait_relative_np() is deprecated, and is only available in the 32-bit ABI (see bionic/libc/include/pthread.h). It is still used by the 32-bit version of reference-ril. Thanks to a recent bugfix for 64-bit [1], it is now safe to replace the deprecated function with the standard pthread_cond_timedwait(). Doing so also simplifies the code, as there is now a unified logic for 32 and 64-bit targets. [1] https://android-review.googlesource.com/210301 Change-Id: I0895bbf65ddb71965018d6945dfb8baa786d5d89 Signed-off-by:
Yu Ning <yu.ning@intel.com>
-
- 30 Mar, 2016 3 commits
-
-
Bo Hu authored
- 25 Mar, 2016 1 commit
-
-
Jinhui Li authored
setTimespecRelative() converts a relative time to an absolute time, by adding the relative time to current system time. However, it fails to handle the case where the nanosecond component (tv_nsec) of the conversion result exceeds 10^9, which can cause a subsequent call to pthread_cond_timedwait() to return EINVAL. This bug is the root cause of the "no SIM card" error seen occasionally on x86_64 Android emulator. In fact, all 64-bit targets use setTimespecRelative() in conjunction with pthread_cond_timedwait() during AT handshake, but an EINVAL return value from the latter will lead to an infinite loop and hang the communication. With this fix, x86_64 emulator can boot with functional 3G networking every time. Signed-off-by:
Jinhui Li <jinhui.li@intel.com> [Revised code and commit message] Signed-off-by:
Yu Ning <yu.ning@intel.com> Change-Id: If04ba560e350bc4e13b22c51f8d215a673230667
-
- 21 Mar, 2016 2 commits
-
-
Ajay Nambi authored
am: 1034589c * commit '1034589c': Ril Error codes: Voice related messages
-
Ajay Nambi authored
This change adds new error codes for messages related to voice Bug: 27038563 Change-Id: I61bcc853f8046e6baf6c8000029f7af0f3f894f0
-
- 14 Mar, 2016 1 commit
-
-
Ajay Nambi authored
am: 68900f5a * commit '68900f5a': New error codes for SMS/other messages
-
- 12 Mar, 2016 1 commit
-
-
Ajay Nambi authored
This gerrit adds error codes for messages related to SMS and set_mute, get_mute requests Bug: 27038563 Change-Id: I4991e4a38c81501c39e91cfd5df90d8288f542ad
-
- 11 Mar, 2016 3 commits
-
-
twen.chang authored
am: 8dc7f4d0 * commit '8dc7f4d0': Add RIL Error code list
-
Sanket Padawe authored
-
twen.chang authored
BUG: 27589497 Change-Id: I9cc8c12364676c3c56dbee57fdc01cf055460816
-
- 10 Mar, 2016 1 commit
-
-
Sanket Padawe authored
Bug: 27134985 Change-Id: I0273a40f175212bed4aad42e46feb333d9df9a2b
-
- 08 Mar, 2016 4 commits
-
-
Sanket Padawe authored
am: 2f0b452b * commit '2f0b452b': Enable integer sanitization in libril.
-
Sanket Padawe authored
Bug: 27486276 Change-Id: I5d440099120567f1ecedb898039b5627346c7089
-
Sanket Padawe authored
am: 0cfc5535 * commit '0cfc5535': Fix security vulnerabilities in ril.cpp
-
Sanket Padawe authored
Bug: 26522805 Change-Id: I0e29b59a67d571468673b7362ff5adae0f927d7f
-
- 05 Mar, 2016 1 commit
-
-
Sanket Padawe authored
am: e52a6c9c * commit 'e52a6c9c': Remove log spam in responseCellInfoList in ril.cpp
-