|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use CodePosition | |
|---|---|
| com.google.testing.threadtester | |
| Uses of CodePosition in com.google.testing.threadtester |
|---|
| Methods in com.google.testing.threadtester that return CodePosition | |
|---|---|
CodePosition |
ClassInstrumentation.afterCall(Method caller,
Method called)
Returns a CodePosition just after a call made within a method. |
CodePosition |
ClassInstrumentation.afterCall(String caller,
String called)
Returns a CodePosition just after a call made within a method. |
CodePosition |
ClassInstrumentation.afterSync(Method method,
Object syncTarget)
Returns a CodePosition representing the end of a synchronized block, after the lock has been released |
CodePosition |
ClassInstrumentation.afterSync(String methodName,
Object syncTarget)
Returns a CodePosition representing the end of a synchronized block, after the lock has been released |
CodePosition |
ClassInstrumentation.atMethodEnd(Method method)
Returns a CodePosition representing the end of a method, after all of the code in the method has executed. |
CodePosition |
ClassInstrumentation.atMethodEnd(String methodName)
Returns a CodePosition representing the end of a method, after all of the code in the method has executed. |
CodePosition |
ClassInstrumentation.atMethodStart(Method method)
Returns a CodePosition representing the start of a method, before any of the code in the method executes. |
CodePosition |
ClassInstrumentation.atMethodStart(String methodName)
Returns a CodePosition representing the start of a method, before any of the code in the method executes. |
CodePosition |
ClassInstrumentation.beforeCall(Method caller,
Method called)
Returns a CodePosition just before a call made within a method. |
CodePosition |
ClassInstrumentation.beforeCall(String caller,
String called)
Returns a CodePosition just before a call to a target method from within the main method. |
CodePosition |
ClassInstrumentation.beforeSync(Method method,
Object syncTarget)
Returns a CodePosition representing the start of a synchronized block, before the lock has beebn taken. |
CodePosition |
ClassInstrumentation.beforeSync(String methodName,
Object syncTarget)
Returns a CodePosition representing the start of a synchronized block, before the lock has beebn taken. |
CodePosition |
MethodRecorder.position()
Creates a new CodePosition corresponding to the last methods called on the control object, and optionally on a target object. |
| Methods in com.google.testing.threadtester with parameters of type CodePosition | ||
|---|---|---|
Breakpoint |
ObjectInstrumentation.createBreakpoint(CodePosition position,
Thread thread)
Creates a new Breakpoint for the given CodePosition and Thread, both of which must be non-null. |
|
protected boolean |
SinglePositionBreakpoint.doesMatch(CodePosition otherPosition)
|
|
static
|
InterleavedRunner.interleaveAfter(M main,
SecondaryRunnable<T,M> secondary,
CodePosition position,
int posCount)
Invokes two runnable instances, interleaving the execution. |
|
| Method parameters in com.google.testing.threadtester with type arguments of type CodePosition | ||
|---|---|---|
static
|
InterleavedRunner.interleave(M main,
SecondaryRunnable<T,M> secondary,
List<CodePosition> positions)
Invokes two runnable instances, interleaving the execution. |
|
| Constructors in com.google.testing.threadtester with parameters of type CodePosition | |
|---|---|
SinglePositionBreakpoint(Thread thread,
CodePosition position)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||