Home | History | Annotate | Download | only in login_OobeLocalization

Lines Matching refs:vpd

21     # dump_vpd_log reads the VPD cache in lieu of running `vpd -l`.
22 _VPD_FILENAME = '/var/cache/vpd/full-v2.txt'
130 """Changes VPD cache on disk.
131 @param vpd_settings: Dictionary of VPD key-value pairs.
135 vpd = {}
137 # Read the existing VPD info.
141 vpd[key] = value
143 vpd.update(vpd_settings);
147 for key in vpd:
148 vpd_log.write('"%s"="%s"\n' % (key, vpd[key]))