HomeSort by relevance Sort by last modified time
    Searched refs:encoded_log (Results 1 - 3 of 3) sorted by null

  /system/core/metricsd/uploader/
metrics_log.cc 33 std::string encoded_log; local
34 if (!base::ReadFileToString(saved_log, &encoded_log)) {
40 if (!uma_proto()->ParseFromString(encoded_log)) {
55 std::string encoded_log; local
56 GetEncodedLog(&encoded_log);
58 if (static_cast<int>(encoded_log.size()) !=
59 base::WriteFile(path, encoded_log.data(), encoded_log.size())) {
metrics_log_base.h 81 // Fills |encoded_log| with the serialized protobuf representation of the
83 void GetEncodedLog(std::string* encoded_log);
metrics_log_base.cc 102 void MetricsLogBase::GetEncodedLog(std::string* encoded_log) {
104 uma_proto_.SerializeToString(encoded_log);

Completed in 211 milliseconds