Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e0a5ab5d authored by Mark Salyzyn's avatar Mark Salyzyn Committed by Gerrit Code Review
Browse files

Merge "logcat: use liblog to determine -b all list"

parents a48decd4 d0bd1b1b
Loading
Loading
Loading
Loading
+20 −25
Original line number Original line Diff line number Diff line
@@ -455,36 +455,31 @@ int main(int argc, char **argv)
                        delete dev;
                        delete dev;
                    }
                    }


                    dev = devices = new log_device_t("main", false, 'm');
                    devices = dev = NULL;
                    android::g_devCount = 1;
                    android::g_devCount = 0;
                    if (android_name_to_log_id("system") == LOG_ID_SYSTEM) {
                    needBinary = false;
                        dev->next = new log_device_t("system", false, 's');
                    for(int i = LOG_ID_MIN; i < LOG_ID_MAX; ++i) {
                        if (dev->next) {
                        const char *name = android_log_id_to_name((log_id_t)i);
                            dev = dev->next;
                        log_id_t log_id = android_name_to_log_id(name);
                            android::g_devCount++;

                        }
                        if (log_id != (log_id_t)i) {
                    }
                            continue;
                    if (android_name_to_log_id("radio") == LOG_ID_RADIO) {
                        dev->next = new log_device_t("radio", false, 'r');
                        if (dev->next) {
                            dev = dev->next;
                            android::g_devCount++;
                        }
                        }

                        bool binary = strcmp(name, "events") == 0;
                        log_device_t* d = new log_device_t(name, binary, *name);

                        if (dev) {
                            dev->next = d;
                            dev = d;
                        } else {
                            devices = dev = d;
                        }
                        }
                    if (android_name_to_log_id("events") == LOG_ID_EVENTS) {
                        dev->next = new log_device_t("events", true, 'e');
                        if (dev->next) {
                            dev = dev->next;
                        android::g_devCount++;
                        android::g_devCount++;
                        if (binary) {
                            needBinary = true;
                            needBinary = true;
                        }
                        }
                    }
                    }
                    if (android_name_to_log_id("crash") == LOG_ID_CRASH) {
                        dev->next = new log_device_t("crash", false, 'c');
                        if (dev->next) {
                            android::g_devCount++;
                        }
                    }
                    break;
                    break;
                }
                }