Home | History | Annotate | Download | only in android

Lines Matching refs:GetProp

564         return self.GetProp('sys.boot_completed', cache=False) == '1'
1800 value = self.GetProp(self.JAVA_ASSERT_PROPERTY)
1812 return self.GetProp('persist.sys.language', cache=cache)
1820 return self.GetProp('persist.sys.country', cache=cache)
1837 return int(self.GetProp('ro.sf.lcd_density', cache=True))
1846 return self.GetProp('ro.build.description', cache=True)
1855 return self.GetProp('ro.build.fingerprint', cache=True)
1860 return self.GetProp('ro.build.id', cache=True)
1865 return self.GetProp('ro.build.product', cache=True)
1870 return self.GetProp('ro.build.type', cache=True)
1884 value = self.GetProp('ro.build.version.sdk', cache=True)
1894 return self.GetProp('ro.product.cpu.abi', cache=True)
1899 return self.GetProp('ro.product.model', cache=True)
1904 return self.GetProp('ro.product.name', cache=True)
1909 return self.GetProp('ro.product.board', cache=True)
1912 """Populates cache token, runs getprop and fetches $EXTERNAL_STORAGE."""
1926 'getprop'
1934 prop_cache = self._cache['getprop']
1941 def GetProp(self, property_name, cache=False, timeout=None, retries=None):
1968 ['getprop', property_name], single_line=True, check_return=True,
1970 self._cache['getprop'][property_name] = value
1971 # Non-existent properties are treated as empty strings by getprop.
1972 return self._cache['getprop'].get(property_name, '')
1999 prop_cache = self._cache['getprop']
2003 # single shell script to both set- and getprop.
2004 if check and value != self.GetProp(property_name, cache=False):
2023 return self.GetProp('ro.product.cpu.abi', cache=True)
2209 'getprop': {},