Home
last modified time | relevance | path

Searched refs:ti (Results 1 – 7 of 7) sorted by relevance

/device/generic/goldfish/opengl/tests/gles_android_wrapper/
DThreadInfo.cpp24 EGLThreadInfo *ti = (EGLThreadInfo *)ptr; in tlsDestruct() local
25 delete ti->serverConn; in tlsDestruct()
26 delete ti; in tlsDestruct()
32 EGLThreadInfo *ti = (EGLThreadInfo *)thread_store_get(&s_tls); in getEGLThreadInfo() local
33 if (ti) return ti; in getEGLThreadInfo()
35 ti = new EGLThreadInfo(); in getEGLThreadInfo()
36 thread_store_set(&s_tls, ti, tlsDestruct); in getEGLThreadInfo()
38 return ti; in getEGLThreadInfo()
DServerConnection.cpp26 EGLThreadInfo *ti = getEGLThreadInfo(); in s_getGlContext() local
27 if (ti->serverConn) { in s_getGlContext()
28 return ti->serverConn->m_glEnc; in s_getGlContext()
35 EGLThreadInfo *ti = getEGLThreadInfo(); in s_getGl2Context() local
36 if (ti->serverConn) { in s_getGl2Context()
37 return ti->serverConn->m_gl2Enc; in s_getGl2Context()
44 EGLThreadInfo *ti = getEGLThreadInfo(); in s_getServerConnection() local
45 if (!ti->serverConn) in s_getServerConnection()
47 ti->serverConn = new ServerConnection(); in s_getServerConnection()
48 if (ti->serverConn->create() < 0) { in s_getServerConnection()
[all …]
Degl.cpp514 EGLThreadInfo *ti = getEGLThreadInfo(); in eglDestroyContext() local
517 server->utEnc()->destroyContext(ti->serverConn->utEnc(), getpid(), (uint32_t)ctx); in eglDestroyContext()
519 if (ti->currentContext == wctx) ti->currentContext = NULL; in eglDestroyContext()
531 EGLThreadInfo *ti = getEGLThreadInfo(); in eglMakeCurrent() local
548 ti->currentContext = wctx; in eglMakeCurrent()
556 EGLThreadInfo *ti = getEGLThreadInfo(); in eglGetCurrentContext() local
557 return (ti->currentContext ? ti->currentContext : EGL_NO_CONTEXT); in eglGetCurrentContext()
/device/generic/goldfish/opengl/system/OpenglSystemCommon/
DThreadInfo.cpp24 EGLThreadInfo *ti = (EGLThreadInfo *)ptr; in tlsDestruct() local
25 delete ti->hostConn; in tlsDestruct()
26 delete ti; in tlsDestruct()
33 EGLThreadInfo *ti = (EGLThreadInfo *)thread_store_get(&s_tls); in slow_getEGLThreadInfo() local
34 if (ti) return ti; in slow_getEGLThreadInfo()
36 ti = new EGLThreadInfo(); in slow_getEGLThreadInfo()
37 thread_store_set(&s_tls, ti, tlsDestruct); in slow_getEGLThreadInfo()
39 return ti; in slow_getEGLThreadInfo()
DHostConnection.cpp139 EGLThreadInfo *ti = getEGLThreadInfo(); in s_getGLContext() local
140 if (ti->hostConn) { in s_getGLContext()
141 return ti->hostConn->m_glEnc; in s_getGLContext()
148 EGLThreadInfo *ti = getEGLThreadInfo(); in s_getGL2Context() local
149 if (ti->hostConn) { in s_getGL2Context()
150 return ti->hostConn->m_gl2Enc; in s_getGL2Context()
/device/moto/shamu/
Dreleasetools.py174 for ti in tm.unpacked_images:
175 if ti not in blacklist:
176 si = sm.GetUnpackedImage(ti.name)
179 if ti.size == si.size and ti.sha1 == si.sha1:
180 print "target bootloader partition image %s matches source; skipping" % ti.name
181 blacklist.append(ti.name)
/device/huawei/angler/
Dreleasetools.py191 for ti in tm.unpacked_images.values():
192 if ti not in blacklist:
193 si = sm.GetUnpackedImage(ti.name)
196 if ti.size == si.size and ti.sha1 == si.sha1:
198 ti.name)
199 blacklist.append(ti.name)