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

Commit aeeda398 authored by Yi Kong's avatar Yi Kong Committed by Automerger Merge Worker
Browse files

Merge "profcollect: Update binder method names" am: 453966a2 am: f388bf48...

Merge "profcollect: Update binder method names" am: 453966a2 am: f388bf48 am: 1238f9f6 am: 7fadc9f8

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1593776

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I21ac3fd634098d29089fcb36d6a17bed2eb29714
parents 74113f42 7fadc9f8
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -102,7 +102,7 @@ public final class ProfcollectForwardingService extends SystemService {
            return false;
            return false;
        }
        }
        try {
        try {
            return !mIProfcollect.GetSupportedProvider().isEmpty();
            return !mIProfcollect.get_supported_provider().isEmpty();
        } catch (RemoteException e) {
        } catch (RemoteException e) {
            Log.e(LOG_TAG, e.getMessage());
            Log.e(LOG_TAG, e.getMessage());
            return false;
            return false;
@@ -191,7 +191,7 @@ public final class ProfcollectForwardingService extends SystemService {
            }
            }


            try {
            try {
                sSelfService.mIProfcollect.ProcessProfile();
                sSelfService.mIProfcollect.process(false);
            } catch (RemoteException e) {
            } catch (RemoteException e) {
                Log.e(LOG_TAG, e.getMessage());
                Log.e(LOG_TAG, e.getMessage());
            }
            }
@@ -234,7 +234,7 @@ public final class ProfcollectForwardingService extends SystemService {
                if (DEBUG) {
                if (DEBUG) {
                    Log.d(LOG_TAG, "Tracing on app launch event: " + packageName);
                    Log.d(LOG_TAG, "Tracing on app launch event: " + packageName);
                }
                }
                mIProfcollect.TraceOnce("applaunch");
                mIProfcollect.trace_once("applaunch");
            } catch (RemoteException e) {
            } catch (RemoteException e) {
                Log.e(LOG_TAG, e.getMessage());
                Log.e(LOG_TAG, e.getMessage());
            }
            }
@@ -296,7 +296,7 @@ public final class ProfcollectForwardingService extends SystemService {
        }
        }


        try {
        try {
            mIProfcollect.CreateProfileReport();
            mIProfcollect.report();
        } catch (RemoteException e) {
        } catch (RemoteException e) {
            Log.e(LOG_TAG, e.getMessage());
            Log.e(LOG_TAG, e.getMessage());
        }
        }