Home
last modified time | relevance | path

Searched refs:adb_flags (Results 1 – 2 of 2) sorted by relevance

/development/scripts/
Dadd-accounts-sdk43 def GetProp(adb_flags, name): argument
44 args = ("adb",) + adb_flags + ("shell", "/system/bin/getprop", name)
47 def SetProp(adb_flags, name, value): argument
48 args = ("adb",) + adb_flags + ("shell", "/system/bin/setprop", name, value)
51 def DbExists(adb_flags): argument
52 args = ("adb",) + adb_flags + ("shell", "/system/bin/ls", DB)
75 adb_flags = tuple(argv)
78 db = DbExists(adb_flags)
94 hosted_account = GetProp(adb_flags, "ro.config.hosted_account").strip()
95 google_account = GetProp(adb_flags, "ro.config.google_account").strip()
[all …]
Dadd-accounts43 def GetProp(adb_flags, name): argument
44 args = ("adb",) + adb_flags + ("shell", "su", "root",
48 def SetProp(adb_flags, name, value): argument
49 args = ("adb",) + adb_flags + ("shell", "su", "root",
53 def DbExists(adb_flags): argument
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()
[all …]