HomeSort by relevance Sort by last modified time
    Searched refs:start_time (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /external/chromium/chrome/browser/history/
download_types.cc 9 base::Time start_time,
17 start_time(start_time),
history_browsertest.cc 22 void Checkpoint(const char* message, const base::TimeTicks& start_time) {
24 << (base::TimeTicks::Now() - start_time).InMilliseconds()
155 base::TimeTicks start_time = base::TimeTicks::Now(); local
162 Checkpoint("Before waiting for history to load", start_time);
164 Checkpoint("After waiting for history to load", start_time);
166 Checkpoint("After checking history", start_time);
169 Checkpoint("After NavigateToURL", start_time);
171 Checkpoint("After waiting for history backend to run", start_time);
173 Checkpoint("After second check", start_time);
180 base::TimeTicks start_time = base::TimeTicks::Now() local
    [all...]
download_create_info.h 27 base::Time start_time,
54 base::Time start_time; member in struct:DownloadCreateInfo
download_create_info.cc 14 base::Time start_time,
23 start_time(start_time),
download_database.cc 22 // start_time When the download was started.
70 "start_time INTEGER NOT NULL,"
88 "SELECT id, full_path, url, start_time, received_bytes, "
91 "ORDER BY start_time"));
101 info.start_time = base::Time::FromTimeT(statement.ColumnInt64(3));
151 "(full_path, url, start_time, received_bytes, total_bytes, state) "
158 statement.BindInt64(2, info.start_time.ToTimeT());
183 "DELETE FROM downloads WHERE start_time >= ? AND start_time < ? "
188 time_t start_time = delete_begin.ToTimeT()
    [all...]
  /external/chromium-trace/trace-viewer/examples/stream_server/handlers/
stream_wsh.py 12 def make_slice(start_time, elapsed_time, label, last):
16 out.append('\"s\": {0},'.format(start_time))
17 out.append('\"e\": {0}'.format(start_time+elapsed_time))
48 def make_count(start_time, value, last):
51 out.append('\"t\": {0},'.format(start_time))
89 start_time = 0;
91 msg = make_thread_command(start_time, 'apple')
93 msg = make_thread_command(start_time+1, 'banana')
95 msg = make_thread_command(start_time+2, 'cherry')
97 msg = make_counter_command(start_time+2, 'Base', 'Bytes'
    [all...]
  /external/chromium/chrome/browser/ui/views/
find_bar_host_interactive_uitest.cc 28 void Checkpoint(const char* message, const base::TimeTicks& start_time) {
30 << (base::TimeTicks::Now() - start_time).InMilliseconds()
185 base::TimeTicks start_time = base::TimeTicks::Now();
186 Checkpoint("Test starting", start_time);
194 Checkpoint("Navigate", start_time);
200 Checkpoint("Show Find bar", start_time);
205 Checkpoint("Search for 'a'", start_time);
214 Checkpoint("Delete 'a'", start_time);
223 Checkpoint("Close find bar", start_time);
229 Checkpoint("Show Find bar", start_time);
    [all...]
browser_actions_container_browsertest.cc 76 base::TimeTicks start_time = base::TimeTicks::Now(); local
88 << (base::TimeTicks::Now() - start_time).InMilliseconds()
101 << (base::TimeTicks::Now() - start_time).InMilliseconds()
116 << (base::TimeTicks::Now() - start_time).InMilliseconds()
124 << (base::TimeTicks::Now() - start_time).InMilliseconds()
134 << (base::TimeTicks::Now() - start_time).InMilliseconds()
146 << (base::TimeTicks::Now() - start_time).InMilliseconds()
156 << (base::TimeTicks::Now() - start_time).InMilliseconds()
166 << (base::TimeTicks::Now() - start_time).InMilliseconds()
174 << (base::TimeTicks::Now() - start_time).InMilliseconds(
    [all...]
  /external/icu4c/test/perf/ucnvavailperf/
ucnvavailperf.cpp 113 UTimer start_time; local
114 utimer_getTime(&start_time);
117 double elapsed = utimer_getElapsedSeconds(&start_time);
  /external/tremolo/Tremolo/
misc.c 62 long start_time=-1; variable
115 if(start_time==-1)start_time=(tv.tv_sec*1000)+(tv.tv_usec/1000);
121 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
124 -start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
129 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
131 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
156 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
158 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
169 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000)
    [all...]
  /external/linux-tools-perf/
builtin-timechart.c 85 u64 start_time; member in struct:per_pid
98 u64 start_time; member in struct:per_pidcomm
128 u64 start_time; member in struct:cpu_sample
143 u64 start_time; member in struct:power_event
222 p->start_time = timestamp;
224 p->current->start_time = timestamp;
259 sample->start_time = start;
271 if (c->start_time == 0 || c->start_time > start)
272 c->start_time = start
    [all...]