OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kMaxFailedUpload
(Results
1 - 2
of
2
) sorted by null
/system/core/metricsd/uploader/
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.cc
41
const int UploadService::
kMaxFailedUpload
= 10;
245
if (failed_upload_count_.Get() >
kMaxFailedUpload
) {
246
LOG(INFO) << "log failed more than " <<
kMaxFailedUpload
<< " times.";
Completed in 680 milliseconds