Searched defs:ctx (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/net/
H A DProxy.java41 * @param ctx A Context used to get the settings for the proxy host.
46 static final public String getHost(Context ctx) { argument
47 ContentResolver contentResolver = ctx.getContentResolver();
67 * @param ctx A Context used to get the settings for the proxy port.
70 static final public int getPort(Context ctx) { argument
71 ContentResolver contentResolver = ctx.getContentResolver();
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLContextImpl.java27 public EGLContextImpl(int ctx) { argument
28 mEGLContext = ctx;
/frameworks/base/services/java/com/android/server/
H A DBootReceiver.java92 private void removeOldUpdatePackages(Context ctx) { argument
94 ctx, OLD_UPDATER_PACKAGE, OLD_UPDATER_CLASS);
97 private void logBootEvents(Context ctx) throws IOException { argument
98 final DropBoxManager db = (DropBoxManager) ctx.getSystemService(Context.DROPBOX_SERVICE);
99 final SharedPreferences prefs = ctx.getSharedPreferences("log_files", Context.MODE_PRIVATE);
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_EGLImpl.cpp163 EGLContext ctx = getContext(_env, context); local
168 success = eglQueryContext(dpy, ctx, attribute, base);
240 EGLContext ctx = eglCreateContext(dpy, cnf, shr, base); local
242 return (jint)ctx;
416 EGLContext ctx = getContext(_env, context); local
417 return eglDestroyContext(dpy, ctx);
451 EGLContext ctx = getContext(_env, context); local
452 return eglMakeCurrent(dpy, sdr, srd, ctx);
/frameworks/base/opengl/libs/EGL/
H A Degl.cpp255 tls_t() : error(EGL_SUCCESS), ctx(0), logCallWithNoContext(EGL_TRUE) { }
257 EGLContext ctx; member in struct:android::tls_t
350 void setContext(EGLContext ctx) { argument
358 tls->ctx = ctx;
367 return tls->ctx;
510 static EGLBoolean validate_display_context(EGLDisplay dpy, EGLContext ctx) argument
516 if (!get_context(ctx)->isAlive())
1136 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx) argument
1138 ContextRef _c(ctx);
1174 eglMakeCurrent( EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx) argument
1270 eglQueryContext( EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value) argument
1299 EGLContext ctx = getContext(); local
1308 EGLContext ctx = getContext(); local
1326 EGLContext ctx = getContext(); local
1341 EGLContext ctx = getContext(); local
1361 EGLContext ctx = getContext(); local
1587 EGLContext ctx = getContext(); local
1720 eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list) argument
[all...]
/frameworks/base/opengl/libagl/
H A Degl.cpp123 static inline egl_context_t* context(EGLContext ctx) { argument
124 ogles_context_t* const gl = static_cast<ogles_context_t*>(ctx);
141 EGLContext ctx; member in struct:android::egl_surface_t
168 : magic(MAGIC), dpy(dpy), config(config), ctx(0)
1613 if (surface->ctx) {
1616 surface->ctx = 0;
1705 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx) argument
1709 egl_context_t* c = egl_context_t::context(ctx);
1712 ogles_uninit((ogles_context_t*)ctx);
1717 EGLSurface read, EGLContext ctx)
1716 eglMakeCurrent( EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx) argument
1839 EGLContext ctx = (EGLContext)getGlThreadSpecific(); local
1855 EGLContext ctx = (EGLContext)getGlThreadSpecific(); local
1861 eglQueryContext( EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value) argument
2052 eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list) argument
[all...]

Completed in 653 milliseconds