Searched refs:mDependencies (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/ |
D | PluginDependencyProvider.java | 31 private final ArrayMap<Class<?>, Object> mDependencies = new ArrayMap<>(); field in PluginDependencyProvider 47 synchronized (mDependencies) { in allowPluginDependency() 48 mDependencies.put(cls, obj); in allowPluginDependency() 57 synchronized (mDependencies) { in get() 58 if (!mDependencies.containsKey(cls)) { in get() 61 return (T) mDependencies.get(cls); in get()
|
/frameworks/base/core/java/android/content/pm/ |
D | SharedLibraryInfo.java | 101 private List<SharedLibraryInfo> mDependencies; field in SharedLibraryInfo 128 mDependencies = dependencies; in SharedLibraryInfo() 213 if (mDependencies == null) { in addDependency() 214 mDependencies = new ArrayList<>(); in addDependency() 216 mDependencies.add(info); in addDependency() 225 mDependencies = null; in clearDependencies() 238 return mDependencies; in getDependencies() 325 parcel.writeTypedList(mDependencies); in writeToParcel()
|
/frameworks/base/core/java/android/content/pm/split/ |
D | SplitDependencyLoader.java | 42 private final @NonNull SparseArray<int[]> mDependencies; field in SplitDependencyLoader 50 mDependencies = dependencies; in SplitDependencyLoader() 83 final int[] deps = mDependencies.get(splitIdx); in loadDependenciesForSplit() 109 final int[] deps = mDependencies.get(splitIdx); in collectConfigSplitIndices()
|
/frameworks/base/tests/net/java/android/net/ip/ |
D | IpServerTest.java | 105 @Mock private IpServer.Dependencies mDependencies; field in IpServerTest 129 }).when(mDependencies).makeDhcpServer(any(), mDhcpParamsCaptor.capture(), any()); in initStateMachine() 130 when(mDependencies.getRouterAdvertisementDaemon(any())).thenReturn(mRaDaemon); in initStateMachine() 131 when(mDependencies.getInterfaceParams(IFACE_NAME)).thenReturn(TEST_IFACE_PARAMS); in initStateMachine() 132 when(mDependencies.getNetdService()).thenReturn(mNetd); in initStateMachine() 136 mNMService, mStatsService, mCallback, usingLegacyDhcp, mDependencies); in initStateMachine() 172 false /* usingLegacyDhcp */, mDependencies); in startsOutAvailable() 426 verify(mDependencies, never()).makeDhcpServer(any(), any(), any()); in doesNotStartDhcpServerIfDisabled() 430 verify(mDependencies, times(1)).makeDhcpServer(eq(IFACE_NAME), any(), any()); in assertDhcpStarted()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | Dependency.java | 198 private final ArrayMap<Object, Object> mDependencies = new ArrayMap<>(); field in Dependency 509 mDependencies.values().stream() in dump() 518 mDependencies.values().stream().filter(obj -> obj instanceof ConfigurationChangedReceiver) in onConfigurationChanged() 532 T obj = (T) mDependencies.get(key); in getDependencyInner() 535 mDependencies.put(key, obj); in getDependencyInner() 564 T dep = (T) mDependencies.remove(cls); in destroyDependency()
|
/frameworks/av/media/codec2/vndk/util/ |
D | C2InterfaceHelper.cpp | 87 std::move(mName), std::move(mDependencies)); in build() 170 mDependencies = indices; in setDependencies() 248 std::vector<C2Param::Index> mDependencies; member in C2InterfaceHelper::ParamHelper::Impl
|