/art/test/967-default-ame/ |
D | expected.txt | 3 Calling non-abstract function on Main 5 Calling abstract function on Main 7 Calling non-abstract function on Main 10 Calling non-abstract function on Iface 12 Calling abstract function on Iface 14 Calling non-abstract function on Iface 17 Calling abstract function on Iface2
|
/art/test/966-default-conflict/ |
D | expected.txt | 4 Calling non-conflicting function on Main 6 Calling conflicting function on Main 8 Calling non-conflicting function on Main 11 Calling non-conflicting function on Iface 13 Calling conflicting function on Iface 15 Calling non-conflicting function on Iface 18 Calling conflicting function on Iface2
|
/art/test/965-default-verify/ |
D | expected.txt | 3 Calling verifiable function on Main 5 Calling unverifiable function on Main 7 Calling verifiable function on Main 10 Calling verifiable function on Iface 12 Calling unverifiable function on Iface 14 Calling verifiable function on Iface
|
/art/runtime/gc/allocator/ |
D | dlmalloc.cc | 29 static void art_heap_corruption(const char* function); 30 static void art_heap_usage_error(const char* function, void* p); 52 static void art_heap_corruption(const char* function) { in art_heap_corruption() argument 53 LOG(FATAL) << "Corrupt heap detected in: " << function; in art_heap_corruption() 56 static void art_heap_usage_error(const char* function, void* p) { in art_heap_usage_error() argument 57 LOG(FATAL) << "Incorrect use of function '" << function << "' argument " << p in art_heap_usage_error()
|
/art/test/1953-pop-frame/ |
D | expected.txt | 4 Test stopped using breakpoint with declared synchronized function 31 Test stopped during Method Exit due to exception thrown in same function 49 art.Test1953$ExceptionCatchTestObject$TestError caught in called function. 51 … during ExceptionCatch event of calledFunction (catch in called function, throw in called function) 53 art.Test1953$ExceptionThrowTestObject$TestError caught in same function. 55 Test stopped during ExceptionCatch event of calledFunction (catch in called function, throw in subr… 57 art.Test1953$ExceptionCatchTestObject$TestError caught in called function. 59 Test stopped during Exception event of calledFunction (catch in calling function) 63 Test stopped during Exception event of calledFunction (catch in called function) 65 art.Test1953$ExceptionThrowTestObject$TestError caught in same function. [all …]
|
/art/test/1943-suspend-raw-monitor-wait/ |
D | info.txt | 3 Makes sure that the RawMonitorWait function acts as a suspend point as the 4 thread leaves the function.
|
/art/test/1915-get-set-local-current-thread/src/art/ |
D | Test1915.java | 28 import java.util.function.Function; 29 import java.util.function.Predicate; 30 import java.util.function.Supplier; 31 import java.util.function.Consumer;
|
/art/test/1955-pop-frame-jit-called/ |
D | expected.txt | 4 Test stopped using breakpoint with declared synchronized function 31 Test stopped during Method Exit due to exception thrown in same function 49 art.Test1953$ExceptionCatchTestObject$TestError caught in called function. 51 … during ExceptionCatch event of calledFunction (catch in called function, throw in called function) 53 art.Test1953$ExceptionThrowTestObject$TestError caught in same function. 55 Test stopped during ExceptionCatch event of calledFunction (catch in called function, throw in subr… 57 art.Test1953$ExceptionCatchTestObject$TestError caught in called function. 59 Test stopped during Exception event of calledFunction (catch in calling function) 63 Test stopped during Exception event of calledFunction (catch in called function) 65 art.Test1953$ExceptionThrowTestObject$TestError caught in same function. [all …]
|
/art/test/1954-pop-frame-jit/ |
D | expected.txt | 4 Test stopped using breakpoint with declared synchronized function 31 Test stopped during Method Exit due to exception thrown in same function 49 art.Test1953$ExceptionCatchTestObject$TestError caught in called function. 51 … during ExceptionCatch event of calledFunction (catch in called function, throw in called function) 53 art.Test1953$ExceptionThrowTestObject$TestError caught in same function. 55 Test stopped during ExceptionCatch event of calledFunction (catch in called function, throw in subr… 57 art.Test1953$ExceptionCatchTestObject$TestError caught in called function. 59 Test stopped during Exception event of calledFunction (catch in calling function) 63 Test stopped during Exception event of calledFunction (catch in called function) 65 art.Test1953$ExceptionThrowTestObject$TestError caught in same function. [all …]
|
/art/test/1956-pop-frame-jit-calling/ |
D | expected.txt | 4 Test stopped using breakpoint with declared synchronized function 31 Test stopped during Method Exit due to exception thrown in same function 49 art.Test1953$ExceptionCatchTestObject$TestError caught in called function. 51 … during ExceptionCatch event of calledFunction (catch in called function, throw in called function) 53 art.Test1953$ExceptionThrowTestObject$TestError caught in same function. 55 Test stopped during ExceptionCatch event of calledFunction (catch in called function, throw in subr… 57 art.Test1953$ExceptionCatchTestObject$TestError caught in called function. 59 Test stopped during Exception event of calledFunction (catch in calling function) 63 Test stopped during Exception event of calledFunction (catch in called function) 65 art.Test1953$ExceptionThrowTestObject$TestError caught in same function. [all …]
|
/art/test/1947-breakpoint-redefine-deopt/ |
D | info.txt | 4 sets breakpoints on each line in turn of a function with multiple execution 5 paths and then runs the function, receiving the breakpoint events.
|
/art/test/994-breakpoint-line/ |
D | info.txt | 4 sets breakpoints on each line in turn of a function with multiple execution 5 paths and then runs the function, receiving the breakpoint events.
|
/art/test/987-agent-bind/ |
D | agent_bind.cc | 36 static void doUpPrintCall(JNIEnv* env, const char* function) { in doUpPrintCall() argument 38 jmethodID targetMethod = env->GetStaticMethodID(klass.get(), function, "()V"); in doUpPrintCall()
|
/art/test/1917-get-stack-frame/src/art/ |
D | Test1917.java | 31 import java.util.function.Function; 32 import java.util.function.Predicate; 33 import java.util.function.Supplier; 34 import java.util.function.Consumer;
|
/art/test/1916-get-set-current-frame/src/art/ |
D | Test1916.java | 28 import java.util.function.Function; 29 import java.util.function.Predicate; 30 import java.util.function.Supplier; 31 import java.util.function.Consumer;
|
/art/runtime/ |
D | thread_pool.h | 40 explicit FunctionClosure(std::function<void(Thread*)>&& f) : func_(std::move(f)) {} in FunctionClosure() 46 std::function<void(Thread*)> func_; 65 explicit FunctionTask(std::function<void(Thread*)>&& func) : func_(std::move(func)) {} in FunctionTask() 72 std::function<void(Thread*)> func_;
|
/art/test/1935-get-set-current-frame-jit/src/ |
D | Main.java | 30 import java.util.function.Function; 31 import java.util.function.Predicate; 32 import java.util.function.Supplier; 33 import java.util.function.Consumer;
|
/art/test/1914-get-local-instance/src/art/ |
D | Test1914.java | 30 import java.util.function.Function; 31 import java.util.function.Predicate; 32 import java.util.function.Supplier; 33 import java.util.function.Consumer;
|
/art/test/1939-proxy-frames/src/art/ |
D | Test1939.java | 30 import java.util.function.Function; 31 import java.util.function.Predicate; 32 import java.util.function.Supplier; 33 import java.util.function.Consumer;
|
/art/test/1957-error-ext/ |
D | info.txt | 1 Test for get_last_error_message extension function.
|
/art/test/1948-obsolete-const-method-handle/ |
D | expected.txt | 3 transforming calling function
|
/art/test/926-multi-obsolescence/ |
D | info.txt | 2 function.
|
/art/test/1930-monitor-info/ |
D | info.txt | 3 Tests that the GetObjectMonitorUsage function works correctly.
|
/art/test/1922-owned-monitors-info/ |
D | info.txt | 3 Tests that the GetBytecodes function works as expected.
|
/art/test/1901-get-bytecodes/ |
D | info.txt | 3 Tests that the GetBytecodes function works as expected.
|