Home | History | Annotate | Download | only in libgralloc

Lines Matching refs:property

133     // Check if the overriding property debug.gralloc.gfx_ubwc_disable
136 char property[PROPERTY_VALUE_MAX];
137 property_get("debug.gralloc.gfx_ubwc_disable", property, "0");
138 if(!(strncmp(property, "1", PROPERTY_VALUE_MAX)) ||
139 !(strncmp(property, "true", PROPERTY_VALUE_MAX))) {
332 char property[PROPERTY_VALUE_MAX];
333 if((property_get("debug.gralloc.map_fb_memory", property, NULL) > 0) &&
334 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
335 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
440 char property[PROPERTY_VALUE_MAX];
441 property_get("video.disable.ubwc", property, "0");
442 mDisableUBWCForEncode = atoi(property);