Searched defs:func (Results 26 - 46 of 46) sorted by relevance

12

/frameworks/native/opengl/libagl/
H A Dstate.cpp226 void glStencilFunc(GLenum func, GLint ref, GLuint mask) { argument
228 if (func < GL_NEVER || func > GL_ALWAYS) {
249 void glAlphaFunc(GLenum func, GLclampf ref) argument
251 glAlphaFuncx(func, gglFloatToFixed(ref));
544 void glDepthFunc(GLenum func) { argument
546 c->rasterizer.procs.depthFunc(c, func);
554 void glAlphaFuncx(GLenum func, GLclampx ref) { argument
556 c->rasterizer.procs.alphaFuncx(c, func, ref);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_context.cpp210 GLMessage_Function func = msg->function(); local
211 if (func == GLMessage::eglSwapBuffers
212 || func == GLMessage::eglCreateContext
213 || func == GLMessage::eglMakeCurrent
214 || func == GLMessage::glDrawArrays
215 || func == GLMessage::glDrawElements) {
H A Dgltrace_fixup.cpp345 GLMessage_Function func = glmsg->function(); local
346 if (func != GLMessage::glGetActiveAttrib && func != GLMessage::glGetActiveUniform) {
352 if (func == GLMessage::glGetActiveAttrib) {
H A Dgltrace_api.cpp1372 void GLTrace_glDepthFunc(GLenum func) { argument
1378 // copy argument func
1382 arg_func->add_intvalue((int)func);
1387 glContext->hooks->gl.glDepthFunc(func);
3890 void GLTrace_glStencilFunc(GLenum func, GLint ref, GLuint mask) { argument
3896 // copy argument func
3900 arg_func->add_intvalue((int)func);
3917 glContext->hooks->gl.glStencilFunc(func, ref, mask);
3930 void GLTrace_glStencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask) { argument
3942 // copy argument func
10350 GLTrace_glAlphaFuncQCOM(GLenum func, GLclampf ref) argument
11166 GLTrace_glAlphaFunc(GLenum func, GLclampf ref) argument
12309 GLTrace_glAlphaFuncx(GLenum func, GLclampx ref) argument
14908 GLTrace_glAlphaFuncxOES(GLenum func, GLclampx ref) argument
[all...]
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp443 int32_t sessionID, int32_t cseq, HandleRTSPResponseFunc func) {
447 mResponseHandlers.add(id, func);
890 HandleRTSPResponseFunc func = mResponseHandlers.valueAt(index); local
893 status_t err = (this->*func)(sessionID, data);
442 registerResponseHandler( int32_t sessionID, int32_t cseq, HandleRTSPResponseFunc func) argument
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocationFactory.cpp37 ApplyFunctionType func; member in struct:ApplyFunctionTriple
71 return ApplyFunctions[type].func(pRelocation, pLDInfo, *this);
/frameworks/av/services/camera/tests/CameraServiceTest/
H A DCameraServiceTest.cpp51 void assert_fail(const char *file, int line, const char *func, const char *expr) { argument
53 file, line, func);
58 void assert_eq_fail(const char *file, int line, const char *func, argument
61 file, line, func);
495 void (*func)(); member in struct:FunctionTableEntry
513 (*function_table[i].func)();
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp142 /* void glAlphaFunc ( GLenum func, GLclampf ref ) */
145 (JNIEnv *_env, jobject _this, jint func, jfloat ref) {
147 (GLenum)func,
152 /* void glAlphaFuncx ( GLenum func, GLclampx ref ) */
155 (JNIEnv *_env, jobject _this, jint func, jint ref) {
157 (GLenum)func,
497 /* void glDepthFunc ( GLenum func ) */
500 (JNIEnv *_env, jobject _this, jint func) {
502 (GLenum)func
3329 /* void glStencilFunc ( GLenum func, GLin
144 android_glAlphaFunc__IF(JNIEnv *_env, jobject _this, jint func, jfloat ref) argument
154 android_glAlphaFuncx__II(JNIEnv *_env, jobject _this, jint func, jint ref) argument
499 android_glDepthFunc__I(JNIEnv *_env, jobject _this, jint func) argument
3331 android_glStencilFunc__III(JNIEnv *_env, jobject _this, jint func, jint ref, jint mask) argument
[all...]
H A Dandroid_opengl_GLES11Ext.cpp587 /* void glAlphaFuncxOES ( GLenum func, GLclampx ref ) */
590 (JNIEnv *_env, jobject _this, jint func, jint ref) {
592 (GLenum)func,
589 android_glAlphaFuncxOES__II(JNIEnv *_env, jobject _this, jint func, jint ref) argument
H A Dandroid_opengl_GLES20.cpp864 /* void glDepthFunc ( GLenum func ) */
867 (JNIEnv *_env, jobject _this, jint func) {
869 (GLenum)func
4462 /* void glStencilFunc ( GLenum func, GLint ref, GLuint mask ) */
4465 (JNIEnv *_env, jobject _this, jint func, jint ref, jint mask) {
4467 (GLenum)func,
4473 /* void glStencilFuncSeparate ( GLenum face, GLenum func, GLint ref, GLuint mask ) */
4476 (JNIEnv *_env, jobject _this, jint face, jint func, jint ref, jint mask) {
4479 (GLenum)func,
866 android_glDepthFunc__I(JNIEnv *_env, jobject _this, jint func) argument
4464 android_glStencilFunc__III(JNIEnv *_env, jobject _this, jint func, jint ref, jint mask) argument
4475 android_glStencilFuncSeparate__IIII(JNIEnv *_env, jobject _this, jint face, jint func, jint ref, jint mask) argument
H A Dcom_google_android_gles_jni_GLImpl.cpp270 /* void glAlphaFunc ( GLenum func, GLclampf ref ) */
273 (JNIEnv *_env, jobject _this, jint func, jfloat ref) {
275 (GLenum)func,
280 /* void glAlphaFuncx ( GLenum func, GLclampx ref ) */
283 (JNIEnv *_env, jobject _this, jint func, jint ref) {
285 (GLenum)func,
625 /* void glDepthFunc ( GLenum func ) */
628 (JNIEnv *_env, jobject _this, jint func) {
630 (GLenum)func
3457 /* void glStencilFunc ( GLenum func, GLin
272 android_glAlphaFunc__IF(JNIEnv *_env, jobject _this, jint func, jfloat ref) argument
282 android_glAlphaFuncx__II(JNIEnv *_env, jobject _this, jint func, jint ref) argument
627 android_glDepthFunc__I(JNIEnv *_env, jobject _this, jint func) argument
3459 android_glStencilFunc__III(JNIEnv *_env, jobject _this, jint func, jint ref, jint mask) argument
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLES11Ext.java272 // C function void glAlphaFuncxOES ( GLenum func, GLclampx ref )
275 int func,
274 glAlphaFuncxOES( int func, int ref ) argument
H A DGLErrorWrapper.java76 public void glAlphaFunc(int func, float ref) { argument
78 mgl.glAlphaFunc(func, ref);
82 public void glAlphaFuncx(int func, int ref) { argument
84 mgl.glAlphaFuncx(func, ref);
219 public void glDepthFunc(int func) { argument
221 mgl.glDepthFunc(func);
718 public void glStencilFunc(int func, int ref, int mask) { argument
720 mgl.glStencilFunc(func, ref, mask);
H A DGLES10.java279 // C function void glAlphaFunc ( GLenum func, GLclampf ref )
282 int func,
286 // C function void glAlphaFuncx ( GLenum func, GLclampx ref )
289 int func,
488 // C function void glDepthFunc ( GLenum func )
491 int func
1130 // C function void glStencilFunc ( GLenum func, GLint ref, GLuint mask )
1133 int func,
281 glAlphaFunc( int func, float ref ) argument
288 glAlphaFuncx( int func, int ref ) argument
1132 glStencilFunc( int func, int ref, int mask ) argument
H A DGLLogWrapper.java1185 public void glAlphaFunc(int func, float ref) { argument
1187 arg("func", func);
1190 mgl.glAlphaFunc(func, ref);
1194 public void glAlphaFuncx(int func, int ref) { argument
1196 arg("func", func);
1199 mgl.glAlphaFuncx(func, ref);
1443 public void glDepthFunc(int func) { argument
1445 arg("func", fun
2354 glStencilFunc(int func, int ref, int mask) argument
[all...]
H A DGLES20.java627 // C function void glDepthFunc ( GLenum func )
630 int func
1440 // C function void glStencilFunc ( GLenum func, GLint ref, GLuint mask )
1443 int func,
1448 // C function void glStencilFuncSeparate ( GLenum face, GLenum func, GLint ref, GLuint mask )
1452 int func,
1442 glStencilFunc( int func, int ref, int mask ) argument
1450 glStencilFuncSeparate( int face, int func, int ref, int mask ) argument
/frameworks/base/services/java/com/android/server/input/
H A DInputManagerService.java1228 private boolean checkCallingPermission(String permission, String func) { argument
1237 String msg = "Permission Denial: " + func + " from pid="
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java93 // C function void glAlphaFunc ( GLenum func, GLclampf ref )
96 int func,
100 // C function void glAlphaFuncx ( GLenum func, GLclampx ref )
103 int func,
302 // C function void glDepthFunc ( GLenum func )
305 int func
939 // C function void glStencilFunc ( GLenum func, GLint ref, GLuint mask )
942 int func,
95 glAlphaFunc( int func, float ref ) argument
102 glAlphaFuncx( int func, int ref ) argument
941 glStencilFunc( int func, int ref, int mask ) argument
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java266 int func,
271 int func,
408 int func
850 int func,
265 glAlphaFunc( int func, float ref ) argument
270 glAlphaFuncx( int func, int ref ) argument
849 glStencilFunc( int func, int ref, int mask ) argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java4919 void enforceCallingPermission(String permission, String func) { argument
4925 String msg = "Permission Denial: " + func + " from pid="
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java3605 boolean checkCallingPermission(String permission, String func) { argument
3615 String msg = "Permission Denial: " + func + " from pid="

Completed in 1258 milliseconds

12