Home
last modified time | relevance | path

Searched refs:propValue (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/
DDeviceSelectionOptions.java241 public void addProperty(String propertyKey, String propValue) { in addProperty() argument
242 mPropertyMap.put(propertyKey, propValue); in addProperty()
DNativeDevice.java595 String propValue = getProperty(propName); in internalGetProperty() local
596 if (propValue != null) { in internalGetProperty()
597 return propValue; in internalGetProperty()
726 String propValue = parts[1].substring(0, parts[1].length() - 1).trim(); in batchPrefetchStartupBuildProps() local
727 if (propValue != null) { in batchPrefetchStartupBuildProps()
729 mPropertiesCache.put(propName, propValue); in batchPrefetchStartupBuildProps()
775 public boolean setProperty(String propKey, String propValue) in setProperty() argument
777 if (propKey == null || propValue == null) { in setProperty()
780 String setPropCmd = String.format("\"setprop %s '%s'\"", propKey, propValue); in setProperty()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DINativeDevice.java128 public boolean setProperty(String propKey, String propValue) throws DeviceNotAvailableException; in setProperty() argument