- 18 Jun, 2015 1 commit
-
-
Chao Liu authored
RIL_REQUEST_LAST_CALL_FAIL_CAUSE's response. This vendor cause string will be passed to Telecom's DisconnectCause, which could help us figure out why we are seeing so many ERROR_UNSPECIFIED. bug:17701976 Original partner change: https://partner-android-review.googlesource.com/#/c/215710/ Change-Id: I0c54733a03b2fe2bd48b3d3b21efc5e3ebd9ef66
-
- 08 Jun, 2015 1 commit
-
-
Prerepa Viswanadham authored
Change-Id: Iab8fbdeae0867c6e9cb9027b08317b1b5a2c9dfc
-
- 04 Jun, 2015 1 commit
-
-
Sooraj Sasindran authored
Introduce interface to retrieve modem power stats info Change-Id: I7ed89e754f733a93e430d64dfe28d7fbed1d4d75
-
- 20 May, 2015 1 commit
-
-
fenglu authored
cherrypick from mwd to mnc-dev Bug: 21307103 Change-Id: I0d9dd7bafee24a4853984ebcb665c022a0cbdc6a
-
- 06 May, 2015 1 commit
-
-
Chih-Hung Hsieh authored
BUG: 20891299 Change-Id: Iedfd2e8e5bd32014f011352898763bcc0887b6b9
-
- 30 Apr, 2015 1 commit
-
-
Robert Greenwalt authored
Several things are redundent except for the fact messages are reaching rilc. Left in in case we need to debug the layer, but blocked out with #if VDBG Reduces startup logging to radio buffer by 20% Change-Id: I95099457ea365ee108e7da8e1f81434531b6b9f0
-
- 24 Apr, 2015 1 commit
-
-
Etan Cohen authored
-
- 22 Apr, 2015 1 commit
-
-
Abhishek Adappa authored
Change-Id: If9c07105771769b52070a85f93bf6d9a11fa6b80
-
- 16 Apr, 2015 2 commits
- 15 Apr, 2015 1 commit
-
-
Vinit Deshpande authored
Change-Id: Ia856311187a0b2168cb859bd8b2300ff59df6569
-
- 14 Apr, 2015 1 commit
-
-
Vinit Deshpande authored
27976c47 Introduction of the new SAP-UIM socket Change-Id: I9ab9d65f230edd83037e2d1779b3bdd3b32a0aa7
-
- 09 Apr, 2015 4 commits
-
-
Mark Salyzyn authored
* commit '26a79e4e': libril: tag RILC messages to radio log
-
Mark Salyzyn authored
-
Mark Salyzyn authored
Change-Id: Ia3234aa933249eb9f383c7e45c3f67b3c0c50634
-
Dheeraj Shetty authored
Added new socket connection for communication between the SAP module in Telephony and User Identity Module with DSDA support. New classes added are: RilSocket --------- Base class(virtual) for any type of socket. Has listen and commands callbacks similar to that of the existing telephony->rild socket. RilSapSocket ------------ Derived class for socket for communication between BT SAP and the sim module in the modem. It initialises socket, calls Sap_Uim_Init to get the handles and starts the socket thread. rilSocketQueue -------------- Queue for managing socket requests. Change-Id: I8828173941d6ae76f1f9cc0d567efaf41a77d175
-
- 06 Apr, 2015 4 commits
-
-
Andreas Gampe authored
Change-Id: I2ece30436199e695c0f2cd5963586a2279578b9b
-
Mark Salyzyn authored
rild.c gets sys/stat.h inherited from private/android_filesystem_config.h it should not rely on this in the future. The intent is to move fs_config function into libcutils and thus deprecate any need for sys/stat.h in this include file. Bug: 19908228 Change-Id: I5b10e9347aa9df8f0523a0ff00287655ca426d18
-
Andreas Gampe authored
-
Andreas Gampe authored
umask requires sys/stat.h and sys/types.h. Change-Id: Idc44976675c0f178bc860773e0bc1b65b392adcc
-
- 16 Mar, 2015 4 commits
-
-
Vinit Deshpande authored
-
Vinit Deshpande authored
-
Wink Saville authored
Change-Id: Ia526b1c872e5a3b298613387f58ee2aec6d7983c
-
Yashdev Singh authored
- Introduce IWLAN RAT in ril.h Change-Id: Iaea12214b8333c6b6a56879c4d3b9417e3c24082
-
- 11 Mar, 2015 1 commit
-
-
Wink Saville authored
Change-Id: Ia526b1c872e5a3b298613387f58ee2aec6d7983c
-
- 25 Feb, 2015 1 commit
-
-
Yashdev Singh authored
- Introduce IWLAN RAT in ril.h Change-Id: Iaea12214b8333c6b6a56879c4d3b9417e3c24082
-
- 20 Feb, 2015 3 commits
-
-
Elliott Hughes authored
* commit '4f481a54': Fix missing extern.
-
Elliott Hughes authored
-
Elliott Hughes authored
Change-Id: Iaf7c85b49350e0716d40edb36129714ca47fdb11
-
- 10 Feb, 2015 2 commits
-
-
Nick Kralevich authored
* commit 'cb6cd1fb': ril.cpp: fix misuse of strncat
-
Nick Kralevich authored
-
- 09 Feb, 2015 1 commit
-
-
Nick Kralevich authored
strncat(dest,src,size) appends size+1 bytes to the end of dest, so sizeof(dest) must be greater than strlen(dest) + size + 1. Passing the buffer size to strncat instead of sizeof(dest) - strlen(dest) - 1 is a common strncat bug. Use strlcat instead, as it has more intuitive behavior and ensures the buffer is properly null terminated. Addresses the following compiler warning: In file included from system/core/include/cutils/sockets.h:22:0, from hardware/ril/libril/ril.cpp:24: In function 'char* strncat(char*, const char*, size_t)', inlined from 'void android::RIL_register(const RIL_RadioFunctions*)' at hardware/ril/libril/ril.cpp:4258:62: bionic/libc/include/string.h:199:61: warning: call to char* __builtin___strncat_chk(char*, const char*, unsigned int, unsigned int) might overflow destination buffer return __builtin___strncat_chk(dest, src, n, __bos(dest)); ^ (line numbers are from internal master and do not match AOSP) Even with this change, this code feels weird. MAX_DEBUG_SOCKET_NAME_LENGTH is 12, and rildebug is initialized to be SOCKET_NAME_RIL_DEBUG ("rild-debug"), which is 11 bytes including null terminator. The strlcat call here can append a maximum of 1 byte before the buffer is full. I don't know if this is intended or not. Change-Id: I49801ad1ea3aa6173bbc9fd7cf00f3d308693253
-
- 08 Feb, 2015 2 commits
-
-
Nick Kralevich authored
* commit 'd8dcd06e': Removal of dead code and adding log messages to make it easier for debugging
-
Nick Kralevich authored
-
- 03 Feb, 2015 1 commit
-
-
Nanik Tolaram authored
for debugging - Add more logging using ALOGD(..) for function dispatchSmsWrite, dispatchDial, dispatchSIM_IO, dispatchSIM_APDU, dispatchCallForward, dispatchRaw and dispatchCdmaSmsAck. To make it easier for debugging. - Remove commented log message inside wakeTimeoutCallback () function and remove the else clause as it's dead not used for anything. - Modify log message inside removeFromList and removeWatch using + and - to make it consistent with the other log message. Change-Id: Ife0212e6a4724d8b06a1dd767484bfdf98b8e1a6 Signed-off-by:
Nanik Tolaram <nanikjava@gmail.com>
-
- 23 Jan, 2015 3 commits
-
-
Nick Kralevich authored
* commit '7c306fd5': rild: enable tombstone on RIL crash
-
Nick Kralevich authored
-
Julien Vuillaumier authored
Since Android L, process dumpable flag is verified in case of crash before requesting tombstone capture by debuggerd. As setuid operation clears dumpable flag for a process, reenable flag in rild after its switch to UID radio (debuggable build only) Change-Id: Id86b697e2a1e11744ccc50a3c9ef04faf079ed94
-
- 09 Jan, 2015 2 commits
-
-
Elliott Hughes authored
* commit '97f1dafc': Remove makefile cruft.
-
Elliott Hughes authored
* commit 'bdfdd776': We have POSIX clocks.
-