Lines Matching refs:store
29 protected void collectDeviceInfo(HostInfoStore store) throws Exception { in collectDeviceInfo() argument
33 store.startGroup("product"); in collectDeviceInfo()
34 store.addResult("model", getProperty("ro.product.model")); in collectDeviceInfo()
35 store.addResult("brand", getProperty("ro.product.brand")); in collectDeviceInfo()
36 store.addResult("name", getProperty("ro.product.name")); in collectDeviceInfo()
37 store.addResult("device", getProperty("ro.product.device")); in collectDeviceInfo()
38 store.addResult("board", getProperty("ro.product.board")); in collectDeviceInfo()
41 store.addListResult("abi", Arrays.asList(abi.split(","))); in collectDeviceInfo()
42 store.endGroup(); // product in collectDeviceInfo()
44 store.startGroup("version"); in collectDeviceInfo()
45 store.addResult("sdk", getProperty("ro.build.version.sdk")); in collectDeviceInfo()
46 store.addResult("codename", getProperty("ro.build.version.codename")); in collectDeviceInfo()
47 store.addResult("security_patch", getProperty("ro.build.version.security_patch")); in collectDeviceInfo()
48 store.addResult("base_os", getProperty("ro.build.version.base_os")); in collectDeviceInfo()
49 store.endGroup(); // version in collectDeviceInfo()