Lines Matching full:property
49 char property[PROPERTY_VALUE_MAX];
56 if (property_get(PROPERTY_DEBUG_OVERDRAW, property, nullptr) > 0) {
57 INIT_LOGD(" Overdraw debug enabled: %s", property);
58 if (!strcmp(property, "show")) {
61 } else if (!strcmp(property, "show_deuteranomaly")) {
68 if (property_get(PROPERTY_DEBUG_STENCIL_CLIP, property, nullptr) > 0) {
69 INIT_LOGD(" Stencil clip debug enabled: %s", property);
70 if (!strcmp(property, "hide")) {
72 } else if (!strcmp(property, "highlight")) {
74 } else if (!strcmp(property, "region")) {
82 if (property_get(PROPERTY_PROFILE, property, "") > 0) {
83 if (!strcmp(property, PROPERTY_PROFILE_VISUALIZE_BARS)) {
85 } else if (!strcmp(property, "true")) {
102 if (property_get(PROPERTY_DEBUG, property, nullptr) > 0) {
103 debugLevel = (DebugLevel) atoi(property);
144 ALOGD("failed overriding property %s to %s", name, value);