Searched refs:callerProcessId (Results 1 – 1 of 1) sorted by relevance
98 public static void recordCheckPoint(int callerProcessId, @Nullable String reason) { in recordCheckPoint() argument99 INSTANCE.recordCheckPointInternal(callerProcessId, reason); in recordCheckPoint()129 void recordCheckPointInternal(int callerProcessId, @Nullable String reason) { in recordCheckPointInternal() argument130 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() argument275 mCallerProcessId = callerProcessId; in BinderCheckPoint()