Lines Matching refs:key
437 def __getitem__(self, key): argument
438 return self.info_dict[key]
440 def __setitem__(self, key, value): argument
441 self.info_dict[key] = value
443 def get(self, key, default=None): argument
444 return self.info_dict.get(key, default)
530 def GetOemProperty(self, key): argument
531 if self.oem_props is not None and key in self.oem_props:
532 return self.oem_dicts[0][key]
533 return self.GetBuildProp(key)
666 for key in d:
667 if key.endswith("selinux_fc"):
668 fc_basename = os.path.basename(d[key])
672 d[key] = fc_config
694 def makeint(key): argument
695 if key in d:
696 d[key] = int(d[key], 0)
867 return {key: val for key, val in d.items()
868 if key in self.props_allow_override}
1013 key = "super_%s_group_size" % partition_group
1014 if key not in vendor_dict:
1015 raise ValueError("Vendor dict does not contain required key %s." % key)
1016 merged_dict[key] = vendor_dict[key]
1020 key = "super_%s_partition_list" % partition_group
1021 merged_dict[key] = (
1023 (framework_dict.get(key, ""), vendor_dict.get(key, ""))).strip()
1086 def GetAvbChainedPartitionArg(partition, info_dict, key=None): argument
1100 if key is None:
1101 key = info_dict["avb_" + partition + "_key_path"]
1102 if key and not os.path.exists(key) and OPTIONS.search_path:
1103 new_key_path = os.path.join(OPTIONS.search_path, key)
1105 key = new_key_path
1106 pubkey_path = ExtractAvbPublicKey(info_dict["avb_avbtool"], key)
1856 def SignFile(input_name, output_name, key, password, min_api_level=None, argument
1900 cmd.extend([key + OPTIONS.public_key_suffix,
1901 key + OPTIONS.private_key_suffix,
2146 key, value = a.split("=", 1)
2147 OPTIONS.extras[key] = value
3054 def ExtractAvbPublicKey(avbtool, key): argument
3066 [avbtool, 'extract_public_key', "--key", key, "--output", output])