Home
last modified time | relevance | path

Searched refs:pLibrary (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/
Dswr_loader.cpp37 screen->pLibrary = NULL; in swr_initialize_screen_interface()
46 screen->pLibrary = util_dl_open(filename); in swr_initialize_screen_interface()
47 if (!screen->pLibrary) { in swr_initialize_screen_interface()
52 util_dl_proc pApiProc = util_dl_get_proc_address(screen->pLibrary, in swr_initialize_screen_interface()
54 util_dl_proc pTileApiProc = util_dl_get_proc_address(screen->pLibrary, in swr_initialize_screen_interface()
56 util_dl_proc pInitFunc = util_dl_get_proc_address(screen->pLibrary, in swr_initialize_screen_interface()
60 util_dl_close(screen->pLibrary); in swr_initialize_screen_interface()
61 screen->pLibrary = NULL; in swr_initialize_screen_interface()
Dswr_screen.h58 util_dl_library *pLibrary; member
Dswr_screen.cpp1041 if ((*screen)->pLibrary) in swr_destroy_screen_internal()
1042 util_dl_close((*screen)->pLibrary); in swr_destroy_screen_internal()
/external/pdfium/core/fxge/
Dcfx_fontmgr.cpp64 FXFT_LibraryRec* pLibrary = nullptr; in FTLibraryInitHelper() local
65 FT_Init_FreeType(&pLibrary); in FTLibraryInitHelper()
66 return pLibrary; in FTLibraryInitHelper()
/external/pdfium/core/fxge/android/
Dcfpf_skiafontmgr.cpp241 FXFT_LibraryRec* pLibrary = nullptr; in InitFTLibrary() local
242 FT_Init_FreeType(&pLibrary); in InitFTLibrary()
243 if (!pLibrary) in InitFTLibrary()
246 m_FTLibrary.reset(pLibrary); in InitFTLibrary()