Home
last modified time | relevance | path

Searched refs:ti (Results 1 – 10 of 10) 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.cpp478 EGLThreadInfo *ti = getEGLThreadInfo(); in eglDestroyContext() local
481 server->utEnc()->destroyContext(ti->serverConn->utEnc(), getpid(), (uint32_t)ctx); in eglDestroyContext()
483 if (ti->currentContext == wctx) ti->currentContext = NULL; in eglDestroyContext()
495 EGLThreadInfo *ti = getEGLThreadInfo(); in eglMakeCurrent() local
512 ti->currentContext = wctx; in eglMakeCurrent()
520 EGLThreadInfo *ti = getEGLThreadInfo(); in eglGetCurrentContext() local
521 return (ti->currentContext ? ti->currentContext : EGL_NO_CONTEXT); in eglGetCurrentContext()
/device/generic/goldfish-opengl/system/OpenglSystemCommon/
DThreadInfo.cpp28 EGLThreadInfo *ti = (EGLThreadInfo *)ptr; in tlsDestruct() local
29 delete ti->hostConn; in tlsDestruct()
30 delete ti; in tlsDestruct()
43 EGLThreadInfo* ti = (EGLThreadInfo*)thread_store_get(&s_tls); in goldfish_get_egl_tls() local
45 if (ti) return ti; in goldfish_get_egl_tls()
47 ti = new EGLThreadInfo(); in goldfish_get_egl_tls()
48 thread_store_set(&s_tls, ti, tlsDestruct); in goldfish_get_egl_tls()
50 return ti; in goldfish_get_egl_tls()
DHostConnection.cpp168 EGLThreadInfo *ti = getEGLThreadInfo(); in s_getGLContext() local
169 if (ti->hostConn) { in s_getGLContext()
170 return ti->hostConn->m_glEnc; in s_getGLContext()
177 EGLThreadInfo *ti = getEGLThreadInfo(); in s_getGL2Context() local
178 if (ti->hostConn) { in s_getGL2Context()
179 return ti->hostConn->m_gl2Enc; in s_getGL2Context()
/device/linaro/hikey/wpan/uim/
Duim.c202 struct termios ti; in set_baud_rate() local
207 if (tcgetattr(dev_fd, &ti) < 0) { in set_baud_rate()
214 cfmakeraw(&ti); in set_baud_rate()
216 ti.c_cflag |= 1; in set_baud_rate()
217 ti.c_cflag |= CRTSCTS; in set_baud_rate()
222 tcsetattr(dev_fd, TCSANOW, &ti); in set_baud_rate()
225 cfsetospeed(&ti, B115200); in set_baud_rate()
226 cfsetispeed(&ti, B115200); in set_baud_rate()
227 tcsetattr(dev_fd, TCSANOW, &ti); in set_baud_rate()
245 struct termios ti; in set_custom_baud_rate() local
[all …]
/device/linaro/hikey/bt-wifi-firmware-util/
DAndroid.mk17 TI_WILINK_FW_PATH := $(TARGET_OUT_ETC)/firmware/ti-connectivity
25 LOCAL_MODULE_OWNER := ti
34 LOCAL_MODULE_OWNER := ti
43 LOCAL_MODULE_OWNER := ti
/device/huawei/angler/
Dreleasetools.py190 for ti in tm.unpacked_images.values():
191 if ti not in blacklist:
192 si = sm.GetUnpackedImage(ti.name)
195 if ti.size == si.size and ti.sha1 == si.sha1:
197 ti.name)
198 blacklist.append(ti.name)
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/DeviceTree/
Dhi6220-hikey.dts100 ti,non-removable;
108 compatible = "ti,wl1835";
/device/linaro/hikey/
Ddevice-common.mk86 $(call inherit-product-if-exists, device/linaro/hikey/wpan/ti-wpan-products.mk)