Lines Matching refs:result
94 result = self.dut.adb.shell("getprop sys.boot_completed")
96 boot_completed = int(result)
105 result = self.dut.adb.shell("getprop ro.product.first_api_level")
107 first_api_level = int(result)
126 result = self.dut.adb.shell("vdc checkpoint startCheckpoint 1", no_except = True)
127 asserts.assertEqual(result[const.EXIT_CODE], 0)
135 result = self.dut.adb.shell("cat " + self._CHECKPOINTTESTFILE)
136 asserts.assertEqual(result.strip(), self._ORIGINALVALUE)
140 result = self.dut.adb.shell("vdc checkpoint commitChanges", no_except = True)
141 asserts.assertEqual(result[const.EXIT_CODE], 0)
158 result = self.dut.adb.shell("vdc checkpoint startCheckpoint 1", no_except = True)
159 asserts.assertEqual(result[const.EXIT_CODE], 0)
165 result = self.dut.adb.shell("vdc checkpoint commitChanges", no_except = True)
166 asserts.assertEqual(result[const.EXIT_CODE], 0)
170 result = self.dut.adb.shell("cat " + self._CHECKPOINTTESTFILE)
171 asserts.assertEqual(result.strip(), self._MODIFIEDVALUE)