Searched defs:major (Results 1 - 19 of 19) sorted by relevance

/frameworks/native/opengl/libs/EGL/
H A Degldefs.h43 EGLint major; member in struct:android::egl_connection_t
H A Degl_display.cpp145 EGLBoolean egl_display_t::initialize(EGLint *major, EGLint *minor) { argument
151 if (major != NULL)
152 *major = VERSION_MAJOR;
175 cnx->major = -1;
179 if (cnx->egl.eglInitialize(idpy, &cnx->major, &cnx->minor)) {
181 // idpy, cnx->major, cnx->minor, cnx);
271 if (major != NULL)
272 *major = VERSION_MAJOR;
H A DeglApi.cpp303 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) argument
310 EGLBoolean res = dp->initialize(major, minor);
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DHwModule.h55 void setHalVersion(uint32_t major, uint32_t minor) { argument
56 mHalVersion = (major << 8) | (minor & 0xff);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/
H A DEuiccSpecVersion.java29 * This represents the version of GSMA SGP.22 spec in the form of 3 numbers: major, minor, and
77 public EuiccSpecVersion(int major, int minor, int revision) { argument
78 mVersionValues[0] = major;
/frameworks/rs/driver/
H A DrsdCore.cpp271 extern "C" bool rsdHalQueryVersion(uint32_t *major, uint32_t *minor) { argument
272 *major = RS_HAL_VERSION;
/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/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/base/libs/hwui/renderthread/
H A DEglManager.cpp106 EGLint major, minor; local
107 LOG_ALWAYS_FATAL_IF(eglInitialize(mEglDisplay, &major, &minor) == EGL_FALSE,
110 ALOGI("Initialized EGL, version %d.%d", (int)major, (int)minor);
/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java53 * The major version number of this package, as specified by the &lt;manifest&gt;
82 * @hide Internal implementation for composing a minor and major version code in to
85 public static long composeLongVersionCode(int major, int minor) { argument
86 return (((long) major) << 32) | (((long) minor) & 0xffffffffL);
/frameworks/base/libs/hwui/debug/
H A Dnullegl.cpp63 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint* major, EGLint* minor) { argument
/frameworks/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java207 // Draw an oval. When angle is 0 radians, orients the major axis vertically,
208 // angles less than or greater than 0 radians rotate the major axis left or right.
210 private void drawOval(Canvas canvas, float x, float y, float major, float minor, argument
216 mReusableOvalRect.top = y - major / 2;
217 mReusableOvalRect.bottom = y + major / 2;
/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/av/services/camera/libcameraservice/common/
H A DCameraProviderManager.cpp593 uint16_t major, minor; local
596 status_t res = parseDeviceName(name, &major, &minor, &type, &id);
605 if (mManager->isValidDeviceLocked(id, major)) {
606 ALOGE("%s: Device %s: ID %s is already in use for device major version %d", __FUNCTION__,
607 name.c_str(), id.c_str(), major);
612 switch (major) {
622 ALOGE("%s: Device %s: Unknown HIDL device HAL major version %d:", __FUNCTION__,
623 name.c_str(), major);
822 uint16_t major, minor; local
824 status_t res = parseDeviceName(conflictName, &major,
1184 parseDeviceName(const std::string& name, uint16_t *major, uint16_t *minor, std::string *type, std::string *id) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_EGL14.cpp170 /* EGLBoolean eglInitialize ( EGLDisplay dpy, EGLint *major, EGLint *minor ) */
181 EGLint *major = (EGLint *) 0; local
202 major = major_base + majorOffset;
226 (EGLint *)major,
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp310 int major, minor; local
311 if (sscanf(str, "OpenGL ES-CM %d.%d", &major, &minor) != 2) {
312 if (sscanf(str, "OpenGL ES %d.%d", &major, &minor) != 2) {
318 if (major == 1 && minor == 0) return GLES_VERSION_1_0;
319 if (major == 1 && minor >= 1) return GLES_VERSION_1_1;
320 if (major == 2 && minor >= 0) return GLES_VERSION_2_0;
321 if (major == 3 && minor >= 0) return GLES_VERSION_3_0;
323 ALOGW("Unrecognized OpenGL ES version: %d.%d", major, minor);
/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
/frameworks/native/services/inputflinger/
H A DEventHub.cpp93 static void getLinuxRelease(int* major, int* minor) { argument
95 if (uname(&info) || sscanf(info.release, "%d.%d", major, minor) <= 0) {
96 *major = 0, *minor = 0;
244 int major, minor;
245 getLinuxRelease(&major, &minor);
247 mUsingEpollWakeup = major > 3 || (major == 3 && minor >= 5);
/frameworks/native/opengl/libagl/
H A Degl.cpp1454 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) argument
1469 if (major != NULL) *major = VERSION_MAJOR;

Completed in 5531 milliseconds