Lines Matching full:pth
300 // PTH file lookup: map from strings to file data.
305 /// the PTH file.
435 // Memory map the PTH file.
454 if ((BufEnd - BufBeg) < (signed)(sizeof("cfe-pth") + 4 + 4) ||
455 memcmp(BufBeg, "cfe-pth", sizeof("cfe-pth")) != 0) {
460 // Read the PTH version.
461 const unsigned char *p = BufBeg + (sizeof("cfe-pth"));
467 ? "PTH file uses an older PTH format that is no longer supported"
468 : "PTH file uses a newer PTH format that cannot be read");
472 // Compute the address of the index table at the end of the PTH file.
493 // Warn if the PTH file is empty. We still want to create a PTHManager
494 // as the PTH could be used with -include-pth.
496 InvalidPTH(Diags, "PTH file contains no cached source data");
542 InvalidPTH(Diags, "Could not allocate memory for processing PTH file");
561 // Look in the PTH file for the string data for the IdentifierInfo object.
604 // the PTH file that contains cached tokens.
701 // Do the lookup for the file's data in the PTH file.
704 // If we don't get a hit in the PTH file just forward to 'stat'.