OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rotation_index_
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/base/
filerotatingstream.h
77
size_t GetRotationIndex() const { return
rotation_index_
; }
79
void SetRotationIndex(size_t index) {
rotation_index_
= index; }
120
size_t
rotation_index_
;
member in class:rtc::FileRotatingStream
filerotatingstream.cc
55
rotation_index_
(0),
65
rotation_index_
= num_files - 1;
281
// Rotates the files by deleting the file at |
rotation_index_
|, which is the
284
RTC_DCHECK_LT(
rotation_index_
, file_names_.size());
285
std::string file_to_delete = file_names_[
rotation_index_
];
291
for (auto i =
rotation_index_
; i > 0; --i) {
Completed in 515 milliseconds