Home | History | Annotate | Download | only in linux

Lines Matching refs:cAddr

863     char *lineptr = NULL, *cAddr = NULL;
877 cAddr = strstr(lineptr, "address 0x");
878 if (cAddr) {
879 cAddr = cAddr + strlen("address ");
880 char* endOff = strchr(cAddr, ' ');
881 cAddr[endOff - cAddr] = '\0';
882 *crashAddr = (void*)((size_t)strtoull(cAddr, NULL, 16));
906 if (cAddr && strstr(pLineLC, cAddr)) {
912 cAddr = NULL;