Home
last modified time | relevance | path

Searched refs:mScope (Results 1 – 14 of 14) sorted by relevance

/packages/apps/DocumentsUI/src/com/android/documentsui/
DFocusManager.java67 private final ContentScope mScope = new ContentScope(); field in FocusManager
138 if (hasFocus && mScope.isValid() && v.getParent() == mScope.view) { in onFocusChange()
139 mScope.lastFocusPosition = mScope.view.getChildAdapterPosition(v); in onFocusChange()
145 if (!mScope.isValid() || mScope.adapter.getItemCount() == 0) { in focusDirectoryList()
163 final int focusPos = (mScope.lastFocusPosition != RecyclerView.NO_POSITION) in focusDirectoryList()
164 ? mScope.lastFocusPosition in focusDirectoryList()
165 : mScope.layout.findFirstVisibleItemPosition(); in focusDirectoryList()
180 if (mScope.pendingFocusId == null) { in onLayoutCompleted()
184 int pos = mScope.adapter.getStableIds().indexOf(mScope.pendingFocusId); in onLayoutCompleted()
188 mScope.pendingFocusId = null; in onLayoutCompleted()
[all …]
DActionModeController.java56 private final ContentScope mScope = new ContentScope(); field in ActionModeController
144 mScope.accessibilityImportanceSetter.setAccessibilityImportance( in onDestroyActionMode()
165 mScope.accessibilityImportanceSetter.setAccessibilityImportance( in onCreateActionMode()
183 mMenuManager.updateActionMenu(mMenu, mScope.selectionDetails); in updateActionMenu()
189 return mScope.menuItemClicker.accept(item); in onActionItemClicked()
222 mScope.menuItemClicker = menuItemClicker; in reset()
223 mScope.selectionDetails = selectionDetails; in reset()
224 mScope.accessibilityImportanceSetter = in reset()
/packages/modules/Bluetooth/android/pandora/server/src/
DGatt.kt49 private val mScope: CoroutineScope = CoroutineScope(Dispatchers.Default.limitedParallelism(1)) constant in com.android.pandora.Gatt
54 private val serverManager by lazy { GattServerManager(mBluetoothManager, context, mScope) } in <lambda>()
62 flow = intentFlow(context, intentFilter, mScope).shareIn(mScope, SharingStarted.Eagerly)
67 mScope.cancel() in close()
76 grpcUnary<ExchangeMTUResponse>(mScope, responseObserver) { in exchangeMTU()
90 grpcUnary<WriteResponse>(mScope, responseObserver) { in writeAttFromHandle()
125 grpcUnary<DiscoverServicesResponse>(mScope, responseObserver) { in discoverServiceByUuid()
145 grpcUnary<DiscoverServicesResponse>(mScope, responseObserver) { in discoverServices()
160 grpcUnary<DiscoverServicesSdpResponse>(mScope, responseObserver) { in discoverServicesSdp()
183 grpcUnary<ClearCacheResponse>(mScope, responseObserver) { in clearCache()
[all …]
DPan.kt43 private val mScope: CoroutineScope = CoroutineScope(Dispatchers.Default.limitedParallelism(1)) constant in com.android.pandora.Pan
72 mScope.cancel() in close()
79 grpcUnary<EnableTetheringResponse>(mScope, responseObserver) { in enableTethering()
97 grpcUnary<ConnectPanResponse>(mScope, responseObserver) { in connectPan()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/
DAttribution.java36 @Scope private int mScope; field in Attribution
52 this.mScope = builder.mScope; in Attribution()
79 return mScope == attr.mScope in equals()
96 mScope, in hashCode()
118 return mScope; in getScope()
183 @Scope private int mScope; field in Attribution.Builder
204 mScope = scope; in setScope()
/packages/modules/IntentResolver/java/src/com/android/intentresolver/contentpreview/
DChooserContentPreviewUi.java53 private final CoroutineScope mScope; field in ChooserContentPreviewUi
112 mScope = scope; in ChooserContentPreviewUi()
144 mScope, in createContentPreview()
163 previewData.getFirstFileName(mScope, fileContentPreviewUi::setFirstFileName); in createContentPreview()
178 mScope, in createContentPreview()
192 mScope, in createContentPreview()
200 mScope, in createContentPreview()
DTextContentPreviewUi.java43 private final CoroutineScope mScope; field in TextContentPreviewUi
68 mScope = scope; in TextContentPreviewUi()
133 mScope, in displayInternal()
DFilesPlusTextContentPreviewUi.java53 private final CoroutineScope mScope; field in FilesPlusTextContentPreviewUi
91 mScope = scope; in FilesPlusTextContentPreviewUi()
174 mScope, in updateUiWithMetadata()
/packages/apps/Camera2/src/com/android/camera/settings/
DSettingObserver.java55 private final String mScope; field in SettingObserver
61 mScope = scope; in SettingObserver()
98 return (T) Integer.valueOf(mSettingsManager.getInteger(mScope, mKey)); in get()
100 Object string = mSettingsManager.getString(mScope, mKey); in get()
107 return (T) Boolean.valueOf(mSettingsManager.getBoolean(mScope, mKey)); in get()
/packages/modules/Connectivity/staticlibs/device/com/android/net/module/util/
DPrivateAddressCoordinator.java442 private final int mScope; field in PrivateAddressCoordinator.AddressKey
446 mScope = scope; in AddressKey()
451 return (mTetheringType << 16) + mScope; in hashCode()
459 return mTetheringType == other.mTetheringType && mScope == other.mScope; in equals()
464 return "AddressKey(" + mTetheringType + ", " + mScope + ")"; in toString()
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastChannelManager.java162 public int mScope; field in CellBroadcastChannelManager.CellBroadcastChannelRange
198 mScope = SCOPE_UNKNOWN; in CellBroadcastChannelRange()
236 mScope = SCOPE_CARRIER; in CellBroadcastChannelRange()
238 mScope = SCOPE_DOMESTIC; in CellBroadcastChannelRange()
240 mScope = SCOPE_INTERNATIONAL; in CellBroadcastChannelRange()
353 + mEmergencyLevel + ",type=" + mAlertType + ",scope=" + mScope + ",vibration=" in toString()
569 && checkScope(range.mScope)) { in findChannelRange()
DCellBroadcastAlertService.java588 if (!channelManager.checkScope(range.mScope)) { in isChannelEnabled()
590 + "] is not within the scope. mScope = " + range.mScope); in isChannelEnabled()
/packages/modules/Bluetooth/framework/tests/bumble/src/android/bluetooth/sockets/rfcomm/
DRfcommTest.kt115 private val mScope: CoroutineScope = CoroutineScope(Dispatchers.Default.limitedParallelism(2)) in <lambda>() constant in android.bluetooth.sockets.rfcomm.RfcommTest
131 mFlow = intentFlow(mContext, intentFilter, mScope).shareIn(mScope, SharingStarted.Eagerly) in <lambda>()
687 runBlocking(mScope.coroutineContext) { in <lambda>()
752 runBlocking(mScope.coroutineContext) { in <lambda>()
787 runBlocking(mScope.coroutineContext) { in <lambda>()
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/
DCellBroadcastChannelManagerTest.java159 assertEquals(list.get(2).mScope, CellBroadcastChannelRange.SCOPE_CARRIER); in verifyChannelRangesForConfig1()
259 assertEquals(list.get(2).mScope, CellBroadcastChannelRange.SCOPE_CARRIER); in verifyChannelRangesForConfig2()