Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/power/
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
131 recordCheckPointInternal(callerProcessId == Process.myPid() in recordCheckPointInternal()
133 : new BinderCheckPoint(timestamp, callerProcessId, reason)); in recordCheckPointInternal()
134 Slog.v(TAG, "Binder shutdown checkpoint recorded with pid=" + callerProcessId); in recordCheckPointInternal()
274 BinderCheckPoint(long timestamp, int callerProcessId, @Nullable String reason) { in BinderCheckPoint() argument
276 mCallerProcessId = callerProcessId; in BinderCheckPoint()