Home
last modified time | relevance | path

Searched refs:mLibrary (Results 1 – 19 of 19) sorted by relevance

/aosp12/hardware/interfaces/cas/1.0/default/
H A DFactoryLoader.h56 sp<SharedLibrary> mLibrary; variable
172 *library = mLibrary; in loadFactoryForSchemeFromPath()
204 mLibrary = mLibraryPathToOpenLibraryMap[index].promote(); in openFactory()
209 if (!mLibrary.get()) { in openFactory()
210 mLibrary = new SharedLibrary(path); in openFactory()
211 if (!*mLibrary) { in openFactory()
215 mLibraryPathToOpenLibraryMap.replaceValueAt(index, mLibrary); in openFactory()
219 (CreateFactoryFunc)mLibrary->lookup(mCreateFactoryFuncName); in openFactory()
230 mLibrary.clear(); in closeFactory()
H A DDescramblerImpl.h57 sp<SharedLibrary> mLibrary;
H A DCasImpl.h90 sp<SharedLibrary> mLibrary; variable
H A DDescramblerImpl.cpp55 mLibrary(library), mPluginHolder(plugin) { in DescramblerImpl()
H A DCasImpl.cpp60 mLibrary = library; in init()
/aosp12/hardware/interfaces/cas/1.1/default/
H A DFactoryLoader.h55 sp<SharedLibrary> mLibrary; variable
160 *library = mLibrary; in loadFactoryForSchemeFromPath()
191 mLibrary = mLibraryPathToOpenLibraryMap[index].promote(); in openFactory()
196 if (!mLibrary.get()) { in openFactory()
197 mLibrary = new SharedLibrary(path); in openFactory()
198 if (!*mLibrary) { in openFactory()
202 mLibraryPathToOpenLibraryMap.replaceValueAt(index, mLibrary); in openFactory()
205 CreateFactoryFunc createFactory = (CreateFactoryFunc)mLibrary->lookup(mCreateFactoryFuncName); in openFactory()
216 mLibrary.clear(); in closeFactory()
H A DDescramblerImpl.h55 sp<SharedLibrary> mLibrary;
H A DCasImpl.h85 sp<SharedLibrary> mLibrary; variable
H A DDescramblerImpl.cpp52 : mLibrary(library), mPluginHolder(plugin) { in DescramblerImpl()
H A DCasImpl.cpp65 mLibrary = library; in init()
/aosp12/hardware/interfaces/cas/1.2/default/
H A DFactoryLoader.h55 sp<SharedLibrary> mLibrary; variable
160 *library = mLibrary; in loadFactoryForSchemeFromPath()
191 mLibrary = mLibraryPathToOpenLibraryMap[index].promote(); in openFactory()
196 if (!mLibrary.get()) { in openFactory()
197 mLibrary = new SharedLibrary(path); in openFactory()
198 if (!*mLibrary) { in openFactory()
202 mLibraryPathToOpenLibraryMap.replaceValueAt(index, mLibrary); in openFactory()
205 CreateFactoryFunc createFactory = (CreateFactoryFunc)mLibrary->lookup(mCreateFactoryFuncName); in openFactory()
216 mLibrary.clear(); in closeFactory()
H A DDescramblerImpl.h55 sp<SharedLibrary> mLibrary;
H A DCasImpl.h98 sp<SharedLibrary> mLibrary; variable
H A DDescramblerImpl.cpp52 : mLibrary(library), mPluginHolder(plugin) { in DescramblerImpl()
H A DCasImpl.cpp76 mLibrary = library; in init()
/aosp12/packages/apps/Car/tests/TestMediaApp/src/com/android/car/media/testmediaapp/
H A DTmaBrowser.java76 private TmaLibrary mLibrary; field in TmaBrowser
100 mLibrary = new TmaLibrary(new TmaLoader(this)); in onCreate()
102 mPlayer = new TmaPlayer(this, mLibrary, audioManager, mHandler, mSession); in onCreate()
193 TmaMediaItem queue = mLibrary.getRoot(LEAF_CHILDREN); in onLoadChildren()
208 return mLibrary.getRoot(mPrefs.mRootNodeType.getValue()); in getRoot()
222 node = mLibrary.getMediaItemById(parentId); in getMediaItemsWithDelay()
285 child = mLibrary.getMediaItemById(child.getMediaId()); in addSearchResults()
H A DTmaPlayer.java68 private final TmaLibrary mLibrary; field in TmaPlayer
90 mLibrary = library; in TmaPlayer()
150 playItem(mLibrary.getMediaItemById(mediaId)); in onPlayFromMediaId()
157 TmaMediaItem item = mLibrary.getMediaItemById(mediaId); in onPrepareFromMediaId()
169 TmaMediaItem root = mLibrary.getRoot(mPrefs.mRootNodeType.getValue()); in onPrepare()
279 mBrowser.toggleItem(mLibrary.getMediaItemById(event.mMediaItemIdToToggle)); in onProcessMediaEvent()
/aosp12/frameworks/rs/
H A DrsFont.cpp338 mLibrary = nullptr; in FontState()
384 if (!mLibrary) { in getLib()
385 FT_Error error = FT_Init_FreeType(&mLibrary); in getLib()
392 return mLibrary; in getLib()
832 if (mLibrary) { in deinit()
833 FT_Done_FreeType( mLibrary ); in deinit()
834 mLibrary = nullptr; in deinit()
H A DrsFont.h203 FT_LibraryRec_ *mLibrary; variable