summaryrefslogtreecommitdiff
path: root/services/profcollect
diff options
context:
space:
mode:
authorYi Kong <yikong@google.com>2021-01-27 17:59:58 +0800
committerYi Kong <yikong@google.com>2021-02-18 16:32:46 +0800
commit8d787f8774540a15a4b77a75c946264025beb94a (patch)
tree2dda6cca554c89bc60c0f9c6334328f1319b81a6 /services/profcollect
parent8bb0310bbeec9456b79076d191c71f27acd012df (diff)
profcollect: Update binder method names
Test: build Change-Id: I8504644ac73ee0724fba09771f26c4ba2911fa99
Diffstat (limited to 'services/profcollect')
-rw-r--r--services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java b/services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java
index 0d878b401bee..a262939c0ef9 100644
--- a/services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java
+++ b/services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java
@@ -102,7 +102,7 @@ public final class ProfcollectForwardingService extends SystemService {
return false;
}
try {
- return !mIProfcollect.GetSupportedProvider().isEmpty();
+ return !mIProfcollect.get_supported_provider().isEmpty();
} catch (RemoteException e) {
Log.e(LOG_TAG, e.getMessage());
return false;
@@ -191,7 +191,7 @@ public final class ProfcollectForwardingService extends SystemService {
}
try {
- sSelfService.mIProfcollect.ProcessProfile();
+ sSelfService.mIProfcollect.process(false);
} catch (RemoteException e) {
Log.e(LOG_TAG, e.getMessage());
}
@@ -234,7 +234,7 @@ public final class ProfcollectForwardingService extends SystemService {
if (DEBUG) {
Log.d(LOG_TAG, "Tracing on app launch event: " + packageName);
}
- mIProfcollect.TraceOnce("applaunch");
+ mIProfcollect.trace_once("applaunch");
} catch (RemoteException e) {
Log.e(LOG_TAG, e.getMessage());
}
@@ -296,7 +296,7 @@ public final class ProfcollectForwardingService extends SystemService {
}
try {
- mIProfcollect.CreateProfileReport();
+ mIProfcollect.report();
} catch (RemoteException e) {
Log.e(LOG_TAG, e.getMessage());
}