Home
last modified time | relevance | path

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

/art/test/1925-self-frame-pop/src/art/
DTest1925.java38 public static void recurTimesA(int times, Runnable safepoint) { in recurTimesA() argument
39 if (times == 0) { in recurTimesA()
43 recurTimesB(times - 1, safepoint); in recurTimesA()
46 public static void recurTimesB(int times, Runnable safepoint) { in recurTimesB() argument
47 if (times == 0) { in recurTimesB()
51 recurTimesC(times - 1, safepoint); in recurTimesB()
54 public static void recurTimesC(int times, Runnable safepoint) { in recurTimesC() argument
55 if (times == 0) { in recurTimesC()
59 recurTimesD(times - 1, safepoint); in recurTimesC()
62 public static void recurTimesD(int times, Runnable safepoint) { in recurTimesD() argument
[all …]
/art/test/1924-frame-pop-toggle/src/art/
DTest1924.java38 public static void recurTimesA(int times, Runnable safepoint) { in recurTimesA() argument
39 if (times == 0) { in recurTimesA()
43 recurTimesB(times - 1, safepoint); in recurTimesA()
46 public static void recurTimesB(int times, Runnable safepoint) { in recurTimesB() argument
47 if (times == 0) { in recurTimesB()
51 recurTimesC(times - 1, safepoint); in recurTimesB()
54 public static void recurTimesC(int times, Runnable safepoint) { in recurTimesC() argument
55 if (times == 0) { in recurTimesC()
59 recurTimesD(times - 1, safepoint); in recurTimesC()
62 public static void recurTimesD(int times, Runnable safepoint) { in recurTimesD() argument
[all …]
/art/test/1923-frame-pop/src/art/
DTest1923.java38 public static void recurTimesA(int times, Runnable safepoint) { in recurTimesA() argument
39 if (times == 0) { in recurTimesA()
43 recurTimesB(times - 1, safepoint); in recurTimesA()
46 public static void recurTimesB(int times, Runnable safepoint) { in recurTimesB() argument
47 if (times == 0) { in recurTimesB()
51 recurTimesC(times - 1, safepoint); in recurTimesB()
54 public static void recurTimesC(int times, Runnable safepoint) { in recurTimesC() argument
55 if (times == 0) { in recurTimesC()
59 recurTimesD(times - 1, safepoint); in recurTimesC()
62 public static void recurTimesD(int times, Runnable safepoint) { in recurTimesD() argument
[all …]
/art/test/1926-missed-frame-pop/src/art/
DTest1926.java38 public static void recurTimesA(int times, Runnable safepoint) { in recurTimesA() argument
39 if (times == 0) { in recurTimesA()
43 recurTimesB(times - 1, safepoint); in recurTimesA()
46 public static void recurTimesB(int times, Runnable safepoint) { in recurTimesB() argument
47 if (times == 0) { in recurTimesB()
51 recurTimesC(times - 1, safepoint); in recurTimesB()
54 public static void recurTimesC(int times, Runnable safepoint) { in recurTimesC() argument
55 if (times == 0) { in recurTimesC()
59 recurTimesD(times - 1, safepoint); in recurTimesC()
62 public static void recurTimesD(int times, Runnable safepoint) { in recurTimesD() argument
[all …]
/art/test/2003-double-virtual-structural/
Dexpected.txt1 Hi(SubTransform called 1 times)
2 Hi(SubTransform called 2 times)
3 Hi(SubTransform called 3 times)
4 Hello(SubTransform called 4 times, Transform called 1 times)
5 Hello(SubTransform called 5 times, Transform called 2 times)
6 Hello(SubTransform called 6 times, Transform called 3 times)
/art/test/901-hello-ti-agent/
Dexpected.txt13 1 times JVMTI_ERROR_ILLEGAL_ARGUMENT
15 9 times JVMTI_ERROR_ILLEGAL_ARGUMENT
22 4 times JVMTI_ERROR_ILLEGAL_ARGUMENT
29 5 times JVMTI_ERROR_ILLEGAL_ARGUMENT
32 1 times JVMTI_ERROR_ILLEGAL_ARGUMENT
35 4 times JVMTI_ERROR_ILLEGAL_ARGUMENT
38 8 times JVMTI_ERROR_ILLEGAL_ARGUMENT
42 7 times JVMTI_ERROR_ILLEGAL_ARGUMENT
55 7 times JVMTI_ERROR_ILLEGAL_ARGUMENT
57 18 times JVMTI_ERROR_ILLEGAL_ARGUMENT
[all …]
/art/test/1999-virtual-structural/
Dexpected.txt1 Hi(SubTransform called 1 times)
2 Hi(SubTransform called 2 times)
3 Hi(SubTransform called 3 times)
4 Hello (Transform called 1 times)(SubTransform called 4 times)
/art/tools/class2greylist/test/src/com/android/class2greylist/
DUnsupportedAppUsageAnnotationHandlerTest.java24 import static org.mockito.Mockito.times;
100 verify(mConsumer, times(1)).consume(greylist.capture(), any(), any()); in testGreylistMethod()
121 verify(mConsumer, times(1)).consume(greylist.capture(), any(), any()); in testGreylistConstructor()
142 verify(mConsumer, times(1)).consume(greylist.capture(), any(), any()); in testGreylistField()
163 verify(mConsumer, times(1)).consume(greylist.capture(), any(), any()); in testGreylistImplicit()
183 verify(mStatus, times(1)).error(format.capture(), any()); in testGreylistImplicit_Invalid_MissingOnClass()
205 verify(mStatus, times(1)).error(format.capture(), any()); in testGreylistImplicit_Invalid_PresentOnMember()
227 verify(mConsumer, times(1)).consume(greylist.capture(), any(), any()); in testGreylistMethodExpectedSignature()
246 verify(mStatus, times(1)).error(any(), any()); in testGreylistMethodExpectedSignatureWrong()
268 verify(mConsumer, times(1)).consume(greylist.capture(), any(), any()); in testGreylistInnerClassMethod()
[all …]
DCovariantReturnTypeHandlerTest.java24 import static org.mockito.Mockito.times;
81 verify(mConsumer, times(1)).consume( in testReturnTypeWhitelisted()
/art/test/998-redefine-use-after-free/src/
DMain.java45 public static void runSeveralTimes(int times) throws Exception { in runSeveralTimes() argument
50 for (int i = 0 ; i < times; i++) { in runSeveralTimes()
/art/test/078-polymorphic-virtual/
Dinfo.txt2 calless invoked 10,000,000 times each in three threads.
/art/test/1917-get-stack-frame/
Dexpected.txt1 Recurring 5 times
13 Recurring 5 times on another thread
24 Recurring 5 times on another thread. Stack trace from main thread!
/art/test/2029-contended-monitors/
Dinfo.txt3 times for contended and uncontentended monitor acquisition under different
/art/test/961-default-iface-resolution-gen/
Dinfo.txt13 return equivalent output when run multiple times and the expected output should
/art/test/970-iface-super-resolution-gen/
Dinfo.txt13 return equivalent output when run multiple times and the expected output should
/art/test/964-default-iface-init-gen/
Dinfo.txt13 return equivalent output when run multiple times and the expected output should
/art/test/971-iface-super/
Dinfo.txt13 return equivalent output when run multiple times and the expected output should
/art/test/968-default-partial-compile-gen/
Dinfo.txt13 return equivalent output when run multiple times and the expected output should
/art/test/960-default-smali/
Dinfo.txt14 always return equivalent output when run multiple times.
/art/tools/jvmti-agents/simple-force-redefine/
DREADME.md26 Since the agent has no static state it can be attached multiple times to the same process.
/art/tools/
Dlibcore_gcstress_debug_failures.txt48 description: "Sometimes times out with gcstress and debug.",
Dexternal_oj_libjdwp_art_failures.txt52 description: "Test times out on fugu-debug",
/art/tools/runtime_memusage/
Dsymbol_trace_info.py201 data_lists["times"] = parsed_argv.times
/art/tools/dexfuzz/
DREADME105 resulting output. Divergent programs are run multiple times with a
/art/test/dexdump/
Dinvoke-custom.txt3489 … |00c0: const-string v9, " Call site instance #%02d was invoked % 2d times