Lines Matching refs:table
62 dmsetup_cmd = "dmsetup -r create autotest_%s --table '%s'"
117 self.table = None
145 """runs verity over the image and saves the device mapper table"""
146 self.table = utils.system_output(self.verity_cmd % (self.alg,
152 self.table += " error_behavior=ERROR_BEHAVIOR"
153 logging.info("table is %s" % self.table)
165 # Update the table with the loop dev
166 self.table = self.table.replace('HASH_DEV', self.loop)
167 self.table = self.table.replace('ROOT_DEV', self.loop)
168 self.table = self.table.replace('ERROR_BEHAVIOR', self.error_behavior)
170 system(self.dmsetup_cmd % (self.target_name, self.table))