Home
last modified time | relevance | path

Searched refs:scopeId (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/recents/di/
DRecentsDependencies.kt95 val scopeId = viewContext.hashCode().toString() in <lambda>() constant
96 Log.d(TAG, "createRecentsViewScope $scopeId") in <lambda>()
98 createScope(scopeId).apply { in <lambda>()
106 CoroutineName("RecentsView$scopeId") in <lambda>()
111 return scopeId in <lambda>()
115 scopeId: RecentsScopeId = "", in <lambda>()
118 ): T = inject(T::class.java, scopeId = scopeId, extras = extras, factory = factory) in <lambda>()
124 scopeId: RecentsScopeId = DEFAULT_SCOPE_ID, in <lambda>()
128 val currentScopeId = scopeId.ifEmpty { DEFAULT_SCOPE_ID } in <lambda>()
138 factory?.invoke(extras) as T ?: createDependency(modelClass, scopeId, extras) in <lambda>()
[all …]
DRecentsDependenciesScope.kt22 val scopeId: RecentsScopeId, constant in com.android.quickstep.recents.di.RecentsDependenciesScope
50 scopeIds += scope.scopeId in linkTo()
59 if (DEBUG) Log.d(TAG, "[scopeId=$scopeId] $message") in log()
63 "scopeId: $scopeId" + in toString()
/packages/modules/Connectivity/staticlibs/tests/unit/src/com/android/net/module/util/
DInetAddressUtilsTest.java79 final int scopeId = 999; in testWithScopeId() local
84 final Inet6Address updatedGlobalAddr = InetAddressUtils.withScopeId(globalAddr, scopeId); in testWithScopeId()
92 final Inet6Address updatedLocalAddr = InetAddressUtils.withScopeId(localAddr, scopeId); in testWithScopeId()
94 assertEquals(localAddrStr + "%" + scopeId, updatedLocalAddr.getHostAddress()); in testWithScopeId()
95 assertEquals(scopeId, updatedLocalAddr.getScopeId()); in testWithScopeId()
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/util/
DTetheringUtils.java176 public static Inet6Address getAllNodesForScopeId(int scopeId) { in getAllNodesForScopeId() argument
178 return Inet6Address.getByAddress("ff02::1", ALL_NODES, scopeId); in getAllNodesForScopeId()
181 + Arrays.toString(ALL_NODES) + " and scopedId " + scopeId); in getAllNodesForScopeId()
/packages/modules/Connectivity/staticlibs/framework/com/android/net/module/util/
DInetAddressUtils.java70 final int scopeId = hasScopeId ? in.readInt() : 0; in unparcelInetAddress() local
71 return Inet6Address.getByAddress(null /* host */, addressArray, scopeId); in unparcelInetAddress()
/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/
DAspectRatioSystemShortcutTests.kt143 val scopeId = recentsDependencies.createRecentsViewScope(launcher) in setUp() constant
146 scopeId, in setUp()
151 scopeId, in setUp()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DTaskView.kt937 val scopeId = context in <lambda>() constant
938 Log.d(TAG, "onBind $scopeId ${orientedState.containerInterface}") in <lambda>()
942 recentsViewData = RecentsDependencies.get(scopeId), in <lambda>()
943 getTaskUseCase = RecentsDependencies.get(scopeId), in <lambda>()
944 getSysUiStatusNavFlagsUseCase = RecentsDependencies.get(scopeId), in <lambda>()
945 isThumbnailValidUseCase = RecentsDependencies.get(scopeId), in <lambda>()
946 getThumbnailPositionUseCase = RecentsDependencies.get(scopeId), in <lambda>()
947 dispatcherProvider = RecentsDependencies.get(scopeId), in <lambda>()
DRecentsView.java894 String scopeId = recentsDependencies.createRecentsViewScope(context); in RecentsView() local
896 recentsDependencies.inject(RecentTasksRepository.class, scopeId), in RecentsView()
897 recentsDependencies.inject(RecentsViewData.class, scopeId) in RecentsView()
901 recentsDependencies.inject(CoroutineScope.class, scopeId), in RecentsView()
902 recentsDependencies.inject(DispatcherProvider.class, scopeId) in RecentsView()
905 recentsDependencies.provide(RecentsRotationStateRepository.class, scopeId, in RecentsView()
908 recentsDependencies.provide(RecentsDeviceProfileRepository.class, scopeId, in RecentsView()
/packages/modules/Connectivity/framework/src/android/net/
DLinkProperties.java1783 final int scopeId = hasScopeId ? p.readInt() : 0; in readAddress() local
1784 return Inet6Address.getByAddress(null /* host */, addr, scopeId); in readAddress()
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DNsdManagerTest.kt564 assertEquals(ifaceIdx, it.scopeId) in <lambda>()