HomeSort by relevance Sort by last modified time
    Searched defs:instrumentation (Results 101 - 125 of 214) sorted by null

1 2 3 45 6 7 8 9

  /art/runtime/interpreter/
interpreter.cc 253 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); local
256 if (UNLIKELY(instrumentation->HasMethodEntryListeners())) {
257 instrumentation->MethodEnterEvent(self,
262 instrumentation->MethodUnwindEvent(self,
314 // Mterp does not support all instrumentation/debugging.
507 // the instrumentation. To prevent from reporting it a second time, we simply pass a
508 // null Instrumentation*.
509 const instrumentation::Instrumentation* const instrumentation member in class:art::interpreter::instrumentation
    [all...]
interpreter_common.h 124 // mterp. Access checks and instrumentation other than jit profiling are not supported, but does
198 // TODO: Remove the InvokeVirtualOrInterface instrumentation, as it was only used by the JIT.
200 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); local
201 if (UNLIKELY(instrumentation->HasInvokeVirtualOrInterfaceListeners())) {
202 instrumentation->InvokeVirtualOrInterface(
287 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation() local
    [all...]
interpreter_switch_impl.cc 51 #define HANDLE_PENDING_EXCEPTION() HANDLE_PENDING_EXCEPTION_WITH_INSTRUMENTATION(instrumentation)
70 if (UNLIKELY(instrumentation->HasDexPcListeners()) && \
75 instrumentation, \
87 if (UNLIKELY(instrumentation->HasBranchListeners())) { \
88 instrumentation->Branch(self, shadow_frame.GetMethod(), dex_pc, offset); \
138 const instrumentation::Instrumentation* instrumentation,
141 DCHECK(instrumentation->HasDexPcListeners());
148 instrumentation->DexPcMovedEvent(self
213 const auto* const instrumentation = Runtime::Current()->GetInstrumentation(); local
    [all...]
  /art/runtime/interpreter/mterp/
mterp.cc 151 const instrumentation::Instrumentation* const instrumentation = runtime->GetInstrumentation(); member in class:art::interpreter::instrumentation
152 return instrumentation->NonJitProfilingActive() ||
573 const instrumentation::Instrumentation* const instrumentation = member in class:art::interpreter::instrumentation
575 return MoveToExceptionHandler(self, *shadow_frame, instrumentation);
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
CtsKeyEventUtil.java 19 import android.app.Instrumentation;
33 * {@link Instrumentation} and {@link android.test.InstrumentationTestCase} classes. It uses
44 * @param instrumentation the instrumentation used to run the test.
48 public static void sendString(final Instrumentation instrumentation, final View targetView,
63 sendKey(instrumentation, targetView, KeyEvent.changeTimeRepeat(
70 * Sends a series of key events through instrumentation. For instance:
73 * @param instrumentation the instrumentation used to run the test
    [all...]
DeviceReportLog.java 19 import android.app.Instrumentation;
31 * NOTE: tests MUST call {@link #submit(Instrumentation)} if and only if the test passes in order to
257 * Closes report file and submits report to instrumentation.
259 public void submit(Instrumentation instrumentation) {
264 instrumentation.sendStatus(INST_STATUS_IN_PROGRESS, output);
267 instrumentation.sendStatus(INST_STATUS_ERROR, null);
272 * Closes report file. Static functions that do not have access to instrumentation can
273 * use this to close report logs. Summary, if present, is not reported to instrumentation, hence
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityGestureDetectorTest.java 25 import android.app.Instrumentation;
71 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
72 PackageManager pm = instrumentation.getContext().getPackageManager();
81 WindowManager windowManager = (WindowManager) instrumentation.getContext()
95 mService = StubService.enableSelf(instrumentation);
161 // Use AccessibilityService.dispatchGesture() instead of Instrumentation.sendPointerSync()
193 public static StubService enableSelf(Instrumentation instrumentation) {
195 instrumentation, StubService.class)
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
UiBot.java 35 import android.app.Instrumentation;
124 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
125 mDevice = UiDevice.getInstance(instrumentation);
126 mContext = instrumentation.getContext();
128 mAutoman = instrumentation.getUiAutomation();
    [all...]
  /cts/tests/fragment/src/android/fragment/cts/
FragmentTransactionTest.java 31 import android.app.Instrumentation;
374 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
378 (NewIntentActivity) instrumentation.startActivitySync(intent1);
383 Activity coveringActivity = instrumentation.startActivitySync(intent2);
  /cts/tests/tests/widget/src/android/widget/cts/
TabHost_TabSpecTest.java 26 import android.app.Instrumentation;
27 import android.app.Instrumentation.ActivityMonitor;
205 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
206 ActivityMonitor am = instrumentation.addMonitor(MockURLSpanTestActivity.class.getName(),
TableLayoutTest.java 30 import android.app.Instrumentation;
232 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
235 instrumentation.waitForIdleSync();
257 instrumentation.waitForIdleSync();
271 instrumentation.waitForIdleSync();
285 instrumentation.waitForIdleSync();
305 instrumentation.waitForIdleSync();
324 instrumentation.waitForIdleSync();
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
RuntimeInstrumentTest.java 28 import com.google.caliper.runner.Instrument.Instrumentation;
80 Instrumentation instrumentation = instrument.createInstrumentation(benchmarkMethod); local
81 assertEquals(benchmarkMethod, instrumentation.benchmarkMethod());
82 assertEquals(instrument, instrumentation.instrument());
83 assertEquals(MacrobenchmarkWorker.class, instrumentation.workerClass());
88 Instrumentation instrumentation = instrument.createInstrumentation(benchmarkMethod); local
89 assertEquals(benchmarkMethod, instrumentation.benchmarkMethod());
90 assertEquals(instrument, instrumentation.instrument())
96 Instrumentation instrumentation = instrument.createInstrumentation(benchmarkMethod); local
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/instrumentation/
ViewElement.java 17 package io.appium.droiddriver.instrumentation;
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
LogTransformer.java 28 package org.slf4j.instrumentation;
51 * This class is based on the article <a href="http://today.java.net/pub/a/today/2008/04/24/add-logging-at-class-load-time-with-instrumentation.html"
52 * >Add Logging at Class Load Time with Java Instrumentation</a>.
  /frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
BenchmarkState.java 20 import android.app.Instrumentation;
233 public void sendFullStatusReport(Instrumentation instrumentation, String key) {
240 instrumentation.sendStatus(Activity.RESULT_OK, status);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/core/instrumentation/
SharedPreferencesLogger.java 15 package com.android.settingslib.core.instrumentation;
  /frameworks/support/lifecycle/integration-tests/testapp/src/androidTest/java/androidx/lifecycle/
ProcessOwnerTest.java 29 import android.app.Instrumentation;
85 Instrumentation.ActivityMonitor monitor = new Instrumentation.ActivityMonitor(
87 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
88 instrumentation.addMonitor(monitor);
102 Instrumentation.ActivityMonitor monitor = new Instrumentation.ActivityMonitor(
104 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation() local
129 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
    [all...]
  /platform_testing/tests/jank/sysapp_wear/src/com/android/wearable/sysapp/janktests/
SysAppTestHelper.java 19 import android.app.Instrumentation;
54 private Instrumentation instrumentation = null; field in class:SysAppTestHelper
59 * @param instrumentation Instance for instrumentation.
61 private SysAppTestHelper(UiDevice mDevice, Instrumentation instrumentation) {
64 this.instrumentation = instrumentation;
68 public static SysAppTestHelper getInstance(UiDevice device, Instrumentation instrumentation)
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
View_FocusHandlingTest.java 27 import android.app.Instrumentation;
53 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
54 instrumentation.setInTouchMode(false);
305 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
316 instrumentation.waitForIdleSync();
325 instrumentation.waitForIdleSync();
345 instrumentation.waitForIdleSync();
353 instrumentation.waitForIdleSync()
    [all...]
  /cts/tests/app/src/android/app/cts/
SystemFeaturesTest.java 20 import android.app.Instrumentation;
73 Instrumentation instrumentation = getInstrumentation(); local
74 mContext = instrumentation.getTargetContext();
  /frameworks/base/core/java/android/content/pm/
PackageInfo.java 184 * &lt;instrumentation&gt;} tags included under &lt;manifest&gt;,
188 public InstrumentationInfo[] instrumentation; field in class:PackageInfo
445 dest.writeTypedArray(instrumentation, parcelableFlags);
507 instrumentation = source.createTypedArray(InstrumentationInfo.CREATOR);
  /frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/testutils/
TestUtils.java 21 import android.app.Instrumentation;
292 * @param instrumentation the instrumentation used to run the test
297 public static void emulateTapOnView(Instrumentation instrumentation, View anchorView,
307 injectDownEvent(instrumentation, downTime, xOnScreen, yOnScreen);
308 injectMoveEventForTap(instrumentation, downTime, touchSlop, xOnScreen, yOnScreen);
309 injectUpEvent(instrumentation, downTime, false, xOnScreen, yOnScreen);
312 instrumentation.waitForIdleSync();
315 private static long injectDownEvent(Instrumentation instrumentation, long downTime
    [all...]
  /prebuilts/tools/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.4.33/
byte-buddy-agent-1.4.33.jar 
  /prebuilts/tools/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.5.5/
byte-buddy-agent-1.5.5.jar 
  /prebuilts/tools/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.6.5/
byte-buddy-agent-1.6.5.jar 

Completed in 892 milliseconds

1 2 3 45 6 7 8 9