Lines Matching refs:property
136 // Check if the overriding property debug.gralloc.gfx_ubwc_disable
139 char property[PROPERTY_VALUE_MAX];
140 property_get("debug.gralloc.gfx_ubwc_disable", property, "0");
141 if(!(strncmp(property, "1", PROPERTY_VALUE_MAX)) ||
142 !(strncmp(property, "true", PROPERTY_VALUE_MAX))) {
347 char property[PROPERTY_VALUE_MAX];
348 if((property_get("debug.gralloc.map_fb_memory", property, NULL) > 0) &&
349 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
350 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
455 char property[PROPERTY_VALUE_MAX];
456 property_get("video.disable.ubwc", property, "0");
457 mDisableUBWCForEncode = atoi(property);