Home
last modified time | relevance | path

Searched refs:mDriver (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
DBoundsAnimationControllerTests.java394 private BoundsAnimationDriver mDriver; field in BoundsAnimationControllerTests
409 mDriver = new BoundsAnimationDriver(mController, mTarget); in setUp()
417 mDriver.start(BOUNDS_FULL, BOUNDS_FLOATING) in testFullscreenToFloatingTransition()
429 mDriver.start(BOUNDS_FLOATING, BOUNDS_FULL) in testFloatingToFullscreenTransition()
441 mDriver.start(BOUNDS_FLOATING, BOUNDS_SMALLER_FLOATING) in testFloatingToSmallerFloatingTransition()
453 mDriver.start(BOUNDS_SMALLER_FLOATING, BOUNDS_FLOATING) in testFloatingToLargerFloatingTransition()
467 mDriver.start(BOUNDS_FULL, BOUNDS_FLOATING) in testFullscreenToFloatingCancelFromTarget()
477 mDriver.start(BOUNDS_FULL, BOUNDS_FLOATING) in testFullscreenToFloatingCancelFromAnimationToSameBounds()
488 mDriver.start(BOUNDS_FULL, BOUNDS_FLOATING) in testFullscreenToFloatingCancelFromAnimationToFloatingBounds()
502 mDriver.start(BOUNDS_FULL, BOUNDS_FLOATING) in testFullscreenToFloatingCancelFromAnimationToFullscreenBounds()
[all …]
/frameworks/base/core/java/android/database/sqlite/
DSQLiteCursor.java49 private final SQLiteCursorDriver mDriver; field in SQLiteCursor
102 mDriver = driver; in SQLiteCursor()
200 mDriver.cursorDeactivated(); in deactivate()
208 mDriver.cursorClosed(); in close()
229 mDriver.cursorRequeried(this); in requery()
251 mDriver.setBindArguments(selectionArgs); in setSelectionArguments()
/frameworks/ml/nn/runtime/
DExecutionBuilder.h157 bool isCpu() const { return mDriver == nullptr; } in isCpu()
176 sp<IDevice> mDriver; // nullptr if CPU execution variable
DExecutionBuilder.cpp428 mDriver(driver), mPreparedModel(preparedModel), in StepExecutor()
470 if (mDriver == nullptr) { in startCompute()
478 nnAssert(mDriver != nullptr); in startComputeOnDevice()
491 mDriver->prepareModel(model, preparedModelCallback); in startComputeOnDevice()
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayer.cpp219 mDriver = driver; in setDriver()
551 CHECK(mDriver != NULL); in onMessageReceived()
552 sp<NuPlayerDriver> driver = mDriver.promote(); in onMessageReceived()
731 if (mDriver != NULL && mSource->getDuration(&durationUs) == OK) { in onMessageReceived()
732 sp<NuPlayerDriver> driver = mDriver.promote(); in onMessageReceived()
1573 sp<NuPlayerDriver> driver = mDriver.promote(); in onPause()
1960 if (mDriver == NULL) { in notifyListener()
1964 sp<NuPlayerDriver> driver = mDriver.promote(); in notifyListener()
2228 if (mDriver != NULL) { in performReset()
2229 sp<NuPlayerDriver> driver = mDriver.promote(); in performReset()
[all …]
DNuPlayer.h156 wp<NuPlayerDriver> mDriver; member