OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:backup_path
(Results
1 - 3
of
3
) sorted by null
/external/autotest/client/cros/
p2p_utils.py
21
def p2p_backup_files(
backup_path
=P2P_SHARE_BACKUP_PATH):
26
@param
backup_path
: The path where the files will be moved to.
30
if os.path.exists(
backup_path
):
31
shutil.rmtree(
backup_path
)
33
os.rename(P2P_SHARE_PATH,
backup_path
)
38
def p2p_restore_files(
backup_path
=P2P_SHARE_BACKUP_PATH):
43
@param
backup_path
: The path where the files will be moved from.
47
if os.path.exists(
backup_path
):
48
os.rename(
backup_path
, P2P_SHARE_PATH)
/external/selinux/dbus/
selinux_server.py
92
backup_path
= path + ".bck"
96
fd = open(
backup_path
, "w")
106
os.rename(
backup_path
, path)
/external/selinux/gui/
statusPage.py
176
backup_path
= path + ".bck"
180
fd = open(
backup_path
, "w")
190
os.rename(
backup_path
, path)
Completed in 139 milliseconds