HomeSort by relevance Sort by last modified time
    Searched refs:output_ (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /system/tools/aidl/
code_writer.cpp 34 explicit StringCodeWriter(std::string* output_buffer) : output_(output_buffer) {}
40 android::base::StringAppendV(output_, format, ap);
48 std::string* output_; member in class:android::aidl::__anon107696::StringCodeWriter
54 : output_(output_file),
57 if (close_on_destruction_ && output_ != nullptr) {
58 fclose(output_);
66 success = vfprintf(output_, format, ap) >= 0;
73 if (output_ != nullptr) {
74 no_error_ = fclose(output_) == 0 && no_error_;
75 output_ = nullptr
82 FILE* output_; member in class:android::aidl::__anon107696::FileCodeWriter
    [all...]
  /external/libchrome/crypto/
openssl_util.h 27 : output_(output),
34 memcpy(output_, min_sized_buffer_, output_len_);
36 // else... any writing already happened directly into |output_|.
40 return output_len_ < MIN_SIZE ? min_sized_buffer_ : output_;
46 unsigned char* output_; member in class:crypto::ScopedOpenSSLSafeSizeBuffer
  /art/compiler/linker/
error_delaying_output_stream.h 31 output_(output),
39 if (!output_->WriteFully(buffer, byte_count)) {
67 off_t actual_offset = output_->Seek(offset, whence);
83 output_good_ = output_->Flush();
94 OutputStream* output_; member in class:art::FINAL
relative_patcher_test.h 68 output_(),
69 out_("test output stream", &output_) {
126 output_.reserve(output_size);
129 DCHECK(output_.empty());
188 CHECK_EQ(output_.size(), output_size);
207 CHECK_LT(offset, output_.size());
208 CHECK_LE(offset + expected_code.size(), output_.size());
209 ArrayRef<const uint8_t> linked_code(&output_[offset], expected_code.size());
284 std::vector<uint8_t> output_; member in class:art::linker::RelativePatcherTest
  /external/protobuf/src/google/protobuf/util/internal/
json_objectwriter_test.cc 48 : str_stream_(new StringOutputStream(&output_)),
58 string output_; member in class:google::protobuf::util::converter::JsonObjectWriterTest
67 EXPECT_EQ("{}", output_.substr(0, out_stream_->ByteCount()));
78 output_.substr(0, out_stream_->ByteCount()));
84 EXPECT_EQ("[]", output_.substr(0, out_stream_->ByteCount()));
95 output_.substr(0, out_stream_->ByteCount()));
106 output_.substr(0, out_stream_->ByteCount()));
117 output_.substr(0, out_stream_->ByteCount()));
128 output_.substr(0, out_stream_->ByteCount()));
138 EXPECT_EQ("[[\"value\"]]", output_.substr(0, out_stream_->ByteCount()))
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
util_unittest.cc 22 output_ << std::string(bytes, len);
26 output_ << "[START-TLS " << cname << "]";
30 output_ << "[CLOSED]";
92 std::string result = output_.str();
93 output_.str("");
util_unittest.h 46 std::stringstream output_; member in class:buzz::XmppTestHandler
xmppengineimpl.cc 50 output_(new std::stringstream()) {
242 (*output_) << text;
257 *output_ << "</stream:stream>";
339 *output_ << "<stream:stream to=\"" << hostname << "\" "
352 XmlPrinter::PrintXml(output_.get(), element, &xmlns_stack_);
418 std::string output = engine->output_->str();
421 engine->output_->str("");
  /external/webp/src/dec/
alphai_dec.h 38 uint8_t* output_; member in struct:ALPHDecoder
idec_dec.c 73 WebPDecBuffer output_; // output buffer (when no external one is supplied, member in struct:WebPIDecoder
258 WebPFreeDecBuffer(&idec->output_);
601 WebPInitDecBuffer(&idec->output_);
606 idec->params_.output = &idec->output_;
669 WebPFreeDecBuffer(&idec->output_);
692 idec->output_.colorspace = mode;
693 idec->output_.is_external_memory = is_external_memory;
694 idec->output_.u.RGBA.rgba = output_buffer;
695 idec->output_.u.RGBA.stride = output_stride;
696 idec->output_.u.RGBA.size = output_buffer_size
    [all...]
vp8li_dec.h 63 const WebPDecBuffer *output_; // shortcut to io->opaque->output member in struct:VP8LDecoder
  /external/webrtc/webrtc/modules/audio_device/android/
audio_device_template.h 44 output_(audio_manager_),
65 if (output_.Init() != 0) {
70 output_.Terminate();
81 err |= output_.Terminate();
147 return output_.InitPlayout();
151 return output_.PlayoutIsInitialized();
171 return output_.StartPlayout();
178 int32_t err = output_.StopPlayout();
183 return output_.Playing();
245 return output_.SpeakerVolumeIsAvailable(available)
498 OutputType output_; member in class:webrtc::AudioDeviceTemplate
    [all...]
  /art/compiler/optimizing/
graph_visualizer.cc 174 output_(output),
192 output_ << std::flush;
197 output_ << "begin_" << name << "\n";
204 output_ << "end_" << name << "\n";
209 output_ << name << " \"" << property << "\"\n";
214 output_ << name << " \"" << property << id << "\"\n";
219 output_ << name << "\n";
224 output_ << name << " " << time(nullptr) << "\n";
229 output_ << name << " " << value << "\n";
234 output_ << " ";
808 std::ostream& output_; member in class:art::HGraphVisualizerPrinter
    [all...]
locations.h 528 DCHECK(output_.IsInvalid());
530 output_ = location;
538 DCHECK(output_.IsStackSlot() || output_.IsDoubleStackSlot() || output_.IsUnallocated());
539 output_ = location;
567 Location Out() const { return output_; }
646 && output_.IsUnallocated()
647 && (output_.GetPolicy() == Location::kSameAsFirstInput);
678 Location output_;
    [all...]
graph_visualizer.h 111 std::ostream* const output_; member in class:art::HGraphVisualizer::std
  /art/disassembler/
disassembler_arm.h 45 std::ostringstream output_; member in class:art::arm::FINAL
disassembler_arm.cc 193 : Disassembler(options), disasm_(std::make_unique<CustomDisassembler>(output_, options)) {}
213 os << output_.str();
214 output_.str(std::string());
234 os << output_.str();
235 output_.str(std::string());
  /art/dex2oat/
dex2oat_test.cc 48 output_ = "";
99 ASSERT_TRUE(success) << error_msg << std::endl << output_; local
114 ASSERT_FALSE(success) << output_;
223 output_ += std::string(buffer, bytes_read);
234 std::string output_ = ""; member in class:art::Dex2oatTest
285 EXPECT_NE(output_.find("Large app, accepted running with swap."), std::string::npos)
286 << output_;
288 EXPECT_EQ(output_.find("Large app, accepted running with swap."), std::string::npos)
289 << output_;
311 EXPECT_NE(output_.find("dex2oat took"), std::string::npos) << output_
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
printer.h 121 ZeroCopyOutputStream* const output_; member in class:google::protobuf::io::Printer
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
printer.h 121 ZeroCopyOutputStream* const output_; member in class:google::protobuf::io::Printer
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
printer.h 121 ZeroCopyOutputStream* const output_; member in class:google::protobuf::io::Printer
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
printer.h 121 ZeroCopyOutputStream* const output_; member in class:google::protobuf::io::Printer
  /external/webrtc/webrtc/modules/audio_coding/neteq/
neteq_external_decoder_unittest.cc 204 samples_per_channel = GetOutputAudio(kMaxBlockSize, output_, &output_type);
207 ASSERT_EQ(output_[i], output_internal_[i]) <<
230 int16_t output_[kMaxBlockSize]; member in class:webrtc::NetEqExternalVsInternalDecoderTest
295 num_samples = GetOutputAudio(kMaxBlockSize, output_, &output_type);
304 if (output_[i] != 0)
325 int16_t output_[kMaxBlockSize]; member in class:webrtc::LargeTimestampJumpTest
  /external/webrtc/webrtc/tools/rtcbot/
test.js 98 this.output_ = [];
99 this.output_.push("Version: 1");
119 this.output_.push({
149 (new Date()).getTime() +".json", JSON.stringify(this.output_),
  /art/runtime/hprof/
hprof.cc 434 #define __ output_->
460 output_ = &count_output;
464 output_ = nullptr;
526 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_SEGMENT, kHprofTime);
533 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_END, kHprofTime);
534 output_->EndRecord();
553 output_->EndRecord();
561 output_->StartNewRecord(HPROF_TAG_LOAD_CLASS, kHprofTime);
579 output_->StartNewRecord(HPROF_TAG_STRING, kHprofTime);
592 output_->StartNewRecord(HPROF_TAG_HEAP_DUMP_SEGMENT, kHprofTime)
888 EndianOutput* output_ = nullptr; member in class:art::hprof::Hprof
    [all...]

Completed in 442 milliseconds

1 2 3 4 5