Home | History | Annotate | Download | only in libhwcomposer

Lines Matching defs:property

113     char property[PROPERTY_VALUE_MAX];
116 if((property_get("persist.hwc.mdpcomp.enable", property, NULL) > 0) &&
117 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
118 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
123 if((property_get("debug.mdpcomp.mixedmode.disable", property, NULL) > 0) &&
124 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
125 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
129 if(property_get("debug.mdpcomp.logs", property, NULL) > 0) {
130 if(atoi(property) != 0)
135 if(property_get("debug.mdpcomp.maxpermixer", property, "-1") > 0) {
136 int val = atoi(property);
144 if(property_get("debug.mdpcomp.idletime", property, NULL) > 0) {
145 if(atoi(property) != 0)
146 idle_timeout = atoi(property);
149 //create Idle Invalidator only when not disabled through property
163 property_get("persist.mdpcomp.4k2kSplit", property, "0") > 0 &&
164 (!strncmp(property, "1", PROPERTY_VALUE_MAX) ||
165 !strncasecmp(property,"true", PROPERTY_VALUE_MAX))) {
1421 char property[PROPERTY_VALUE_MAX];
1423 if(property_get("debug.hwc.simulate", property, NULL) > 0) {
1424 int currentFlags = atoi(property);