OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:adb_flags
(Results
1 - 2
of
2
) sorted by null
/development/scripts/
add-accounts
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(
[
all
...]
add-accounts-sdk
43
def GetProp(
adb_flags
, name):
44
args = ("adb",) +
adb_flags
+ ("shell", "/system/bin/getprop", name)
47
def SetProp(
adb_flags
, name, value):
48
args = ("adb",) +
adb_flags
+ ("shell", "/system/bin/setprop", name, value)
51
def DbExists(
adb_flags
):
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
...]
Completed in 714 milliseconds