Home
last modified time | relevance | path

Searched refs:writer_ (Results 1 – 15 of 15) sorted by relevance

/external/v8/src/profiler/
Dheap-snapshot-generator.cc2688 DCHECK(writer_ == NULL); in Serialize()
2689 writer_ = new OutputStreamWriter(stream); in Serialize()
2691 delete writer_; in Serialize()
2692 writer_ = NULL; in Serialize()
2698 writer_->AddCharacter('{'); in SerializeImpl()
2699 writer_->AddString("\"snapshot\":{"); in SerializeImpl()
2701 if (writer_->aborted()) return; in SerializeImpl()
2702 writer_->AddString("},\n"); in SerializeImpl()
2703 writer_->AddString("\"nodes\":["); in SerializeImpl()
2705 if (writer_->aborted()) return; in SerializeImpl()
[all …]
Dheap-snapshot-generator.h580 writer_(NULL) { in HeapSnapshotJSONSerializer()
619 OutputStreamWriter* writer_; variable
/external/google-breakpad/src/client/mac/handler/
Dminidump_generator.cc73 : writer_(), in MinidumpGenerator()
91 : writer_(), in MinidumpGenerator()
221 if (writer_.Open(path)) { in Write()
222 TypedMDRVA<MDRawHeader> header(&writer_); in Write()
223 TypedMDRVA<MDRawDirectory> dir(&writer_); in Write()
319 UntypedMDRVA memory(&writer_); in WriteStackFromStartAddress()
470 TypedMDRVA<MDRawContextARM> context(&writer_); in WriteContextARM()
528 TypedMDRVA<MDRawContextARM64> context(&writer_); in WriteContextARM64()
619 TypedMDRVA<MDRawContextPPC> context(&writer_); in WriteContextPPC()
685 TypedMDRVA<MDRawContextPPC64> context(&writer_); in WriteContextPPC64()
[all …]
Dminidump_generator.h197 MinidumpFileWriter writer_;
/external/google-breakpad/src/client/
Dminidump_file_writer-inl.h74 return writer_->Copy( in CopyIndex()
84 return writer_->Copy( in CopyIndexAfterObject()
92 return writer_->Copy(position_, &data_, minidump_size<MDType>::size()); in Flush()
Dminidump_file_writer.h159 : writer_(writer), in UntypedMDRVA()
191 MinidumpFileWriter *writer_;
Dminidump_file_writer.cc273 position_ = writer_->Allocate(size_);
281 return writer_->Copy(pos, src, size);
/external/fmtlib/fmt/
Dprintf.h286 BasicWriter<Char> &writer_;
308 : FormatterBase(al), writer_(w) {}
394 write(writer_, start, s);
398 write(writer_, start, s - 1);
481 AF(writer_, spec).visit(arg);
483 write(writer_, start, s);
Dformat.h1928 BasicWriter<Char> &writer_;
1936 writer_.write_int(reinterpret_cast<uintptr_t>(p), spec_);
1940 BasicWriter<Char> &writer() { return writer_; }
1946 writer_.write_str(str, spec_);
1951 writer_.write_str(str, spec_);
1956 : writer_(w), spec_(s) {}
1959 void visit_any_int(T value) { writer_.write_int(value, spec_); }
1962 void visit_any_double(T value) { writer_.write_double(value, spec_); }
1975 writer_.write_int(value, spec_);
1985 out = writer_.grow_buffer(spec_.width_);
[all …]
/external/google-breakpad/src/common/mac/
DGTMLogger.m171 // Unlikely, but |writer_| may be an NSFileHandle, which can throw
175 [writer_ release];
184 return [[writer_ retain] autorelease];
189 [writer_ autorelease];
190 writer_ = nil;
194 writer_ = [[NSFileHandle fileHandleWithStandardOutput] retain];
197 // Leave |writer_| nil
200 writer_ = [writer retain];
324 [writer_ logMessage:msg level:level];
DGTMLogger.h211 id<GTMLogWriter> writer_;
/external/google-breakpad/src/client/ios/handler/
Dios_exception_minidump_generator.mm93 TypedMDRVA<MDRawContextARM> context(&writer_);
111 TypedMDRVA<MDRawContextARM64> context(&writer_);
137 TypedMDRVA<MDRawExceptionStream> exception(&writer_);
171 UntypedMDRVA memory(&writer_);
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.cc2440 writer_(NULL) {} in Cluster()
2458 writer_ = ptr_writer; in Init()
2531 if (!writer_ || finalized_) in Finalize()
2575 if (writer_->Seekable()) { in Finalize()
2576 const int64_t pos = writer_->Position(); in Finalize()
2578 if (writer_->Position(size_position_)) in Finalize()
2581 if (WriteUIntSize(writer_, payload_size(), 8)) in Finalize()
2584 if (writer_->Position(pos)) in Finalize()
2635 const uint64_t element_size = WriteFrame(writer_, frame, this); in DoWriteFrame()
2703 if (WriteID(writer_, libwebm::kMkvCluster)) in WriteClusterHeader()
[all …]
Dmkvmuxer.h1385 IMkvWriter* writer_; variable
/external/v8/src/
Dgdb-jit.cc417 : ELFSection(name, TYPE_STRTAB, 1), writer_(NULL), offset_(0), size_(0) { in ELFStringTable()
429 writer_ = w; in AttachWriter()
430 offset_ = writer_->position(); in AttachWriter()
437 writer_ = NULL; in DetachWriter()
441 DCHECK(writer_ == NULL); in WriteBody()
450 writer_->Write(*str); in WriteString()
456 Writer* writer_; member in v8::internal::GDBJITInterface::ELFStringTable