Searched defs:end_time (Results 1 - 25 of 45) sorted by relevance

12

/external/chromium/testing/gtest/samples/
H A Dsample5_unittest.cc75 const time_t end_time = time(NULL); local
80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long.";
/external/gtest/samples/
H A Dsample5_unittest.cc75 const time_t end_time = time(NULL); local
80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long.";
/external/oprofile/opjitconv/
H A Dconversion.c43 unsigned long long start_time, unsigned long long end_time)
57 end_time)) == OP_JIT_CONV_FAIL)
42 op_jit_convert(struct op_jitdump_info file_info, char const * elffile, unsigned long long start_time, unsigned long long end_time) argument
H A Dparse_dump.c27 unsigned long long end_time)
54 entry->life_end = end_time;
86 static void parse_code_unload(void const * ptr, unsigned long long end_time) argument
102 entry->life_end == end_time) {
117 unsigned long long end_time)
126 debug_line->life_end = end_time;
138 unsigned long long end_time)
152 if (parse_code_load(rec, rec->total_size, end_time)) {
159 parse_code_unload(rec, end_time);
175 parse_code_debug_info(rec, end, end_time);
26 parse_code_load(void const * ptr_arg, int size, unsigned long long end_time) argument
116 parse_code_debug_info(void const * ptr, void const * end, unsigned long long end_time) argument
137 parse_entries(void const * ptr, void const * end, unsigned long long end_time) argument
239 parse_all(void const * start, void const * end, unsigned long long end_time) argument
[all...]
H A Dopjitconv.c250 unsigned long long end_time,
386 rc = op_jit_convert(dmp_info, tmp_elffile, start_time, end_time);
481 unsigned long long start_time, unsigned long long end_time)
561 start_time, end_time, tmp_conv_dir);
586 unsigned long long start_time, end_time; local
619 end_time = atol(argv[3]);
621 if (start_time > end_time) {
626 start_time, end_time);
627 rc = op_process_jit_dumpfiles(session_dir, start_time, end_time);
247 process_jit_dumpfile(char const * dmp_pathname, struct list_head * anon_sample_dirs, unsigned long long start_time, unsigned long long end_time, char * tmp_conv_dir) argument
480 op_process_jit_dumpfiles(char const * session_dir, unsigned long long start_time, unsigned long long end_time) argument
/external/protobuf/gtest/samples/
H A Dsample5_unittest.cc75 const time_t end_time = time(NULL); local
80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long.";
/external/chromium/chrome/browser/history/
H A Ddownload_database.cc189 time_t end_time = delete_end.ToTimeT(); local
193 end_time ? end_time : std::numeric_limits<int64>::max());
H A Dvisit_database.cc247 base::Time end_time,
260 int64 end = end_time.ToInternalValue();
271 base::Time end_time,
287 int64 end = end_time.ToInternalValue();
299 base::Time end_time,
318 int64 end = end_time.ToInternalValue();
246 GetAllVisitsInRange(base::Time begin_time, base::Time end_time, int max_results, VisitVector* visits) argument
269 GetVisitsInRangeForTransition( base::Time begin_time, base::Time end_time, int max_results, PageTransition::Type transition, VisitVector* visits) argument
298 GetVisibleVisitsInRange(base::Time begin_time, base::Time end_time, int max_count, VisitVector* visits) argument
H A Dexpire_history_backend.cc37 virtual bool Read(Time end_time, HistoryDatabase* db, argument
42 db->GetAllVisitsInRange(Time(), end_time, max_visits, visits); local
53 // * |end_time| is advanced forward by a constant (kEarlyExpirationAdvanceDay),
57 virtual bool Read(Time end_time, HistoryDatabase* db, argument
63 // Advance |end_time| to expire early.
64 Time early_end_time = end_time +
140 base::Time begin_time, end_time; member in struct:history::ExpireHistoryBackend::DeleteDependencies
225 const std::set<GURL>& restrict_urls, Time begin_time, Time end_time) {
231 text_db_->DeleteFromUncommitted(restrict_urls, begin_time, end_time);
236 main_db_->GetAllVisitsInRange(begin_time, end_time,
224 ExpireHistoryBetween( const std::set<GURL>& restrict_urls, Time begin_time, Time end_time) argument
269 ArchiveHistoryBefore(Time end_time) argument
605 ArchiveSomeOldHistory( base::Time end_time, const ExpiringVisitsReader* reader, int max_visits) argument
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Dtesting.h81 struct timeval end_time; local
82 gettimeofday(&end_time, NULL);
85 (1000000 * (end_time.tv_sec - start_time_.tv_sec))
86 + end_time.tv_usec - start_time_.tv_usec;
129 LARGE_INTEGER end_time;
130 QueryPerformanceCounter(&end_time);
133 end_time.QuadPart - start_time_.QuadPart);
/external/chromium/chrome/browser/metrics/
H A Dhistogram_synchronizer.cc57 TimeTicks end_time = start + wait_time; local
61 while (synchronous_renderers_pending_ > 0 && TimeTicks::Now() < end_time) {
62 wait_time = end_time - TimeTicks::Now();
H A Dthread_watcher_unittest.cc155 TimeTicks end_time = TimeTicks::Now() + wait_time; local
158 while (wait_state_ != expected_state && TimeTicks::Now() < end_time)
159 state_changed_.TimedWait(end_time - TimeTicks::Now());
177 TimeTicks end_time = TimeTicks::Now() + wait_time; local
181 TimeTicks::Now() < end_time) {
182 TimeDelta state_change_wait_time = end_time - TimeTicks::Now();
206 TimeTicks end_time = TimeTicks::Now() + wait_time; local
210 TimeTicks::Now() < end_time) {
211 TimeDelta state_change_wait_time = end_time - TimeTicks::Now();
/external/dbus/dbus/
H A Ddbus-sysdeps-pthread.c267 struct timespec end_time; local
287 end_time.tv_sec = time_now.tv_sec + timeout_milliseconds / 1000;
288 end_time.tv_nsec = (time_now.tv_usec + (timeout_milliseconds % 1000) * 1000) * 1000;
289 if (end_time.tv_nsec > 1000*1000*1000)
291 end_time.tv_sec += 1;
292 end_time.tv_nsec -= 1000*1000*1000;
297 result = pthread_cond_timedwait (&pcond->cond, &pmutex->lock, &end_time);
/external/oprofile/daemon/
H A Dinit.c157 unsigned long long end_time = 0ULL; local
174 end_time = tv.tv_sec;
175 sprintf(end_time_str, "%llu", end_time);
/external/chromium/chrome/browser/autocomplete/
H A Dhistory_quick_provider.cc73 base::TimeTicks end_time = base::TimeTicks::Now(); local
78 counter->Add(static_cast<int>((end_time - start_time).InMilliseconds()));
/external/chromium/chrome/browser/extensions/
H A Dextension_history_api.cc279 EXTENSION_FUNCTION_VALIDATE(GetTimeFromValue(value, &options.end_time));
355 base::Time end_time; local
356 EXTENSION_FUNCTION_VALIDATE(GetTimeFromValue(value, &end_time));
363 end_time,
/external/chromium/chrome/browser/ui/webui/
H A Dhistory2_ui.cc161 options.end_time = base::Time::Now().LocalMidnight();
162 options.end_time -= base::TimeDelta::FromDays(day - 1);
214 base::Time end_time = begin_time + base::TimeDelta::FromDays(1); local
232 urls, begin_time, end_time, &cancelable_delete_consumer_,
345 options.end_time = base::Time();
356 options.end_time = base::Time::FromLocalExploded(exploded);
H A Dhistory_ui.cc161 options.end_time = base::Time::Now().LocalMidnight();
162 options.end_time -= base::TimeDelta::FromDays(day - 1);
214 base::Time end_time = begin_time + base::TimeDelta::FromDays(1); local
232 urls, begin_time, end_time, &cancelable_delete_consumer_,
333 options.end_time = base::Time();
344 options.end_time = base::Time::FromLocalExploded(exploded);
H A Dntp_resource_cache.cc145 Time end_time = Time::FromDoubleT(end); local
146 return start_time < Time::Now() && end_time > Time::Now();
/external/chromium/net/disk_cache/
H A Ddisk_cache_test_base.cc107 const base::Time end_time) {
109 int rv = cache_->DoomEntriesBetween(initial_time, end_time, &cb);
106 DoomEntriesBetween(const base::Time initial_time, const base::Time end_time) argument
H A Din_flight_backend_io.cc80 const base::Time end_time) {
83 end_time_ = end_time;
327 const base::Time end_time,
330 operation->DoomEntriesBetween(initial_time, end_time);
79 DoomEntriesBetween(const base::Time initial_time, const base::Time end_time) argument
326 DoomEntriesBetween(const base::Time initial_time, const base::Time end_time, CompletionCallback* callback) argument
H A Dmem_backend_impl.cc166 const base::Time end_time,
168 if (DoomEntriesBetween(initial_time, end_time))
239 const Time end_time) {
240 if (end_time.is_null())
243 DCHECK(end_time >= initial_time);
248 // and start dooming items before the end_time, and will stop once it reaches
257 if (node->GetLastUsed() < end_time)
165 DoomEntriesBetween(const base::Time initial_time, const base::Time end_time, CompletionCallback* callback) argument
238 DoomEntriesBetween(const Time initial_time, const Time end_time) argument
/external/chromium/chrome/browser/web_resource/
H A Dpromo_resource_service.cc251 base::Time end_time; local
255 ASCIIToWide(promo_end_string).c_str(), &end_time)) {
261 promo_end = end_time.ToDoubleT();
388 base::Time end_time; local
392 ASCIIToWide(logo_end_string).c_str(), &end_time)) {
394 logo_end = end_time.ToDoubleT();
/external/srec/srec/include/
H A Dsrec.h105 frameID end_time; /* end time of the word just observed, includes trailing silence */ member in struct:word_token_t
/external/blktrace/btt/
H A Dglobals.h148 double start_time, last_plug, plugged_time, end_time; member in struct:d_info

Completed in 365 milliseconds

12