Home
last modified time | relevance | path

Searched refs:encoded_file (Results 1 – 3 of 3) sorted by relevance

/external/protobuf/src/google/protobuf/
Ddescriptor_database.cc343 pair<const void*, int> encoded_file = index_.FindSymbol(symbol_name); in FindNameOfFileContainingSymbol() local
344 if (encoded_file.first == NULL) return false; in FindNameOfFileContainingSymbol()
348 io::CodedInputStream input(reinterpret_cast<const uint8*>(encoded_file.first), in FindNameOfFileContainingSymbol()
349 encoded_file.second); in FindNameOfFileContainingSymbol()
361 if (!file_proto.ParseFromArray(encoded_file.first, encoded_file.second)) { in FindNameOfFileContainingSymbol()
384 pair<const void*, int> encoded_file, in MaybeParse() argument
386 if (encoded_file.first == NULL) return false; in MaybeParse()
387 return output->ParseFromArray(encoded_file.first, encoded_file.second); in MaybeParse()
Ddescriptor_database.h306 bool MaybeParse(pair<const void*, int> encoded_file,
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
Dvp8_sequence_coder.cc25 explicit Vp8SequenceCoderEncodeCallback(FILE* encoded_file) in Vp8SequenceCoderEncodeCallback() argument
26 : encoded_file_(encoded_file), encoded_bytes_(0) {} in Vp8SequenceCoderEncodeCallback()
106 FILE* encoded_file = fopen(encoded_file_name.c_str(), "wb"); in SequenceCoder() local
107 if (encoded_file == NULL) { in SequenceCoder()
154 Vp8SequenceCoderEncodeCallback encoder_callback(encoded_file); in SequenceCoder()