Searched refs:major (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/native/opengl/libs/EGL/
H A Degldefs.h43 EGLint major; member in struct:android::egl_connection_t
H A Degl_display.cpp132 EGLBoolean egl_display_t::initialize(EGLint *major, EGLint *minor) { argument
138 if (major != NULL)
139 *major = VERSION_MAJOR;
162 cnx->major = -1;
166 if (cnx->egl.eglInitialize(idpy, &cnx->major, &cnx->minor)) {
168 // idpy, cnx->major, cnx->minor, cnx);
224 if (major != NULL)
225 *major = VERSION_MAJOR;
H A Degl_display.h62 EGLBoolean initialize(EGLint *major, EGLint *minor);
H A Degl_cache.cpp90 if (cnx->dso && cnx->major >= 0 && cnx->minor >= 0) {
/frameworks/native/opengl/tools/glgen/specs/egl/
H A Dchecks.spec1 eglInitialize nullAllowed major nullAllowed minor check major 1 check minor 1
H A DEGL14.spec3 EGLBoolean eglInitialize ( EGLDisplay dpy, EGLint *major, EGLint *minor )
/frameworks/webview/chromium/plat_support/
H A Ddraw_sw.h51 typedef void (SkiaVersionFunction)(int* major, int* minor, int* patch);
/frameworks/base/core/java/android/content/pm/
H A DConfigurationInfo.java79 * major version and the lower order 16 bits the minor version.
135 * This method extracts the major and minor version of reqGLEsVersion attribute
141 int major = ((reqGlEsVersion & 0xffff0000) >> 16);
143 return String.valueOf(major)+"."+String.valueOf(minor);
H A DFeatureInfo.java64 * major version and the lower order 16 bits the minor version. Only valid
135 * This method extracts the major and minor version of reqGLEsVersion attribute
141 int major = ((reqGlEsVersion & 0xffff0000) >> 16);
143 return String.valueOf(major)+"."+String.valueOf(minor);
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DHwModule.h57 void setHalVersion(uint32_t major, uint32_t minor) { argument
58 mHalVersion = (major << 8) | (minor & 0xff);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp183 int major, minor; local
184 if (sscanf(str, "OpenGL ES-CM %d.%d", &major, &minor) != 2) {
185 if (sscanf(str, "OpenGL ES %d.%d", &major, &minor) != 2) {
191 if (major == 1 && minor == 0) return GLES_VERSION_1_0;
192 if (major == 1 && minor >= 1) return GLES_VERSION_1_1;
193 if (major == 2 && minor >= 0) return GLES_VERSION_2_0;
194 if (major == 3 && minor >= 0) return GLES_VERSION_3_0;
196 ALOGW("Unrecognized OpenGL ES version: %d.%d", major, minor);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/inc/
H A DH264SwDecApi.h134 u32 major; /* Decoder API major version */ member in struct:__anon614
/frameworks/support/buildSrc/
H A Ddiff_and_docs.gradle268 def major = matcher[0][1] as int
271 if (lastFile == null || major > lastMajor || (major == lastMajor && minor > lastMinor)) {
272 if (refMajor > major || (refMajor == major && refMinor > minor)) {
274 lastMajor = major;
/frameworks/base/libs/hwui/renderthread/
H A DEglManager.cpp99 EGLint major, minor; local
100 LOG_ALWAYS_FATAL_IF(eglInitialize(mEglDisplay, &major, &minor) == EGL_FALSE,
103 ALOGI("Initialized EGL, version %d.%d", (int)major, (int)minor);
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DConfigParsingUtils.cpp357 uint32_t major, minor; local
358 sscanf((char *)node->value, "%u.%u", &major, &minor);
359 module->setHalVersion(major, minor);
360 ALOGV("loadGlobalConfig() mHalVersion = major %u minor %u", major, minor);
/frameworks/rs/rsov/driver/
H A DrsovCore.cpp301 extern "C" bool rsdHalQueryVersion(uint32_t *major, uint32_t *minor) { argument
302 *major = RS_HAL_VERSION;
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraProviderManager.cpp555 uint16_t major, minor; local
558 status_t res = parseDeviceName(name, &major, &minor, &type, &id);
567 if (mManager->isValidDeviceLocked(id, major)) {
568 ALOGE("%s: Device %s: ID %s is already in use for device major version %d", __FUNCTION__,
569 name.c_str(), id.c_str(), major);
574 switch (major) {
584 ALOGE("%s: Device %s: Unknown HIDL device HAL major version %d:", __FUNCTION__,
585 name.c_str(), major);
754 ALOGE("%s: Device %s: Unknown HIDL device HAL major version %d:", __FUNCTION__,
1077 uint16_t *major, uint16_
1076 parseDeviceName(const std::string& name, uint16_t *major, uint16_t *minor, std::string *type, std::string *id) argument
[all...]
/frameworks/multidex/library/src/android/support/multidex/
H A DMultiDex.java204 int major = Integer.parseInt(matcher.group(1));
206 isMultidexCapable = (major > VM_WITH_MULTIDEX_VERSION_MAJOR)
207 || ((major == VM_WITH_MULTIDEX_VERSION_MAJOR)
/frameworks/base/core/jni/
H A Dcom_android_internal_os_Zygote.cpp380 int major;
387 if (sscanf(uts.release, "%d.%d", &major, &minor) != 2) {
392 return (major < 3) || ((major == 3) && (minor < 4));
/frameworks/base/libs/hwui/debug/
H A Dnullegl.cpp63 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) { argument
/frameworks/rs/driver/
H A DrsdCore.cpp271 extern "C" bool rsdHalQueryVersion(uint32_t *major, uint32_t *minor) { argument
272 *major = RS_HAL_VERSION;
/frameworks/base/tests/CoreTests/android/core/
H A DTestEventHandler.java152 * @param major_version The HTTP major version
160 Log.v(LOGTAG, "TestEventHandler:status() major: " + major_version +
622 public void expectStatus(int major, int minor, int code) { argument
624 expectMajor = major;
/frameworks/native/services/surfaceflinger/tests/hwc2/
H A DHwc2TestBuffer.cpp132 EGLint major;
134 if (!eglInitialize(mEglDisplay, &major, &minor)) {
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DH264SwDecApi.c506 ver.major = H264SWDEC_MAJOR_VERSION;
/frameworks/base/opengl/java/android/opengl/
H A DEGL14.java170 // C function EGLBoolean eglInitialize ( EGLDisplay dpy, EGLint *major, EGLint *minor )
174 int[] major,
172 eglInitialize( EGLDisplay dpy, int[] major, int majorOffset, int[] minor, int minorOffset ) argument

Completed in 622 milliseconds

12