Searched refs:originStack (Results 1 – 5 of 5) sorted by relevance
20 public ServiceConnectionLeakedViolation(Throwable originStack) { in ServiceConnectionLeakedViolation() argument22 setStackTrace(originStack.getStackTrace()); in ServiceConnectionLeakedViolation()
20 public IntentReceiverLeakedViolation(Throwable originStack) { in IntentReceiverLeakedViolation() argument22 setStackTrace(originStack.getStackTrace()); in IntentReceiverLeakedViolation()
20 public WebViewMethodCalledOnWrongThreadViolation(Throwable originStack) { in WebViewMethodCalledOnWrongThreadViolation() argument22 setStackTrace(originStack.getStackTrace()); in WebViewMethodCalledOnWrongThreadViolation()
21 public SqliteObjectLeakedViolation(String message, Throwable originStack) { in SqliteObjectLeakedViolation() argument23 initCause(originStack); in SqliteObjectLeakedViolation()
2059 public static void onSqliteObjectLeaked(String message, Throwable originStack) { in onSqliteObjectLeaked() argument2060 onVmPolicyViolation(new SqliteObjectLeakedViolation(message, originStack)); in onSqliteObjectLeaked()2065 public static void onWebViewMethodCalledOnWrongThread(Throwable originStack) { in onWebViewMethodCalledOnWrongThread() argument2066 onVmPolicyViolation(new WebViewMethodCalledOnWrongThreadViolation(originStack)); in onWebViewMethodCalledOnWrongThread()2070 public static void onIntentReceiverLeaked(Throwable originStack) { in onIntentReceiverLeaked() argument2071 onVmPolicyViolation(new IntentReceiverLeakedViolation(originStack)); in onIntentReceiverLeaked()2075 public static void onServiceConnectionLeaked(Throwable originStack) { in onServiceConnectionLeaked() argument2076 onVmPolicyViolation(new ServiceConnectionLeakedViolation(originStack)); in onServiceConnectionLeaked()2173 public static void onVmPolicyViolation(Violation originStack) { in onVmPolicyViolation() argument2174 onVmPolicyViolation(originStack, false); in onVmPolicyViolation()