Lines Matching refs:customComponentId
228 int customComponentId = INVALID_CUSTOM_POWER_COMPONENT; in readComponents() local
230 customComponentId = toCustomPowerComponent(customComponents, id); in readComponents()
234 customComponentId == INVALID_CUSTOM_POWER_COMPONENT) { in readComponents()
241 (customComponentId != INVALID_CUSTOM_POWER_COMPONENT && in readComponents()
242 visitedCustomComponents->count(customComponentId) > 0)) { in readComponents()
250 } else if (customComponentId >= MINIMUM_CUSTOM_COMPONENT_VALUE) { in readComponents()
251 updateVisitedComponents(customComponentId, visitedCustomComponents); in readComponents()
259 } else if (customComponentId >= MINIMUM_CUSTOM_COMPONENT_VALUE) { in readComponents()
260 result = updateComponentState(customComponentId, powerState, in readComponents()
545 int customComponentId = 0; in stringsToComponents() local
546 bool result = android::base::ParseInt(component, &customComponentId); in stringsToComponents()
547 if (!result || customComponentId < MINIMUM_CUSTOM_COMPONENT_VALUE) { in stringsToComponents()
550 customComponents->push_back(customComponentId); in stringsToComponents()