Searched refs:android_logs (Results 1 – 5 of 5) sorted by relevance
1 select count(*) as cnt from android_logs union all2 select count(*) as cnt from android_logs where prio = 3 union all3 select count(*) as cnt from android_logs where prio > 4 union all4 select count(*) as cnt from android_logs where tag = 'screen_toggled' union all5 select count(*) as cnt from android_logs where tag like '%_pss' union all6 select count(*) as cnt from android_logs where msg like '%i2c_write%' union all7 select count(*) as cnt from android_logs where ts >= 1510113924391 and ts < 1512610021879;
1 create view v1 as select tag, count(*) from android_logs group by tag order by 2 desc limit 53 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;
1 select count(*) from android_logs;
30 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()
871 const AndroidLogs& android_logs() const { return android_log_; } in android_logs() function