Home
last modified time | relevance | path

Searched refs:encoded_file (Results 1 – 2 of 2) 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.h304 bool MaybeParse(pair<const void*, int> encoded_file,