Home
last modified time | relevance | path

Searched refs:exts (Results 1 – 7 of 7) sorted by relevance

/frameworks/native/libs/gui/
DSyncFeatures.cpp44 const char* exts = eglQueryStringImplementationANDROID(dpy, EGL_EXTENSIONS); in SyncFeatures() local
45 LOG_ALWAYS_FATAL_IF(exts == NULL, "eglQueryStringImplementationANDROID failed"); in SyncFeatures()
46 if (strstr(exts, "EGL_ANDROID_native_fence_sync")) { in SyncFeatures()
52 if (strstr(exts, "EGL_KHR_fence_sync")) { in SyncFeatures()
55 if (strstr(exts, "EGL_KHR_wait_sync")) { in SyncFeatures()
DGLConsumer.cpp97 const char* exts = eglQueryStringImplementationANDROID(dpy, EGL_EXTENSIONS); in hasEglAndroidImageCropImpl() local
99 size_t extsLen = strlen(exts); in hasEglAndroidImageCropImpl()
100 bool equal = !strcmp(CROP_EXT_STR, exts); in hasEglAndroidImageCropImpl()
101 bool atStart = !strncmp(CROP_EXT_STR " ", exts, cropExtLen+1); in hasEglAndroidImageCropImpl()
103 !strcmp(" " CROP_EXT_STR, exts + extsLen - (cropExtLen+1)); in hasEglAndroidImageCropImpl()
104 bool inMiddle = strstr(exts, " " CROP_EXT_STR " "); in hasEglAndroidImageCropImpl()
/frameworks/base/tools/aapt/tests/
DFileFinder_test.cpp44 Vector<String8> exts; in main() local
45 exts.push(String8(".png")); in main()
57 bool findStatus = FileFinder::findFiles(path,exts, testStorage, sdw); in main()
/frameworks/native/opengl/libs/EGL/
Degl_cache.cpp94 const char* exts = display->disp.queryString.extensions; in initialize() local
96 size_t extsLen = strlen(exts); in initialize()
97 bool equal = !strcmp(BC_EXT_STR, exts); in initialize()
98 bool atStart = !strncmp(BC_EXT_STR " ", exts, bcExtLen+1); in initialize()
100 !strcmp(" " BC_EXT_STR, exts + extsLen - (bcExtLen+1)); in initialize()
101 bool inMiddle = strstr(exts, " " BC_EXT_STR " "); in initialize()
Degl_object.cpp109 const char* exts = (const char *)gEGLImpl.hooks[version]->gl.glGetString(GL_EXTENSIONS); in onMakeCurrent() local
110 gl_extensions.setTo(exts); in onMakeCurrent()
Degl_display.cpp47 static bool findExtension(const char* exts, const char* name, size_t nameLen) { in findExtension() argument
48 if (exts) { in findExtension()
49 const char* match = strstr(exts, name); in findExtension()
/frameworks/native/services/surfaceflinger/RenderEngine/
DRenderEngine.cpp34 static bool findExtension(const char* exts, const char* name) { in findExtension() argument
35 if (!exts) in findExtension()
39 const char* pos = exts; in findExtension()