Lines Matching refs:adb_flags
43 def GetProp(adb_flags, name):
44 args = ("adb",) + adb_flags + ("shell", "su", "root",
48 def SetProp(adb_flags, name, value):
49 args = ("adb",) + adb_flags + ("shell", "su", "root",
53 def DbExists(adb_flags):
54 args = ("adb",) + adb_flags + ("shell", "su", "root",
78 adb_flags = tuple(argv)
81 db = DbExists(adb_flags)
97 hosted_account = GetProp(adb_flags, "ro.config.hosted_account").strip()
98 google_account = GetProp(adb_flags, "ro.config.google_account").strip()
117 SetProp(adb_flags, "ro.config.hosted_account", dasher)
120 SetProp(adb_flags, "ro.config.google_account", gmail)