Home | History | Annotate | Download | only in src

Lines Matching refs:fp_

95     fp_ = i::OS::FOpen(snapshot_file, "wb");
96 if (fp_ == NULL) {
100 fprintf(fp_, "// Autogenerated snapshot file. Do not edit.\n\n");
101 fprintf(fp_, "#include \"v8.h\"\n");
102 fprintf(fp_, "#include \"platform.h\"\n\n");
103 fprintf(fp_, "#include \"snapshot.h\"\n\n");
104 fprintf(fp_, "namespace v8 {\nnamespace internal {\n\n");
105 fprintf(fp_, "const byte Snapshot::data_[] = {");
109 fprintf(fp_, "const int Snapshot::size_ = %d;\n", Position());
111 fprintf(fp_, "const byte* Snapshot::raw_data_ = NULL;\n");
112 fprintf(fp_,
116 fprintf(fp_,
118 fprintf(fp_,
121 fprintf(fp_, "} } // namespace v8::internal\n");
122 fclose(fp_);
134 fprintf(fp_,
138 fprintf(fp_,
142 fprintf(fp_,
146 fprintf(fp_,
150 fprintf(fp_,
154 fprintf(fp_,
158 fprintf(fp_,
166 fprintf(fp_, "};\n\n");
167 fprintf(fp_, "const int Snapshot::context_size_ = %d;\n", length);
169 fprintf(fp_,
173 fprintf(fp_,
177 fprintf(fp_, "const byte Snapshot::context_data_[] = {\n");
178 partial_sink_.Print(fp_);
179 fprintf(fp_, "};\n\n");
181 fprintf(fp_, "const byte* Snapshot::context_raw_data_ = NULL;\n");
183 fprintf(fp_, "const byte* Snapshot::context_raw_data_ ="
189 Print(fp_);
195 FILE* fp_;