/device/generic/goldfish-opengl/tests/gles_android_wrapper/ |
D | ThreadInfo.cpp | 24 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()
|
D | ServerConnection.cpp | 26 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 …]
|
D | egl.cpp | 478 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/ |
D | ThreadInfo.cpp | 47 EGLThreadInfo *ti = (EGLThreadInfo *)ptr; in tlsDestruct() local 48 delete ti; in tlsDestruct() 61 EGLThreadInfo* ti = (EGLThreadInfo*)thread_store_get(&s_tls); in goldfish_get_egl_tls() local 63 if (ti) return ti; in goldfish_get_egl_tls() 65 ti = new EGLThreadInfo(); in goldfish_get_egl_tls() 66 thread_store_set(&s_tls, ti, tlsDestruct); in goldfish_get_egl_tls() 68 return ti; in goldfish_get_egl_tls()
|
D | ThreadInfo_host.cpp | 50 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()
|
D | HostConnection.cpp | 676 EGLThreadInfo *ti = getEGLThreadInfo(); in s_getGLContext() local 677 if (ti->hostConn) { in s_getGLContext() 678 return ti->hostConn->m_glEnc.get(); in s_getGLContext() 685 EGLThreadInfo *ti = getEGLThreadInfo(); in s_getGL2Context() local 686 if (ti->hostConn) { in s_getGL2Context() 687 return ti->hostConn->m_gl2Enc.get(); in s_getGL2Context()
|
/device/ti/beagle_x15/ |
D | BoardConfig.mk | 35 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 77 DEVICE_MANIFEST_FILE += device/ti/beagle_x15/auto/manifest.xml 84 device/ti/beagle_x15/bootloader/MLO:$(TARGET_OUT)/MLO \ 85 device/ti/beagle_x15/bootloader/u-boot.img:$(TARGET_OUT)/u-boot.img \
|
D | device.mk | 23 device/ti/beagle_x15 \ 24 hardware/ti/am57x 33 DEVICE_PACKAGE_OVERLAYS := device/ti/beagle_x15/overlay 34 PREBUILT_DIR := device/ti/beagle_x15-kernel 46 ifneq ($(wildcard $(KERNELDIR)/arch/arm/boot/dts/ti/.*),) 47 DTB_DIR := $(KERNELDIR)/arch/arm/boot/dts/ti 51 DTBO_DIR := $(KERNELDIR)/arch/arm/boot/dts/ti 121 …device/ti/beagle_x15/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_con… 160 …device/ti/beagle_x15/tablet_core_hardware_beagle_x15.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions… 161 …device/ti/beagle_x15/init.beagle_x15board.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.beagle_x15… [all …]
|
D | beagle_x15.mk | 17 $(call inherit-product, device/ti/beagle_x15/device.mk)
|
/device/linaro/hikey/wpan/uim/ |
D | uim.c | 202 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/ |
D | recovery_ui.cpp | 22 namespace ti { namespace 46 return new Device(new ::android::device::ti::beagle_x15::BeagleX15UI()); in make_device()
|
D | Android.bp | 19 owner: "ti",
|
/device/ti/beagle_x15/auto/ |
D | beagle_x15.mk | 17 $(call inherit-product, device/ti/beagle_x15/device.mk) 18 $(call inherit-product, device/ti/beagle_x15/auto/device.mk)
|
/device/linaro/hikey/hikey/ |
D | device-hikey.mk | 29 …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/linaro/hikey/hikey960/ |
D | device-hikey960.mk | 32 …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/ti/beagle_x15/gralloc/ |
D | Android.bp | 8 "hardware/ti/am57x/libhwcomposer",
|
/device/ti/beagle_x15/build/tasks/ |
D | boot_fit.mk | 6 BOARD_DIR := device/ti/beagle_x15
|
/device/amlogic/yukawa/hal/bootctrl/ |
D | Android.bp | 1 // Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/
|
/device/linaro/hikey/ |
D | device-common.mk | 218 $(call inherit-product, device/linaro/hikey/wpan/ti-wpan-products.mk)
|
/device/google/crosshatch/acdbdata/OEM/sdm845-tavil-b1-snd-card/ |
D | workspaceFile.qwsp | 1 …0qAendqE1hnRfzC0nuXPN6H1ciQQskLrIltoXWxC6zGcpofWRfbQejG0vtvQupARWhffVWhdSA+ti+8xtC6whdbFJrRe3yaQo5…
|