/system/extras/libjsonpb/parse/ |
D | jsonpb.cpp | 28 using google::protobuf::DescriptorPool; 29 using google::protobuf::Message; 30 using google::protobuf::scoped_ptr; 31 using google::protobuf::util::NewTypeResolverForDescriptorPool; 32 using google::protobuf::util::TypeResolver; 44 google::protobuf::util::JsonOptions options; in MessageToJsonString()
|
/system/apex/apexd/ |
D | apex_manifest.cpp | 26 using google::protobuf::DescriptorPool; 27 using google::protobuf::scoped_ptr; 28 using google::protobuf::util::NewTypeResolverForDescriptorPool; 29 using google::protobuf::util::TypeResolver; 37 const google::protobuf::Descriptor* message = apex_manifest.GetDescriptor(); in GetTypeUrl()
|
D | apexd_session.h | 43 const google::protobuf::RepeatedField<int> GetChildSessionIds() const;
|
/system/update_engine/payload_consumer/ |
D | extent_writer.h | 42 const google::protobuf::RepeatedPtrField<Extent>& extents, 58 const google::protobuf::RepeatedPtrField<Extent>& extents, in Init() 74 google::protobuf::RepeatedPtrField<Extent> extents_; 76 google::protobuf::RepeatedPtrField<Extent>::iterator cur_extent_;
|
D | extent_reader.h | 35 const google::protobuf::RepeatedPtrField<Extent>& extents, 53 const google::protobuf::RepeatedPtrField<Extent>& extents, 60 google::protobuf::RepeatedPtrField<Extent> extents_; 64 google::protobuf::RepeatedPtrField<Extent>::iterator cur_extent_;
|
D | file_descriptor_utils.h | 39 const google::protobuf::RepeatedPtrField<Extent>& src_extents, 41 const google::protobuf::RepeatedPtrField<Extent>& tgt_extents, 51 const google::protobuf::RepeatedPtrField<Extent>& extents,
|
D | fake_extent_writer.h | 37 const google::protobuf::RepeatedPtrField<Extent>& /* extents */, in Init()
|
D | xz_extent_writer.h | 43 const google::protobuf::RepeatedPtrField<Extent>& extents,
|
D | bzip_extent_writer.h | 44 const google::protobuf::RepeatedPtrField<Extent>& extents,
|
D | bzip_extent_writer.cc | 19 using google::protobuf::RepeatedPtrField;
|
/system/extras/libjsonpb/verify/include/jsonpb/ |
D | verify.h | 67 bool AllFieldsAreKnown(const google::protobuf::Message& message, 82 google::protobuf::Message* scratch_space, 88 google::protobuf::Message* scratch_space);
|
D | json_schema_test.h | 44 virtual std::unique_ptr<google::protobuf::Message> CreateMessage() const = 0; 60 std::unique_ptr<google::protobuf::Message> CreateMessage() const override { in CreateMessage() 98 google::protobuf::Message* message() const { in message() 103 std::unique_ptr<google::protobuf::Message> object_;
|
/system/update_engine/payload_generator/ |
D | extent_utils.h | 56 google::protobuf::RepeatedPtrField<Extent>* out); 59 void ExtentsToVector(const google::protobuf::RepeatedPtrField<Extent>& extents, 68 google::protobuf::RepeatedPtrField<Extent>* extents, 69 const google::protobuf::RepeatedPtrField<Extent>& extents_to_add);
|
D | extent_utils.cc | 58 google::protobuf::RepeatedPtrField<Extent>* extents, in ExtendExtents() 59 const google::protobuf::RepeatedPtrField<Extent>& extents_to_add) { in ExtendExtents() 74 google::protobuf::RepeatedPtrField<Extent>* out) { in StoreExtents() 82 void ExtentsToVector(const google::protobuf::RepeatedPtrField<Extent>& extents, in ExtentsToVector()
|
D | extent_ranges.h | 60 const ::google::protobuf::RepeatedPtrField<Extent>& exts); 62 const ::google::protobuf::RepeatedPtrField<Extent>& exts);
|
D | annotated_operation.cc | 32 const google::protobuf::RepeatedPtrField<Extent>& extents) { in OutputExtents()
|
/system/extras/libjsonpb/verify/ |
D | verify.cpp | 37 using google::protobuf::FieldDescriptor; 38 using google::protobuf::FieldDescriptorProto; 39 using google::protobuf::Message; 145 bool AllFieldsAreKnown(const google::protobuf::Message& message, in AllFieldsAreKnown() 164 google::protobuf::Message* scratch_space, in EqReformattedJson() 211 google::protobuf::Message* scratch_space) { in FormatJson()
|
/system/apex/apexer/ |
D | apex_manifest.py | 19 from google.protobuf.json_format import Parse 20 from google.protobuf.json_format import ParseError
|
/system/extras/libjsonpb/parse/include/jsonpb/ |
D | jsonpb.h | 31 google::protobuf::Message* message); 57 ErrorOr<std::string> MessageToJsonString(const google::protobuf::Message& message);
|
/system/iorap/tests/src/binder/ |
D | app_launch_event_test.cc | 33 inline bool ProtosEqual(const ::google::protobuf::Message& lhs, in ProtosEqual() 34 const ::google::protobuf::Message& rhs) { in ProtosEqual() 35 return ::google::protobuf::util::MessageDifferencer::Equals(lhs, rhs); in ProtosEqual() 38 inline bool ProtosEqual(const ::google::protobuf::MessageLite& lhs, in ProtosEqual() 39 const ::google::protobuf::MessageLite& rhs) { in ProtosEqual()
|
/system/security/keystore/ |
D | keystore_client_impl.cpp | 110 EncryptedData protobuf; in encryptWithAuthentication() local 111 protobuf.set_init_vector(init_vector); in encryptWithAuthentication() 112 protobuf.set_authentication_data(raw_authentication_data); in encryptWithAuthentication() 113 protobuf.set_encrypted_data(raw_encrypted_data); in encryptWithAuthentication() 114 if (!protobuf.SerializeToString(encrypted_data)) { in encryptWithAuthentication() 124 EncryptedData protobuf; in decryptWithAuthentication() local 125 if (!protobuf.ParseFromString(encrypted_data)) { in decryptWithAuthentication() 135 protobuf.init_vector() + protobuf.encrypted_data(), in decryptWithAuthentication() 136 protobuf.authentication_data(), &output_params, &output_data)) { in decryptWithAuthentication() 144 encrypt_params.Authorization(TAG_NONCE, protobuf.init_vector().data(), in decryptWithAuthentication() [all …]
|
/system/extras/perfprofd/ |
D | perfprofd_io.cc | 44 class FileCopyingOutputStream : public ::google::protobuf::io::CopyingOutputStream { 56 using google::protobuf::io::ZeroCopyOutputStream; 70 google::protobuf::int64 ByteCount() const override; 121 google::protobuf::int64 GzipOutputStream::ByteCount() const { in ByteCount() 264 google::protobuf::io::CopyingOutputStreamAdaptor cosa(&fcos); in SerializeProtobuf()
|
/system/extras/simpleperf/ |
D | cmd_report_sample.cpp | 42 class ProtobufFileWriter : public google::protobuf::io::CopyingOutputStream { 54 class ProtobufFileReader : public google::protobuf::io::CopyingInputStream { 135 google::protobuf::io::CodedOutputStream* coded_os_; 183 std::unique_ptr<google::protobuf::io::CopyingOutputStreamAdaptor> protobuf_os; in Run() 184 std::unique_ptr<google::protobuf::io::CodedOutputStream> protobuf_coded_os; in Run() 192 protobuf_os.reset(new google::protobuf::io::CopyingOutputStreamAdaptor( in Run() 195 new google::protobuf::io::CodedOutputStream(protobuf_os.get())); in Run() 303 google::protobuf::io::CopyingInputStreamAdaptor adaptor(&protobuf_reader); in DumpProtobufReport() 304 google::protobuf::io::CodedInputStream coded_is(&adaptor); in DumpProtobufReport()
|
/system/core/libprocessgroup/profiles/ |
D | test_vendor.cpp | 37 std::unique_ptr<google::protobuf::Message> CreateMessage() const override { in CreateMessage()
|
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/ |
D | CountryZonesFileSupport.java | 19 import com.google.protobuf.TextFormat;
|