/frameworks/base/services/tests/servicestests/src/com/android/server/audio/ |
D | MusicFxHelperTest.java | 107 List<ResolveInfo> list, int bind, int broadcast, String packageName, int audioSession, in openSessionWithResList() argument 125 verify(mMockContext, times(bind)) in openSessionWithResList() 266 int broadcasts = 1, bind = 1, unbind = 1; in testBroadcastIntentWithPackageAndOneBroadcastReceiver() local 267 openSessionWithResList(mSingleList, bind, broadcasts, mTestPkg1, mTestSession1, mTestUid1); in testBroadcastIntentWithPackageAndOneBroadcastReceiver() 275 bind = bind + 1; in testBroadcastIntentWithPackageAndOneBroadcastReceiver() 277 openSessionWithResList(mSingleList, bind, broadcasts, mTestPkg2, mTestSession2, mTestUid1); in testBroadcastIntentWithPackageAndOneBroadcastReceiver() 284 bind = bind + 1; in testBroadcastIntentWithPackageAndOneBroadcastReceiver() 286 openSessionWithResList(mSingleList, bind, broadcasts, mTestPkg3, mTestSession1, mTestUid2); in testBroadcastIntentWithPackageAndOneBroadcastReceiver() 332 int broadcasts = 1, bind = 1, unbind = 0; in testBroadcastGoodAndBadIntents() local 333 openSessionWithResList(mSingleList, bind, broadcasts, mTestPkg1, mTestSession1, mTestUid1); in testBroadcastGoodAndBadIntents() [all …]
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteProgram.java | 134 bind(index, null); in bindNull() 145 bind(index, value); in bindLong() 156 bind(index, value); in bindDouble() 170 bind(index, value); in bindString() 184 bind(index, value); in bindBlob() 214 private void bind(int index, Object value) { in bind() method in SQLiteProgram
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/domainselection/ |
D | DomainSelectionResolverTest.java | 154 verify(mDsController).bind(eq(DSS_COMPONENT_NAME)); in testGetDomainSelectionConnectionWhenPhoneNull() 165 verify(mDsController).bind(eq(DSS_COMPONENT_NAME)); in testGetDomainSelectionConnectionWhenImsPhoneNull() 177 verify(mDsController).bind(eq(DSS_COMPONENT_NAME)); in testGetDomainSelectionConnectionWhenImsNotAvailable() 191 verify(mDsController).bind(eq(DSS_COMPONENT_NAME)); in testGetDomainSelectionConnectionWhenImsNotAvailableForEmergencyCall() 205 verify(mDsController).bind(eq(DSS_COMPONENT_NAME)); in testGetDomainSelectionConnection() 221 verify(mDsController).bind(eq(OVERRIDDEN_COMPONENT_NAME)); in testSetDomainSelectionServiceOverride() 230 verify(mDsController, never()).bind(eq(OVERRIDDEN_COMPONENT_NAME)); in testSetDomainSelectionServiceOverrideWithoutInitialize() 241 verify(mDsController, never()).bind(eq(EMPTY_COMPONENT_NAME)); in testSetDomainSelectionServiceOverrideWithEmptyComponentName() 252 verify(mDsController, never()).bind(eq(NONE_COMPONENT_NAME)); in testSetDomainSelectionServiceOverrideWithNoneComponentName() 263 verify(mDsController, times(2)).bind(eq(DSS_COMPONENT_NAME)); in testClearDomainSelectionServiceOverride()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/service/ |
D | PersistentConnectionManagerTest.java | 88 verify(mConnection).bind(); in captureCallbackAndSend() 124 verify(mConnection).bind(); in testRetryOnBindFailure() 142 verify(mConnection).bind(); in testStopDoesNotReconnect() 147 verify(mConnection, never()).bind(); in testStopDoesNotReconnect() 156 verify(mConnection).bind(); in testAttemptOnPackageChange() 164 verify(mConnection).bind(); in testAttemptOnPackageChange()
|
D | ObservableServiceConnectionTest.java | 118 connection.bind(); in testConnect() 144 connection.bind(); in testDisconnect() 176 connection.bind(); in testUnbind() 200 connection.bind(); in testBindServiceThrowsError() 216 connection.bind(); in testUnbindDoesNotCallUnbindServiceWhenBindThrowsError()
|
/frameworks/base/services/tests/mockingservicestests/src/android/service/dreams/ |
D | DreamOverlayConnectionHandlerTest.java | 86 mDreamOverlayConnectionHandler.bind(); in consumerShouldRunImmediatelyWhenClientAvailable() 98 mDreamOverlayConnectionHandler.bind(); in consumerShouldRunAfterClientAvailable() 114 mDreamOverlayConnectionHandler.bind(); in consumerShouldNeverRunIfClientConnectsAndDisconnects() 132 mDreamOverlayConnectionHandler.bind(); in consumerShouldNeverRunIfUnbindCalled() 146 mDreamOverlayConnectionHandler.bind(); in consumersOnlyRunOnceIfUnbound() 165 mDreamOverlayConnectionHandler.bind(); in consumerShouldRunAgainAfterReconnect() 188 mDreamOverlayConnectionHandler.bind(); in consumerShouldNeverRunIfRemovedImmediately()
|
/frameworks/base/core/java/android/os/ |
D | UpdateEngineStable.java | 97 public boolean bind(final UpdateEngineStableCallback callback, final Handler handler) { in bind() method in UpdateEngineStable 143 return mUpdateEngineStable.bind(mUpdateEngineStableCallback); in bind() 155 public boolean bind(final UpdateEngineStableCallback callback) { in bind() method in UpdateEngineStable 156 return bind(callback, null); in bind()
|
/frameworks/native/libs/ui/ |
D | ColorSpace.cpp | 59 return std::bind(rcpResponse, _1, parameters); in toOETF() 61 return std::bind(rcpFullResponse, _1, parameters); in toOETF() 66 return std::bind(response, _1, parameters); in toEOTF() 68 return std::bind(fullResponse, _1, parameters); in toEOTF() 75 return std::bind(safePow, _1, 1.0f / gamma); in toOETF() 82 return std::bind(safePow, _1, gamma); in toEOTF() 255 std::bind(absRcpResponse, _1, 2.4f, 1 / 1.055f, 0.055f / 1.055f, 1 / 12.92f, 0.04045f), in extendedSRGB() 256 std::bind(absResponse, _1, 2.4f, 1 / 1.055f, 0.055f / 1.055f, 1 / 12.92f, 0.04045f), in extendedSRGB() 257 std::bind(clamp<float>, _1, -0.799f, 2.399f) in extendedSRGB() 267 std::bind(clamp<float>, _1, -0.5f, 7.499f) in linearExtendedSRGB() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/mediaprojection/appselector/ |
D | MediaProjectionAppSelectorControllerTest.kt | 72 verify(view).bind(emptyList()) in initNoRecentTasks_bindsEmptyList() 81 verify(view).bind(listOf(createRecentTask(taskId = 1))) in initOneRecentTask_bindsList() 113 .bind( in initMultipleRecentTasksWithoutAppSelectorTask_bindsListInTheSameOrder() 136 .bind( in initRecentTasksWithAppSelectorTasks_removeAppSelector() 159 .bind( in initRecentTasksWithAppSelectorTasks_bindsCallerTasksAtTheEnd() 184 .bind( in initRecentTasksWithAppSelectorTasks_withEnterprisePolicies_bindsAllTasks() 210 verify(view).bind(emptyList()) in initRecentTasksWithAppSelectorTasks_withEnterprisePolicies_blocksAllTasks()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/shelf/ui/viewbinder/ |
D | NotificationShelfViewBinder.kt | 33 suspend fun bind( in bind() method 40 ActivatableNotificationViewBinder.bind(viewModel, shelf, falsingManager) in bind() 44 launch { nicBinder.bind(shelfIcons) } in bind()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ui/viewbinder/ |
D | ExpandableOutlineViewBinder.kt | 7 fun bind( in bind() method 11 ExpandableViewBinder.bind(viewModel, view) in bind()
|
D | SingleLineViewBinder.kt | 24 fun bind(viewModel: SingleLineViewModel?, view: HybridNotificationView?) { in bind() method 27 bind( in bind()
|
D | SingleLineConversationViewBinder.kt | 26 fun bind(viewModel: SingleLineViewModel, view: HybridNotificationView?) { in bind() method 29 SingleLineViewBinder.bind(viewModel, view) in bind()
|
D | NotificationViewFlipperBinder.kt | 38 lifecycleScope.launch { bind(viewFlipper, viewModel) } in bindWhileAttached() 42 suspend fun bind( in bind() method
|
/frameworks/av/media/libstagefright/renderfright/gl/ |
D | GLVertexBuffer.cpp | 40 bind(); in allocateBuffers() 45 void GLVertexBuffer::bind() const { in bind() function in android::renderengine::gl::GLVertexBuffer
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/common/ui/binder/ |
D | IconViewBinder.kt | 23 fun bind( in bind() method 27 ContentDescriptionViewBinder.bind(icon.contentDescription, view) in bind()
|
D | TintedIconViewBinder.kt | 30 fun bind( in bind() method 34 IconViewBinder.bind(tintedIcon.icon, view) in bind()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/ |
D | ImsResolverTest.java | 414 verify(controller).bind(eq(features), arrayCaptor.capture()); in testCarrierPackageBind() 472 verify(deviceController).bind(eq(featuresDevice), any(SparseIntArray.class)); in testDeviceCarrierPackageBindMultipleServices() 474 verify(carrierController1).bind(eq(featuresMmTel), any(SparseIntArray.class)); in testDeviceCarrierPackageBindMultipleServices() 476 verify(carrierController2).bind(eq(featuresRcs), any(SparseIntArray.class)); in testDeviceCarrierPackageBindMultipleServices() 524 verify(deviceController, never()).bind(any(), any(SparseIntArray.class)); in testCarrierPackageBindOneConfigTwoSupport() 526 verify(carrierController1).bind(eq(featuresMmTel), any(SparseIntArray.class)); in testCarrierPackageBindOneConfigTwoSupport() 528 verify(carrierController2).bind(eq(featuresRcs), any(SparseIntArray.class)); in testCarrierPackageBindOneConfigTwoSupport() 556 verify(controller).bind(eq(features), any(SparseIntArray.class)); in testCarrierPackageBindWithEmergencyCalling() 585 verify(controller).bind(eq(features), any(SparseIntArray.class)); in testCarrierPackageBindWithEmergencyButNotMmtel() 616 verify(deviceController1).bind(eq(featureSet1), any(SparseIntArray.class)); in testEnableDisableImsDedupe() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/shared/ui/binder/ |
D | CollapsedStatusBarViewBinder.kt | 47 fun bind( in <lambda>() method 56 override fun bind( in bind() method in com.android.systemui.statusbar.pipeline.shared.ui.binder.CollapsedStatusBarViewBinderImpl 95 IconViewBinder.bind(chipModel.icon, chipIconView) in bind() 96 ChipChronometerBinder.bind(chipModel.startTimeMs, chipTimeView) in bind()
|
/frameworks/native/libs/binder/include/binder/ |
D | Functional.h | 37 assert_small_callable<decltype(std::bind(f))>(); in make_scope_guard() 38 return {reinterpret_cast<void*>(true), std::bind(f)}; in make_scope_guard()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/controller/ |
D | ControlsProviderLifecycleManager.kt | 111 private fun bindService(bind: Boolean, forPanel: Boolean = false) { in bindService() 113 bindServiceBackground(bind, forPanel) in bindService() 163 private fun bindServiceBackground(bind: Boolean, forPanel: Boolean = true) { in bindServiceBackground() 164 requiresBound = bind in bindServiceBackground() 165 if (bind) { in bindServiceBackground() 329 bindService(bind = true, forPanel = true) in bindServiceForPanel()
|
/frameworks/native/services/surfaceflinger/Scheduler/tests/ |
D | TimerTest.cpp | 46 mTimer.alarmAt(std::bind(&TimerTest::timerCallback, this), systemTime() - 1'000'000); in TEST_F() 55 mTimer.alarmAt(std::bind(&TimerTest::timerCallback, this), systemTime() - 1'000'000); in TEST_F()
|
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/ |
D | ObservableServiceConnectionTest.java | 123 mConnection.bind(); in testConnect() 150 mConnection.bind(); in testDisconnect() 172 mConnection.bind(); in testBindingDied() 189 mConnection.bind(); in testNullBinding() 206 mConnection.bind(); in testUnbind()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/binder/ |
D | BouncerViewBinder.kt | 62 fun bind(view: ViewGroup) { in bind() method in com.android.systemui.bouncer.ui.binder.BouncerViewBinder 65 ComposeBouncerViewBinder.bind( in bind() 76 KeyguardBouncerViewBinder.bind( in bind()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/satellite/ui/binder/ |
D | DeviceBasedSatelliteIconBinder.kt | 29 fun bind( in <lambda>() method 43 IconViewBinder.bind(newIcon, view.iconView) in <lambda>()
|