Home | History | Annotate | Download | only in src

Lines Matching defs:fp_

38       : fp_(GetFileDescriptorOrDie(snapshot_file))
46 fclose(fp_);
124 fprintf(fp_, "// Autogenerated snapshot file. Do not edit.\n\n");
125 fprintf(fp_, "#include \"src/v8.h\"\n");
126 fprintf(fp_, "#include \"src/base/platform/platform.h\"\n\n");
127 fprintf(fp_, "#include \"src/snapshot.h\"\n\n");
128 fprintf(fp_, "namespace v8 {\n");
129 fprintf(fp_, "namespace internal {\n\n");
133 fprintf(fp_, "} // namespace internal\n");
134 fprintf(fp_, "} // namespace v8\n");
173 fprintf(fp_, "const byte Snapshot::%sdata_[] = {\n", prefix);
175 fprintf(fp_, "};\n");
176 fprintf(fp_, "const int Snapshot::%ssize_ = %d;\n", prefix,
180 fprintf(fp_, "const byte* Snapshot::%sraw_data_ = Snapshot::%sdata_;\n",
182 fprintf(fp_, "const int Snapshot::%sraw_size_ = Snapshot::%ssize_;\n",
185 fprintf(fp_, "const byte* Snapshot::%sraw_data_ = NULL;\n", prefix);
186 fprintf(fp_, "const int Snapshot::%sraw_size_ = %d;\n",
189 fprintf(fp_, "\n");
200 fprintf(fp_, "\n");
205 fprintf(fp_, "const int Snapshot::%s%s_space_used_ = %d;\n",
212 fprintf(fp_, "\n");
214 fprintf(fp_, ",");
215 fprintf(fp_, "%u", static_cast<unsigned char>(data->at(i)));
217 fprintf(fp_, "\n");
229 FILE* fp_;