Home | History | Annotate | Download | only in src

Lines Matching defs:fp_

135     fp_ = i::OS::FOpen(snapshot_file, "wb");
136 if (fp_ == NULL) {
140 fprintf(fp_, "// Autogenerated snapshot file. Do not edit.\n\n");
141 fprintf(fp_, "#include \"v8.h\"\n");
142 fprintf(fp_, "#include \"platform.h\"\n\n");
143 fprintf(fp_, "#include \"snapshot.h\"\n\n");
144 fprintf(fp_, "namespace v8 {\nnamespace internal {\n\n");
145 fprintf(fp_, "const byte Snapshot::data_[] = {");
149 fprintf(fp_, "const int Snapshot::size_ = %d;\n", Position());
151 fprintf(fp_, "const byte* Snapshot::raw_data_ = NULL;\n");
152 fprintf(fp_,
156 fprintf(fp_,
158 fprintf(fp_,
161 fprintf(fp_, "} } // namespace v8::internal\n");
162 fclose(fp_);
173 fprintf(fp_, "const int Snapshot::new_space_used_ = %d;\n", new_space_used);
174 fprintf(fp_,
177 fprintf(fp_,
180 fprintf(fp_,
183 fprintf(fp_, "const int Snapshot::map_space_used_ = %d;\n", map_space_used);
184 fprintf(fp_,
187 fprintf(fp_,
194 fprintf(fp_, "};\n\n");
195 fprintf(fp_, "const int Snapshot::context_size_ = %d;\n", length);
197 fprintf(fp_,
201 fprintf(fp_,
205 fprintf(fp_, "const byte Snapshot::context_data_[] = {\n");
206 partial_sink_.Print(fp_);
207 fprintf(fp_, "};\n\n");
209 fprintf(fp_, "const byte* Snapshot::context_raw_data_ = NULL;\n");
211 fprintf(fp_, "const byte* Snapshot::context_raw_data_ ="
217 Print(fp_);
223 FILE* fp_;