Searched refs:exts (Results 1 - 7 of 7) sorted by last modified time

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

Completed in 1475 milliseconds