HomeSort by relevance Sort by last modified time
    Searched refs:printBuf (Results 1 - 3 of 3) sorted by null

  /hardware/ril/libril/
ril_internal.h 44 #define startRequest sprintf(printBuf, "(")
45 #define closeRequest sprintf(printBuf, "%s)", printBuf)
47 RLOGD("[%04d]> %s %s", token, requestToString(req), printBuf)
49 #define startResponse sprintf(printBuf, "%s {", printBuf)
50 #define closeResponse sprintf(printBuf, "%s}", printBuf)
51 #define printResponse RLOGD("%s", printBuf)
53 #define clearPrintBuf printBuf[0] =
    [all...]
ril.cpp 157 static char printBuf[PRINTBUF_SIZE];
    [all...]
  /system/netd/server/
XfrmController.cpp 148 char* printBuf = new char[len * 2 + 1 + 26]; // len->ascii, +newline, +prefix strlen
151 sprintf(printBuf, "{%-16s}", desc16);
154 sprintf(printBuf + offset, "[%4.4u]: ", (len > 9999) ? 9999 : (unsigned)len);
158 sprintf(&printBuf[j * 2 + offset], "%0.2x", (unsigned char)buf[j]);
160 ALOGD("%s", printBuf);
161 delete[] printBuf;
    [all...]

Completed in 463 milliseconds