Home
last modified time | relevance | path

Searched refs:handler (Results 26 – 50 of 81) sorted by relevance

1234

/art/test/044-proxy/src/
DOOMEOnDispatch.java41 InvocationHandler handler = new OOMEOnDispatch(); in main() local
44 handler); in main()
DWrappedThrow.java30 InvocationHandler handler = new WTInvocationHandler(mix); in main() local
36 handler); in main()
/art/test/305-other-fault-handler/
Dfault_handler.cc99 std::unique_ptr<TestFaultHandler> handler(new TestFaultHandler(&fault_manager)); in Java_Main_runFaultHandlerTest() local
100 handler->CauseSegfault(); in Java_Main_runFaultHandlerTest()
DAndroid.bp3 name: "art-run-test-305-other-fault-handler",
/art/runtime/interpreter/mterp/
DREADME.txt30 $handler_size_bytes - max size of an instruction handler, in bytes
31 $handler_size_bits - max size of an instruction handler, log 2
38 exceed "handler-size", but the VM will abort on startup if it detects an
39 oversized handler. On architectures with fixed-width instructions this
72 uses a computed-goto mechanism, in which the handler entrypoints are
73 located at the base of the handler table + (opcode * 128).
/art/openjdkjvmti/
Dti_dump.cc60 void DumpUtil::Register(EventHandler* handler) { in Register() argument
61 gDumpCallback.event_handler = handler; in Register()
Dti_phase.cc140 void PhaseUtil::Register(EventHandler* handler) { in Register() argument
141 gPhaseCallback.event_handler = handler; in Register()
/art/test/622-simplifyifs-exception-edges/
Dinfo.txt2 to redirect exception handler edges.
/art/test/111-unresolvable-exception/
Dinfo.txt1 Test that we do not segfault when we check a catch handler
/art/test/1940-ddms-ext/
Dexpected.txt13 Sending data [1] to chunk handler -1412567295
16 Sending data [1] to chunk handler 305419896
/art/test/1962-multi-thread-events/
Dmulti_thread_events.cc52 jmethodID handler = in cbMethodEntry() local
55 env->CallStaticVoidMethod(klass, handler, thread, data->events); in cbMethodEntry()
/art/test/689-multi-catch/
Dinfo.txt2 to wrongly type an exception in a multi-catch handler.
/art/test/004-SignalTest/
Dexpected.txt9 signal handler done
/art/runtime/
Dfault_handler.h51 void AddHandler(FaultHandler* handler, bool generated_code);
52 void RemoveHandler(FaultHandler* handler);
/art/tools/ahat/src/test/com/android/ahat/
DDiffTest.java84 AhatHandler handler = new ObjectsHandler(dump.getAhatSnapshot()); in diffClassRemoved() local
85 TestHandler.testNoCrash(handler, "http://localhost:7100/objects?class=java.lang.Class"); in diffClassRemoved()
/art/test/995-breakpoints-throw/
Dinfo.txt6 handler.
/art/test/570-checker-osr/
Dosr.cc33 void ProcessMethodWithName(JNIEnv* env, jstring method_name, const Handler& handler) { in ProcessMethodWithName() argument
42 handler(stack_visitor); in ProcessMethodWithName()
/art/test/800-smali/smali/
Dmove_exception_on_entry.smali5 # Test that we cannot have a catch-handler with move-exception at the beginning of a method.
Db_20843113.smali9 # An instruction that may throw, so as to pass UninitializedThis to the handler
Db_22331663.smali30 # Catch handler. Here we had to merge the uninitialized with the initialized reference,
/art/tools/class2greylist/src/com/android/class2greylist/
DClass2Greylist.java219 AnnotationHandler handler) { in addRepeatedAnnotationHandlers() argument
221 .put(annotationName, handler) in addRepeatedAnnotationHandlers()
222 .put(containerAnnotationName, new RepeatedAnnotationHandler(annotationName, handler)); in addRepeatedAnnotationHandlers()
/art/tools/signal_dumper/
Dsignal_dumper.cc440 bool WaitLoop(uint32_t max_wait_micros, const T& handler) { in WaitLoop() argument
446 if (handler(&ret)) { in WaitLoop()
455 auto handler = [&](bool* res) { in WaitForMainSigStop() local
463 return WaitLoop(kMaxWaitMicros, handler); in WaitForMainSigStop()
467 auto handler = [&](bool* res) { in WaitForSigStopped() local
486 return WaitLoop(max_wait_micros, handler); in WaitForSigStopped()
/art/tools/dexfuzz/src/dexfuzz/program/
DMutatableCode.java207 for (MInsn handler : mTryBlock.handlers) { in updateTryBlocksWithReplacementInsn()
208 if (handler == before) { in updateTryBlocksWithReplacementInsn()
211 } else if (twoWay && handler == after) { in updateTryBlocksWithReplacementInsn()
DCodeTranslator.java304 EncodedTypeAddrPair handler = encodedCatchHandler.handlers[i]; in readTryBlocks() local
305 MInsn handlerInsn = insnLocationMap.get(handler.addr); in readTryBlocks()
310 handler.addr)); in readTryBlocks()
379 EncodedTypeAddrPair handler = encodedCatchHandler.handlers[i]; in updateTryBlocks() local
380 handler.addr = handlerInsn.location; in updateTryBlocks()
/art/test/098-ddmc/src/
DMain.java96 InvocationHandler handler = new InvocationHandler() { in createProxy() local
103 new Class[] { Runnable.class }, handler); in createProxy()

1234