• Home
  • Raw
  • Download

Lines Matching full:logs

27 // A LogStore implementation for storing UMA logs.
28 // This implementation keeps track of two types of logs, initial and ongoing,
29 // each stored in UnsentLogStore. It prioritizes staging initial logs over
30 // ongoing logs.
32 // An alternate log store can be set to persist ongoing logs. For example, this
33 // can be used to separate user logs from device logs on Chrome OS. If set, all
34 // ongoing logs will be written to this alternate log store. Ongoing logs from
35 // the alternate log store will be prioritized over ongoing logs from the native
36 // ongoing log store when logs are staged. If an alternate log store is bound,
37 // then logs will be prioritized in the following order: initial, alternate
54 // persisting logs to local storage. |signing_key| is used to generate a
91 // Deletes all logs, in memory and on disk.
103 // Binds an alternate log store to be managed by |this|. All ongoing logs
115 // Unsets the alternate log store by flushing all existing logs to persistent
146 // Returns true if alternate log store is set and it has unsent logs.
155 // Tracks whether unsent logs (if any) have been loaded from the serializer.
161 // Logs stored with the INITIAL_STABILITY_LOG type that haven't been sent yet.
162 // These logs will be staged first when staging new logs.
164 // Logs stored with the ONGOING_LOG type that haven't been sent yet.
166 // Alternate place to store logs stored with ONGOING_LOG type that haven't
167 // been sent yet. If initialized, all logs of type ONGOING_LOG will be stored