OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_returnvalue
(Results
1 - 11
of
11
) sorted by null
/frameworks/base/core/jni/
android_opengl_EGL14.cpp
137
EGLint
_returnValue
= (EGLint) 0;
138
_returnValue
= eglGetError();
139
return
_returnValue
;
146
EGLDisplay
_returnValue
= (EGLDisplay) 0;
147
_returnValue
= eglGetDisplay(
150
return toEGLHandle(_env, egldisplayClass, egldisplayConstructor,
_returnValue
);
160
EGLBoolean
_returnValue
= (EGLBoolean) 0;
215
_returnValue
= eglInitialize(
233
return
_returnValue
;
240
EGLBoolean
_returnValue
= (EGLBoolean) 0
[
all
...]
android_opengl_EGLExt.cpp
138
EGLBoolean
_returnValue
= (EGLBoolean) 0;
142
_returnValue
= eglPresentationTimeANDROID(
147
return (jboolean)
_returnValue
;
android_opengl_GLES10Ext.cpp
327
GLbitfield
_returnValue
= -1;
381
_returnValue
= glQueryMatrixxOES(
398
return
_returnValue
;
412
GLbitfield
_returnValue
= -1;
440
_returnValue
= glQueryMatrixxOES(
455
return
_returnValue
;
android_opengl_GLES20.cpp
548
GLenum
_returnValue
;
549
_returnValue
= glCheckFramebufferStatus(
552
return
_returnValue
;
710
GLuint
_returnValue
;
711
_returnValue
= glCreateProgram();
712
return
_returnValue
;
719
GLuint
_returnValue
;
720
_returnValue
= glCreateShader(
723
return
_returnValue
;
[
all
...]
android_opengl_GLES30.cpp
727
GLboolean
_returnValue
;
728
_returnValue
= glIsQuery(
731
return (jboolean)
_returnValue
;
893
GLboolean
_returnValue
;
894
_returnValue
= glUnmapBuffer(
897
return (jboolean)
_returnValue
;
[
all
...]
com_google_android_gles_jni_GLImpl.cpp
[
all
...]
android_opengl_GLES11.cpp
[
all
...]
android_opengl_GLES11Ext.cpp
[
all
...]
android_opengl_GLES10.cpp
[
all
...]
/frameworks/native/opengl/tools/glgen/stubs/egl/
eglCreateWindowSurface.cpp
8
EGLSurface
_returnValue
= (EGLSurface) 0;
60
_returnValue
= eglCreateWindowSurface(
75
return toEGLHandle(_env, eglsurfaceClass, eglsurfaceConstructor,
_returnValue
);
85
EGLSurface
_returnValue
= (EGLSurface) 0;
142
_returnValue
= eglCreateWindowSurface(
157
return toEGLHandle(_env, eglsurfaceClass, eglsurfaceConstructor,
_returnValue
);
/frameworks/native/opengl/tools/glgen/src/
JniCodeEmitter.java
162
jfunc.getType() + "
_returnValue
;");
165
(isVoid ? "" : "
_returnValue
= ") +
658
out.println(indent + indent + "return
_returnValue
;");
872
// Emit local variable declarations for _exception and
_returnValue
879
// GLenum
_returnValue
;
[
all
...]
Completed in 225 milliseconds