OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TimeMarker
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/chromeos/
boot_times_loader.h
94
class
TimeMarker
{
96
TimeMarker
(const std::string& name, bool send_to_uma)
105
bool operator<(const
TimeMarker
& other) const {
110
friend class std::vector<
TimeMarker
>;
128
std::vector<
TimeMarker
> login_times);
129
static void AddMarker(std::vector<
TimeMarker
>* vector,
TimeMarker
marker);
142
std::vector<
TimeMarker
> login_time_markers_;
143
std::vector<
TimeMarker
> logout_time_markers_;
boot_times_loader.cc
160
std::vector<
TimeMarker
> login_times) {
185
TimeMarker
tm = login_times[i];
302
AddMarker(&login_time_markers_,
TimeMarker
(marker_name, send_to_uma));
307
AddMarker(&logout_time_markers_,
TimeMarker
(marker_name, send_to_uma));
311
void BootTimesLoader::AddMarker(std::vector<
TimeMarker
>* vector,
312
TimeMarker
marker)
/external/chromium/chrome/browser/chromeos/
boot_times_loader.h
129
class
TimeMarker
{
131
TimeMarker
(const std::string& name, bool send_to_uma)
140
friend class std::vector<
TimeMarker
>;
158
const std::vector<
TimeMarker
> login_times);
169
std::vector<
TimeMarker
> login_time_markers_;
170
std::vector<
TimeMarker
> logout_time_markers_;
boot_times_loader.cc
253
const std::vector<
TimeMarker
> login_times) {
273
TimeMarker
tm = login_times[i];
352
login_time_markers_.push_back(
TimeMarker
(marker_name, send_to_uma));
357
logout_time_markers_.push_back(
TimeMarker
(marker_name, send_to_uma));
Completed in 266 milliseconds