Home
last modified time | relevance | path

Searched refs:android_logs (Results 1 – 5 of 5) sorted by relevance

/external/perfetto/test/trace_processor/
Dandroid_log_counts.sql1 select count(*) as cnt from android_logs union all
2 select count(*) as cnt from android_logs where prio = 3 union all
3 select count(*) as cnt from android_logs where prio > 4 union all
4 select count(*) as cnt from android_logs where tag = 'screen_toggled' union all
5 select count(*) as cnt from android_logs where tag like '%_pss' union all
6 select count(*) as cnt from android_logs where msg like '%i2c_write%' union all
7 select count(*) as cnt from android_logs where ts >= 1510113924391 and ts < 1512610021879;
Dandroid_log_msgs.sql1 create view v1 as select tag, count(*) from android_logs group by tag order by 2 desc limit 5
3 create view v2 as select tag, count(*) from android_logs group by tag order by 2 asc limit 5;
5 create view v3 as select tag, count(*) from android_logs where msg like '%wakelock%' group by tag;
7 create view v4 as select msg, 1 from android_logs limit 10;
Dandroid_log_ring_buffer_mode.sql1 select count(*) from android_logs;
/external/perfetto/src/trace_processor/
Dandroid_logs_table.cc30 const auto& alog = storage_->android_logs(); in CreateStorageSchema()
44 return static_cast<uint32_t>(storage_->android_logs().size()); in RowCount()
49 info->estimated_cost = static_cast<uint32_t>(storage_->android_logs().size()); in BestIndex()
Dtrace_storage.h871 const AndroidLogs& android_logs() const { return android_log_; } in android_logs() function