Lines Matching defs:pLocation
256 static bool isAlreadyReported(struct CSourceLocation *pLocation);
258 static void DeserializeLocation(char *pBuffer, size_t zBUfferLength, struct CSourceLocation *pLocation);
1351 isAlreadyReported(struct CSourceLocation *pLocation)
1361 ASSERT(pLocation);
1363 pLine = &pLocation->mLine;
1399 DeserializeLocation(char *pBuffer, size_t zBUfferLength, struct CSourceLocation *pLocation)
1402 ASSERT(pLocation);
1403 ASSERT(pLocation->mFilename);
1405 snprintf(pBuffer, zBUfferLength, "%s:%" PRIu32 ":%" PRIu32, pLocation->mFilename, pLocation->mLine & (uint32_t)~ACK_REPORTED, pLocation->mColumn);