- 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 6 commits
-
-
Elliott Hughes authored
* commit '97f1dafc': Remove makefile cruft.
-
Elliott Hughes authored
* commit 'bdfdd776': We have POSIX clocks.
-
Elliott Hughes authored
-
Elliott Hughes authored
-
Elliott Hughes authored
Change-Id: Iec07669cc80de041379716c8daa33acc58f7283e
-
Elliott Hughes authored
We're probably not running the RIL on a Mac. Change-Id: Ib6be56cd26d67e2b72b559cb364b1e34ab613016
-
- 09 Dec, 2014 1 commit
-
-
Robert Greenwalt authored
* commit '257ba4e3': Modify RIL_Data_Call_Response to include MTU
-
- 08 Dec, 2014 1 commit
-
-
Robert Greenwalt authored
-
- 04 Dec, 2014 1 commit
-
-
Sukanya Rajkhowa authored
Include MTU as part of RIL Data Call Response so that the framework uses the dynamic MTU value provided by network and updates LinkProperties accordingly. Upping RIL version to 11. bug:18391670 Change-Id: I8a85d7f58c99d73278646cdcb2aa466b85ae9a81
-
- 24 Nov, 2014 1 commit
-
-
Amit Mahajan authored
* commit '496a71cf': Revert "Revert "STK Call Control feature implementation.""
-
- 23 Nov, 2014 1 commit
-
-
Amit Mahajan authored
-
- 22 Nov, 2014 1 commit
-