Lines Matching refs:id

27     log_id_for_each(id) {
28 mSizes[id] = 0;
29 mElements[id] = 0;
30 mDroppedElements[id] = 0;
31 mSizesTotal[id] = 0;
32 mElementsTotal[id] = 0;
205 std::string UidEntry::formatHeader(const std::string &name, log_id_t id) const {
206 bool isprune = worstUidEnabledForLogid(id);
208 name.c_str(), android_log_id_to_name(id)),
216 std::string UidEntry::format(const LogStatistics &stat, log_id_t id) const {
230 if (worstUidEnabledForLogid(id)) {
232 for (LogStatistics::uidTable_t::const_iterator it = stat.uidTable[id].begin();
233 it != stat.uidTable[id].end(); ++it) {
236 size_t sizes = stat.sizes(id);
237 size_t totalSize = stat.sizesTotal(id);
238 size_t totalElements = stat.elementsTotal(id);
293 = stat.pidSystemTable[id].sort(uid, (pid_t)0, maximum_sorted_entries);
312 byPid += entry->format(stat, id);
324 std::string PidEntry::formatHeader(const std::string &name, log_id_t /* id */) const {
333 std::string PidEntry::format(const LogStatistics &stat, log_id_t /* id */) const {
361 std::string TidEntry::formatHeader(const std::string &name, log_id_t /* id */) const {
370 std::string TidEntry::format(const LogStatistics &stat, log_id_t /* id */) const {
401 std::string TagEntry::formatHeader(const std::string &name, log_id_t id) const {
402 bool isprune = worstUidEnabledForLogid(id);
411 std::string TagEntry::format(const LogStatistics & /* stat */, log_id_t /* id */) const {
446 log_id_for_each(id) {
447 if (!(logMask & (1 << id))) {
455 android_log_id_to_name(id));
462 log_id_for_each(id) {
463 if (!(logMask & (1 << id))) {
471 sizesTotal(id),
472 elementsTotal(id));
479 log_id_for_each(id) {
480 if (!(logMask & (1 << id))) {
484 size_t els = elements(id);
491 sizes(id), els);
502 log_id_for_each(id) {
503 if (!(logMask & (1 << id))) {
510 output += uidTable[id].format(*this, uid, pid, name, id);