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

  /system/extras/perfprofd/
perfprofd_io.h 28 bool SerializeProtobuf(android::perfprofd::PerfprofdRecord* encodedProfile,
31 bool SerializeProtobuf(android::perfprofd::PerfprofdRecord* encodedProfile,
perfprofd_threaded_handler.h 143 virtual bool ResultHandler(android::perfprofd::PerfprofdRecord* encodedProfile,
146 if (encodedProfile == nullptr) {
152 if (!dropbox::SendToDropbox(encodedProfile, config->destination_directory, &error_msg)) {
159 if (encodedProfile == nullptr) {
165 if (!SerializeProtobuf(encodedProfile, path.c_str(), config->compress)) {
perfprofd_io.cc 260 bool SerializeProtobuf(android::perfprofd::PerfprofdRecord* encodedProfile,
281 bool serialized = encodedProfile->SerializeToZeroCopyStream(out);
296 bool SerializeProtobuf(PerfprofdRecord* encodedProfile,
306 return SerializeProtobuf(encodedProfile, std::move(fd), compress);
perfprofdcore.cc 416 ProtoUniquePtr encodedProfile(
418 if (encodedProfile == nullptr) {
422 // All of the info in 'encodedProfile' is derived from the perf.data file;
424 annotate_encoded_perf_profile(encodedProfile.get(), config, cpu_utilization);
426 return encodedProfile;
435 ProtoUniquePtr encodedProfile = encode_to_proto(data_file_path,
443 if (encodedProfile == nullptr || encodedProfile->perf_data().events_size() == 0) {
447 return android::perfprofd::SerializeProtobuf(encodedProfile.get(),
  /system/extras/perfprofd/tests/
perfprofd_test.cc 376 android::perfprofd::PerfprofdRecord& encodedProfile)
440 encodedProfile.ParseFromString(encoded);
716 void VerifyBasicCannedProfile(const android::perfprofd::PerfprofdRecord& encodedProfile) {
717 ASSERT_TRUE(encodedProfile.has_perf_data()) << test_logger.JoinTestLog(" ");
718 const quipper::PerfDataProto& perf_data = encodedProfile.perf_data();
862 android::perfprofd::PerfprofdRecord encodedProfile;
863 readEncodedProfile(dest_dir, false, encodedProfile);
865 VerifyBasicCannedProfile(encodedProfile);
897 android::perfprofd::PerfprofdRecord encodedProfile;
898 readEncodedProfile(dest_dir, true, encodedProfile);
    [all...]
  /system/extras/perfprofd/dropbox/
dropbox.cc 44 bool WriteDropboxFile(android::perfprofd::PerfprofdRecord* encodedProfile,
83 if (!SerializeProtobuf(encodedProfile, std::move(tmp_fd), kCompress)) {

Completed in 61 milliseconds