Searched refs:mDl (Results 1 – 4 of 4) sorted by relevance
/device/google/cuttlefish_common/guest/hals/camera/ |
D | JpegCompressor.cpp | 31 void* NV21JpegCompressor::mDl = NULL; member in android::NV21JpegCompressor 48 if (mDl == NULL) { in NV21JpegCompressor() 49 mDl = dlopen("/vendor/lib/hw/camera.cutf.jpeg.so", RTLD_NOW); in NV21JpegCompressor() 51 if (mDl == NULL) { in NV21JpegCompressor() 52 mDl = dlopen("/system/lib/hw/camera.cutf.jpeg.so", RTLD_NOW); in NV21JpegCompressor() 54 assert(mDl != NULL); in NV21JpegCompressor() 56 InitFunc f = (InitFunc)getSymbol(mDl, "JpegStub_init"); in NV21JpegCompressor() 61 CleanupFunc f = (CleanupFunc)getSymbol(mDl, "JpegStub_cleanup"); in ~NV21JpegCompressor() 76 CompressFunc f = (CompressFunc)getSymbol(mDl, "JpegStub_compress"); in compressRawImage() 82 (GetCompressedSizeFunc)getSymbol(mDl, "JpegStub_getCompressedSize"); in getCompressedSize() [all …]
|
D | JpegCompressor.h | 86 static void* mDl;
|
/device/generic/goldfish/camera/ |
D | JpegCompressor.cpp | 31 void* NV21JpegCompressor::mDl = NULL; member in android::NV21JpegCompressor 50 if (mDl == NULL) { in NV21JpegCompressor() 51 mDl = dlopen(dlName, RTLD_NOW); in NV21JpegCompressor() 53 assert(mDl != NULL); in NV21JpegCompressor() 55 InitFunc f = (InitFunc)getSymbol(mDl, "JpegStub_init"); in NV21JpegCompressor() 61 CleanupFunc f = (CleanupFunc)getSymbol(mDl, "JpegStub_cleanup"); in ~NV21JpegCompressor() 75 CompressFunc f = (CompressFunc)getSymbol(mDl, "JpegStub_compress"); in compressRawImage() 82 GetCompressedSizeFunc f = (GetCompressedSizeFunc)getSymbol(mDl, in getCompressedSize() 89 GetCompressedImageFunc f = (GetCompressedImageFunc)getSymbol(mDl, in getCompressedImage()
|
D | JpegCompressor.h | 87 static void* mDl;
|