/hardware/ti/omap4xxx/camera/inc/ |
D | CameraProperties.h | 153 char property[PROPERTY_VALUE_MAX]; in Properties() local 154 property_get("ro.product.manufacturer", property, EXIF_MAKE_DEFAULT); in Properties() 155 property[0] = toupper(property[0]); in Properties() 156 set(EXIF_MAKE, property); in Properties() 157 property_get("ro.product.model", property, EXIF_MODEL_DEFAULT); in Properties() 158 property[0] = toupper(property[0]); in Properties() 159 set(EXIF_MODEL, property); in Properties()
|
/hardware/qcom/display/msm8084/libqdutils/ |
D | comptype.h | 63 char property[PROPERTY_VALUE_MAX]; in QCCompositionType() local 65 if (property_get("debug.composition.type", property, "gpu") > 0) { in QCCompositionType() 66 if ((strncmp(property, "mdp", 3)) == 0) { in QCCompositionType() 68 } else if ((strncmp(property, "c2d", 3)) == 0) { in QCCompositionType() 70 } else if ((strncmp(property, "dyn", 3)) == 0) { in QCCompositionType()
|
D | mdp_version.cpp | 227 char property[PROPERTY_VALUE_MAX]; in updateSysFsInfo() local 230 if((property_get("persist.hwc.macro_tile_enable", property, NULL) > 0) && in updateSysFsInfo() 231 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in updateSysFsInfo() 232 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { in updateSysFsInfo()
|
/hardware/qcom/display/msm8974/libqdutils/ |
D | comptype.h | 63 char property[PROPERTY_VALUE_MAX]; in QCCompositionType() local 65 if (property_get("debug.composition.type", property, "gpu") > 0) { in QCCompositionType() 66 if ((strncmp(property, "mdp", 3)) == 0) { in QCCompositionType() 68 } else if ((strncmp(property, "c2d", 3)) == 0) { in QCCompositionType() 70 } else if ((strncmp(property, "dyn", 3)) == 0) { in QCCompositionType()
|
/hardware/qcom/display/msm8226/libqdutils/ |
D | comptype.h | 63 char property[PROPERTY_VALUE_MAX]; in QCCompositionType() local 65 if (property_get("debug.composition.type", property, "gpu") > 0) { in QCCompositionType() 66 if ((strncmp(property, "mdp", 3)) == 0) { in QCCompositionType() 68 } else if ((strncmp(property, "c2d", 3)) == 0) { in QCCompositionType() 70 } else if ((strncmp(property, "dyn", 3)) == 0) { in QCCompositionType()
|
D | mdp_version.cpp | 233 char property[PROPERTY_VALUE_MAX]; in updateSysFsInfo() local 236 if((property_get("persist.hwc.macro_tile_enable", property, NULL) > 0) && in updateSysFsInfo() 237 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in updateSysFsInfo() 238 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { in updateSysFsInfo()
|
/hardware/qcom/display/msm8960/libqdutils/ |
D | comptype.h | 63 char property[PROPERTY_VALUE_MAX]; in QCCompositionType() local 65 if (property_get("debug.composition.type", property, "gpu") > 0) { in QCCompositionType() 66 if ((strncmp(property, "mdp", 3)) == 0) { in QCCompositionType() 68 } else if ((strncmp(property, "c2d", 3)) == 0) { in QCCompositionType() 70 } else if ((strncmp(property, "dyn", 3)) == 0) { in QCCompositionType()
|
/hardware/qcom/display/msm8960/libhwcomposer/ |
D | hwc_vsync.cpp | 72 char property[PROPERTY_VALUE_MAX]; in vsync_loop() local 73 if(property_get("debug.hwc.fakevsync", property, NULL) > 0) { in vsync_loop() 74 if(atoi(property) == 1) in vsync_loop() 78 if(property_get("debug.hwc.logvsync", property, 0) > 0) { in vsync_loop() 79 if(atoi(property) == 1) in vsync_loop()
|
D | hwc_uevents.cpp | 76 char property[PROPERTY_VALUE_MAX]; in handle_uevent() local 77 if((property_get("persist.sys.wfd.virtual", property, NULL) > 0) && in handle_uevent() 78 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in handle_uevent() 79 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { in handle_uevent()
|
D | hwc_mdpcomp.cpp | 86 char property[PROPERTY_VALUE_MAX]; in init() local 89 if((property_get("persist.hwc.mdpcomp.enable", property, NULL) > 0) && in init() 90 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in init() 91 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { in init() 96 if(property_get("debug.mdpcomp.logs", property, NULL) > 0) { in init() 97 if(atoi(property) != 0) in init() 102 if(property_get("debug.mdpcomp.maxpermixer", property, NULL) > 0) { in init() 103 if(atoi(property) != 0) in init() 110 if(property_get("debug.mdpcomp.idletime", property, NULL) > 0) { in init() 111 if(atoi(property) != 0) in init() [all …]
|
/hardware/qcom/display/msm8974/libgralloc/ |
D | framebuffer.cpp | 124 char property[PROPERTY_VALUE_MAX]; in mapFrameBufferLocked() local 176 if (property_get("debug.sf.hw", property, NULL) > 0 && in mapFrameBufferLocked() 177 atoi(property) == 0) in mapFrameBufferLocked() 179 else if(property_get("debug.composition.type", property, NULL) > 0 && in mapFrameBufferLocked() 180 (strncmp(property, "mdp", 3) == 0)) in mapFrameBufferLocked() 210 if (property_get("debug.gr.numframebuffers", property, NULL) > 0) { in mapFrameBufferLocked() 211 int num = atoi(property); in mapFrameBufferLocked() 340 char property[PROPERTY_VALUE_MAX]; in mapFrameBuffer() local 341 if((property_get("debug.gralloc.map_fb_memory", property, NULL) > 0) && in mapFrameBuffer() 342 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in mapFrameBuffer() [all …]
|
D | alloc_controller.cpp | 110 char property[PROPERTY_VALUE_MAX]; in getStride() local 111 if((property_get("debug.gralloc.map_fb_memory", property, NULL) > 0) && in getStride() 112 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in getStride() 113 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { in getStride()
|
/hardware/qcom/display/msm8226/libgralloc/ |
D | framebuffer.cpp | 127 char property[PROPERTY_VALUE_MAX]; in mapFrameBufferLocked() local 183 if (property_get("debug.sf.hw", property, NULL) > 0 && in mapFrameBufferLocked() 184 atoi(property) == 0) in mapFrameBufferLocked() 186 else if(property_get("debug.composition.type", property, NULL) > 0 && in mapFrameBufferLocked() 187 (strncmp(property, "mdp", 3) == 0)) in mapFrameBufferLocked() 217 if (property_get("debug.gr.numframebuffers", property, NULL) > 0) { in mapFrameBufferLocked() 218 int num = atoi(property); in mapFrameBufferLocked() 354 char property[PROPERTY_VALUE_MAX]; in mapFrameBuffer() local 355 if((property_get("debug.gralloc.map_fb_memory", property, NULL) > 0) && in mapFrameBuffer() 356 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in mapFrameBuffer() [all …]
|
/hardware/qcom/display/msm8084/libgralloc/ |
D | framebuffer.cpp | 126 char property[PROPERTY_VALUE_MAX]; in mapFrameBufferLocked() local 182 if (property_get("debug.sf.hw", property, NULL) > 0 && in mapFrameBufferLocked() 183 atoi(property) == 0) in mapFrameBufferLocked() 185 else if(property_get("debug.composition.type", property, NULL) > 0 && in mapFrameBufferLocked() 186 (strncmp(property, "mdp", 3) == 0)) in mapFrameBufferLocked() 216 if (property_get("debug.gr.numframebuffers", property, NULL) > 0) { in mapFrameBufferLocked() 217 int num = atoi(property); in mapFrameBufferLocked() 353 char property[PROPERTY_VALUE_MAX]; in mapFrameBuffer() local 354 if((property_get("debug.gralloc.map_fb_memory", property, NULL) > 0) && in mapFrameBuffer() 355 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in mapFrameBuffer() [all …]
|
D | gpu.cpp | 297 char property[PROPERTY_VALUE_MAX]; in alloc_impl() local 299 (property_get("debug.gralloc.map_fb_memory", property, NULL) > 0) && in alloc_impl() 300 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in alloc_impl() 301 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { in alloc_impl()
|
/hardware/qcom/display/msm8974/libhwcomposer/ |
D | hwc_vsync.cpp | 69 char property[PROPERTY_VALUE_MAX]; in vsync_loop() local 70 if(property_get("debug.hwc.fakevsync", property, NULL) > 0) { in vsync_loop() 71 if(atoi(property) == 1) in vsync_loop() 75 if(property_get("debug.hwc.logvsync", property, 0) > 0) { in vsync_loop() 76 if(atoi(property) == 1) in vsync_loop()
|
D | hwc_uevents.cpp | 68 char property[PROPERTY_VALUE_MAX]; in handle_uevent() local 69 if((property_get("persist.sys.wfd.virtual", property, NULL) > 0) && in handle_uevent() 70 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in handle_uevent() 71 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { in handle_uevent()
|
D | hwc_mdpcomp.cpp | 90 char property[PROPERTY_VALUE_MAX]; in init() local 93 if((property_get("persist.hwc.mdpcomp.enable", property, NULL) > 0) && in init() 94 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in init() 95 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { in init() 100 if((property_get("debug.mdpcomp.mixedmode.disable", property, NULL) > 0) && in init() 101 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in init() 102 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { in init() 107 if(property_get("debug.mdpcomp.logs", property, NULL) > 0) { in init() 108 if(atoi(property) != 0) in init() 113 if(property_get("debug.mdpcomp.maxpermixer", property, "-1") > 0) { in init() [all …]
|
/hardware/qcom/display/msm8084/libhwcomposer/ |
D | hwc_vsync.cpp | 117 char property[PROPERTY_VALUE_MAX]; in vsync_loop() local 118 if(property_get("debug.hwc.fakevsync", property, NULL) > 0) { in vsync_loop() 119 if(atoi(property) == 1) in vsync_loop() 123 if(property_get("debug.hwc.logvsync", property, 0) > 0) { in vsync_loop() 124 if(atoi(property) == 1) in vsync_loop()
|
D | hwc_uevents.cpp | 254 char property[PROPERTY_VALUE_MAX]; in handle_uevent() local 256 property, NULL) > 0) && in handle_uevent() 257 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in handle_uevent() 258 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { in handle_uevent()
|
D | hwc_ad.cpp | 139 char property[PROPERTY_VALUE_MAX]; in AssertiveDisplay() local 143 if(property_get("ro.qcom.ad", property, "0") > 0) { in AssertiveDisplay() 144 val = atoi(property); in AssertiveDisplay()
|
/hardware/qcom/display/msm8960/libgralloc/ |
D | framebuffer.cpp | 124 char property[PROPERTY_VALUE_MAX]; in mapFrameBufferLocked() local 176 if (property_get("debug.sf.hw", property, NULL) > 0 && in mapFrameBufferLocked() 177 atoi(property) == 0) in mapFrameBufferLocked() 179 else if(property_get("debug.composition.type", property, NULL) > 0 && in mapFrameBufferLocked() 180 (strncmp(property, "mdp", 3) == 0)) in mapFrameBufferLocked() 210 if (property_get("debug.gr.numframebuffers", property, NULL) > 0) { in mapFrameBufferLocked() 211 int num = atoi(property); in mapFrameBufferLocked()
|
/hardware/qcom/display/msm8226/libhwcomposer/ |
D | hwc_uevents.cpp | 262 char property[PROPERTY_VALUE_MAX]; in handle_uevent() local 264 property, NULL) > 0) && in handle_uevent() 265 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || in handle_uevent() 266 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) { in handle_uevent()
|
D | hwc_vsync.cpp | 107 char property[PROPERTY_VALUE_MAX]; in vsync_loop() local 108 if(property_get("debug.hwc.fakevsync", property, NULL) > 0) { in vsync_loop() 109 if(atoi(property) == 1) in vsync_loop()
|
D | hwc_ad.cpp | 107 char property[PROPERTY_VALUE_MAX]; in AssertiveDisplay() local 111 if(property_get("ro.qcom.ad", property, "0") > 0) { in AssertiveDisplay() 112 val = atoi(property); in AssertiveDisplay()
|