Home
last modified time | relevance | path

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

/frameworks/native/cmds/installd/
Dcommands.cpp1706 char swap_file_name[PKG_PATH_MAX]; in dexopt() local
1707 strcpy(swap_file_name, out_path); in dexopt()
1708 if (add_extension_to_file_name(swap_file_name, ".swap")) { in dexopt()
1709 swap_fd.reset(open_output_file(swap_file_name, /*recreate*/true, /*permissions*/0600)); in dexopt()
1714 ALOGE("installd could not create '%s' for swap during dexopt\n", swap_file_name); in dexopt()
1717 if (unlink(swap_file_name) < 0) { in dexopt()
1718 PLOG(ERROR) << "Couldn't unlink swap file " << swap_file_name; in dexopt()