Home
last modified time | relevance | path

Searched refs:callerProcessId (Results 1 – 1 of 1) sorted by relevance

/aosp12/frameworks/base/services/core/java/com/android/server/power/
H A DShutdownCheckPoints.java98 public static void recordCheckPoint(int callerProcessId, @Nullable String reason) { in recordCheckPoint() argument
99 INSTANCE.recordCheckPointInternal(callerProcessId, reason); in recordCheckPoint()
129 void recordCheckPointInternal(int callerProcessId, @Nullable String reason) { in recordCheckPointInternal() argument
130 recordCheckPointInternal(callerProcessId == Process.myPid() in recordCheckPointInternal()
132 : new BinderCheckPoint(mInjector, callerProcessId, reason)); in recordCheckPointInternal()
133 Slog.v(TAG, "Binder shutdown checkpoint recorded with pid=" + callerProcessId); in recordCheckPointInternal()
273 BinderCheckPoint(Injector injector, int callerProcessId, @Nullable String reason) { in BinderCheckPoint() argument
275 mCallerProcessId = callerProcessId; in BinderCheckPoint()