Home
last modified time | relevance | path

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

12

/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.cpp47 EGLThreadInfo *ti = (EGLThreadInfo *)ptr; in tlsDestruct() local
48 delete ti->hostConn; in tlsDestruct()
49 delete ti; in tlsDestruct()
62 EGLThreadInfo* ti = (EGLThreadInfo*)thread_store_get(&s_tls); in goldfish_get_egl_tls() local
64 if (ti) return ti; in goldfish_get_egl_tls()
66 ti = new EGLThreadInfo(); in goldfish_get_egl_tls()
67 thread_store_set(&s_tls, ti, tlsDestruct); in goldfish_get_egl_tls()
69 return ti; in goldfish_get_egl_tls()
DThreadInfo_host.cpp50 EGLThreadInfo* ti = (EGLThreadInfo*)sTls->get(); in goldfish_get_egl_tls() local
52 if (ti) return ti; in goldfish_get_egl_tls()
54 ti = new EGLThreadInfo(); in goldfish_get_egl_tls()
55 sTls->set(ti); in goldfish_get_egl_tls()
57 return ti; in goldfish_get_egl_tls()
DHostConnection.cpp627 EGLThreadInfo *ti = getEGLThreadInfo(); in s_getGLContext() local
628 if (ti->hostConn) { in s_getGLContext()
629 return ti->hostConn->m_glEnc; in s_getGLContext()
636 EGLThreadInfo *ti = getEGLThreadInfo(); in s_getGL2Context() local
637 if (ti->hostConn) { in s_getGL2Context()
638 return ti->hostConn->m_gl2Enc; in s_getGL2Context()
/device/ti/beagle_x15/
DBoardConfig.mk35 DEVICE_MANIFEST_FILE := device/ti/beagle_x15/manifest.xml
36 DEVICE_MATRIX_FILE := device/ti/beagle_x15/compatibility_matrix.xml
65 TARGET_RECOVERY_FSTAB := device/ti/beagle_x15/$(TARGET_FSTAB)
68 TARGET_RELEASETOOLS_EXTENSIONS := device/ti/beagle_x15
71 device/ti/beagle_x15/sepolicy
82 device/ti/beagle_x15/bootloader/MLO:$(TARGET_OUT)/MLO \
83 device/ti/beagle_x15/bootloader/u-boot.img:$(TARGET_OUT)/u-boot.img \
Ddevice.mk23 device/ti/beagle_x15 \
24 hardware/ti/am57x
30 DEVICE_PACKAGE_OVERLAYS := device/ti/beagle_x15/overlay
31 PREBUILT_DIR := device/ti/beagle_x15-kernel
43 ifneq ($(wildcard $(KERNELDIR)/arch/arm/boot/dts/ti/.*),)
44 DTB_DIR := $(KERNELDIR)/arch/arm/boot/dts/ti
48 DTBO_DIR := $(KERNELDIR)/arch/arm/boot/dts/ti
114 …device/ti/beagle_x15/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_con…
153 …device/ti/beagle_x15/tablet_core_hardware_beagle_x15.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions…
154 …device/ti/beagle_x15/init.beagle_x15board.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.beagle_x15…
[all …]
Dbeagle_x15.mk17 $(call inherit-product, device/ti/beagle_x15/device.mk)
/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/ti/beagle_x15/recovery/
Drecovery_ui.cpp22 namespace ti { namespace
46 return new Device(new ::android::device::ti::beagle_x15::BeagleX15UI()); in make_device()
DAndroid.bp19 owner: "ti",
/device/ti/beagle_x15/auto/
Dbeagle_x15.mk17 $(call inherit-product, device/ti/beagle_x15/device.mk)
18 $(call inherit-product, device/ti/beagle_x15/auto/device.mk)
/device/linaro/hikey/hikey/
Ddevice-hikey.mk29 …device/linaro/hikey/bt-wifi-firmware-util/TIInit_11.8.32.bts:$(TARGET_COPY_OUT_VENDOR)/firmware/ti
33 …device/linaro/hikey/bt-wifi-firmware-util/wl18xx-fw-4.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/ti-co…
34 …device/linaro/hikey/bt-wifi-firmware-util/wl18xx-conf.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/ti-co…
/device/ti/beagle_x15/gralloc/
DAndroid.bp8 "hardware/ti/am57x/libhwcomposer",
/device/linaro/hikey/hikey960/
Ddevice-hikey960.mk32 …irmware-util/TIInit_11.8.32-pcm-960.bts:$(TARGET_COPY_OUT_VENDOR)/firmware/ti-connectivity/TIInit_…
36 …device/linaro/hikey/bt-wifi-firmware-util/wl18xx-fw-4.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/ti-co…
37 …firmware-util/wl18xx-conf-wl1837mod.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/ti-connectivity/wl18xx-…
/device/linaro/bootloader/arm-trusted-firmware/plat/nvidia/tegra/common/
Dtegra_common.mk19 drivers/ti/uart/aarch64/16550_console.S \
/device/ti/beagle_x15/build/tasks/
Dboot_fit.mk6 BOARD_DIR := device/ti/beagle_x15
/device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3368/
Dplatform.mk34 drivers/ti/uart/aarch64/16550_console.S \
/device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3328/
Dplatform.mk36 drivers/ti/uart/16550_console.S \
/device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3399/
Dplatform.mk38 drivers/ti/uart/aarch64/16550_console.S \
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/DeviceTree/
Dhi3660-hikey960.dts552 compatible = "ti,wl1837-st";
586 ti,non-removable;
593 compatible = "ti,wl1837";
Dhi6220-hikey.dts143 compatible = "ti,wl1835-st";
330 compatible = "ti,wl1835";
/device/linaro/hikey/
Ddevice-common.mk215 $(call inherit-product, device/linaro/hikey/wpan/ti-wpan-products.mk)
/device/linaro/bootloader/arm-trusted-firmware/
DMakefile185 -Iinclude/drivers/ti/uart \

12