summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2015-04-09 16:11:04 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-04-09 16:11:05 +0000
commit26a79e4eba9a677d446dc767cf1df29f5ca1adb4 (patch)
tree985d513b99d7129f35513caddb8935fb67318117
parent66650640d4ac74655b140be251865714cd6a2d70 (diff)
parentdba256190fcea06421d2a78a4ef921d3baee1ba8 (diff)
downloadandroid_hardware_ril-26a79e4eba9a677d446dc767cf1df29f5ca1adb4.tar.gz
android_hardware_ril-26a79e4eba9a677d446dc767cf1df29f5ca1adb4.tar.bz2
android_hardware_ril-26a79e4eba9a677d446dc767cf1df29f5ca1adb4.zip
Merge "libril: tag RILC messages to radio log"
-rw-r--r--libril/ril.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/libril/ril.cpp b/libril/ril.cpp
index 42196f3..382a526 100644
--- a/libril/ril.cpp
+++ b/libril/ril.cpp
@@ -710,7 +710,7 @@ dispatchSmsWrite (Parcel &p, RequestInfo *pRI) {
int32_t t;
status_t status;
- ALOGD("dispatchSmsWrite");
+ RLOGD("dispatchSmsWrite");
memset (&args, 0, sizeof(args));
status = p.readInt32(&t);
@@ -763,7 +763,7 @@ dispatchDial (Parcel &p, RequestInfo *pRI) {
int32_t uusPresent;
status_t status;
- ALOGD("dispatchDial");
+ RLOGD("dispatchDial");
memset (&dial, 0, sizeof(dial));
dial.address = strdupReadString(p);
@@ -868,7 +868,7 @@ dispatchSIM_IO (Parcel &p, RequestInfo *pRI) {
int size;
status_t status;
- ALOGD("dispatchSIM_IO");
+ RLOGD("dispatchSIM_IO");
memset (&simIO, 0, sizeof(simIO));
// note we only check status at the end
@@ -946,7 +946,7 @@ dispatchSIM_APDU (Parcel &p, RequestInfo *pRI) {
status_t status;
RIL_SIM_APDU apdu;
- ALOGD("dispatchSIM_APDU");
+ RLOGD("dispatchSIM_APDU");
memset (&apdu, 0, sizeof(RIL_SIM_APDU));
// Note we only check status at the end. Any single failure leads to
@@ -1016,7 +1016,7 @@ dispatchCallForward(Parcel &p, RequestInfo *pRI) {
int32_t t;
status_t status;
- ALOGD("dispatchCallForward");
+ RLOGD("dispatchCallForward");
memset (&cff, 0, sizeof(cff));
// note we only check status at the end
@@ -1191,7 +1191,7 @@ static void
dispatchCdmaSms(Parcel &p, RequestInfo *pRI) {
RIL_CDMA_SMS_Message rcsm;
- ALOGD("dispatchCdmaSms");
+ RLOGD("dispatchCdmaSms");
if (NO_ERROR != constructCdmaSms(p, pRI, rcsm)) {
goto invalid;
}
@@ -1214,7 +1214,7 @@ dispatchImsCdmaSms(Parcel &p, RequestInfo *pRI, uint8_t retry, int32_t messageRe
RIL_IMS_SMS_Message rism;
RIL_CDMA_SMS_Message rcsm;
- ALOGD("dispatchImsCdmaSms: retry=%d, messageRef=%d", retry, messageRef);
+ RLOGD("dispatchImsCdmaSms: retry=%d, messageRef=%d", retry, messageRef);
if (NO_ERROR != constructCdmaSms(p, pRI, rcsm)) {
goto invalid;
@@ -1248,7 +1248,7 @@ dispatchImsGsmSms(Parcel &p, RequestInfo *pRI, uint8_t retry, int32_t messageRef
status_t status;
size_t datalen;
char **pStrings;
- ALOGD("dispatchImsGsmSms: retry=%d, messageRef=%d", retry, messageRef);
+ RLOGD("dispatchImsGsmSms: retry=%d, messageRef=%d", retry, messageRef);
status = p.readInt32 (&countStrings);
@@ -1321,7 +1321,7 @@ dispatchImsSms(Parcel &p, RequestInfo *pRI) {
uint8_t retry;
int32_t messageRef;
- ALOGD("dispatchImsSms");
+ RLOGD("dispatchImsSms");
if (status != NO_ERROR) {
goto invalid;
}
@@ -1360,7 +1360,7 @@ dispatchCdmaSmsAck(Parcel &p, RequestInfo *pRI) {
status_t status;
int32_t digitCount;
- ALOGD("dispatchCdmaSmsAck");
+ RLOGD("dispatchCdmaSmsAck");
memset(&rcsa, 0, sizeof(rcsa));
status = p.readInt32(&t);