Lines Matching defs:fp
257 FILE* fp = fopen("/proc/self/maps", "r");
258 if (fp == NULL) return;
270 if (fscanf(fp, "%" V8PRIxPTR "-%" V8PRIxPTR, &start, &end) != 2) break;
271 if (fscanf(fp, " %c%c%c%c", &attr_r, &attr_w, &attr_x, &attr_p) != 4) break;
278 c = getc(fp);
284 ungetc(c, fp); // Push the '/' back into the stream to be read below.
287 if (fgets(lib_name, kLibNameLen, fp) == NULL) break;
303 c = getc(fp);
309 fclose(fp);
719 sample->fp = reinterpret_cast<Address>(context.Rbp);
723 sample->fp = reinterpret_cast<Address>(context.Ebp);