/external/v8/src/profiler/ |
D | heap-snapshot-generator.cc | 2675 DCHECK(writer_ == NULL); in Serialize() 2676 writer_ = new OutputStreamWriter(stream); in Serialize() 2678 delete writer_; in Serialize() 2679 writer_ = NULL; in Serialize() 2685 writer_->AddCharacter('{'); in SerializeImpl() 2686 writer_->AddString("\"snapshot\":{"); in SerializeImpl() 2688 if (writer_->aborted()) return; in SerializeImpl() 2689 writer_->AddString("},\n"); in SerializeImpl() 2690 writer_->AddString("\"nodes\":["); in SerializeImpl() 2692 if (writer_->aborted()) return; in SerializeImpl() [all …]
|
D | heap-snapshot-generator.h | 580 writer_(NULL) { in HeapSnapshotJSONSerializer() 619 OutputStreamWriter* writer_; variable
|
/external/google-breakpad/src/client/mac/handler/ |
D | minidump_generator.cc | 73 : 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 …]
|
D | minidump_generator.h | 197 MinidumpFileWriter writer_;
|
/external/google-breakpad/src/client/ |
D | minidump_file_writer-inl.h | 74 return writer_->Copy( in CopyIndex() 84 return writer_->Copy( in CopyIndexAfterObject() 92 return writer_->Copy(position_, &data_, minidump_size<MDType>::size()); in Flush()
|
D | minidump_file_writer.h | 159 : writer_(writer), in UntypedMDRVA() 191 MinidumpFileWriter *writer_;
|
D | minidump_file_writer.cc | 273 position_ = writer_->Allocate(size_); 281 return writer_->Copy(pos, src, size);
|
/external/fmtlib/fmt/ |
D | printf.h | 286 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);
|
D | format.h | 1928 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/ |
D | GTMLogger.m | 171 // 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];
|
D | GTMLogger.h | 211 id<GTMLogWriter> writer_;
|
/external/google-breakpad/src/client/ios/handler/ |
D | ios_exception_minidump_generator.mm | 93 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/ |
D | mkvmuxer.cc | 2440 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 …]
|
D | mkvmuxer.h | 1385 IMkvWriter* writer_; variable
|
/external/v8/src/ |
D | gdb-jit.cc | 417 : 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
|