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

  /system/core/metricsd/uploader/
upload_service.cc 41 const int UploadService::kMaxFailedUpload = 10;
245 if (failed_upload_count_.Get() > kMaxFailedUpload) {
246 LOG(INFO) << "log failed more than " << kMaxFailedUpload << " times.";
upload_service.h 124 // If a staged log fails to upload more than kMaxFailedUpload times, it
126 static const int kMaxFailedUpload;
158 // Remove the staged log iff the upload failed more than |kMaxFailedUpload|.
upload_service_test.cc 129 for (int i = 0; i < UploadService::kMaxFailedUpload; i++) {
139 for (int i = 0; i < UploadService::kMaxFailedUpload; i++) {

Completed in 59 milliseconds