Home
last modified time | relevance | path

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

/frameworks/native/cmds/installd/
Dcommands.cpp1399 char image_path[PKG_PATH_MAX]; in dexopt() local
1489 strcpy(image_path, out_path); in dexopt()
1490 trim_extension(image_path); in dexopt()
1491 if (add_extension_to_file_name(image_path, ".art")) { in dexopt()
1500 image_fd = open_output_file(image_path, /*recreate*/true, /*permissions*/0600); in dexopt()
1503 ALOGE("installd could not create '%s' for image file during dexopt\n", image_path); in dexopt()
1504 } else if (!set_permissions_and_ownership(image_fd, is_public, uid, image_path)) { in dexopt()
1510 if (unlink(image_path) < 0) { in dexopt()
1512 PLOG(ERROR) << "Couldn't unlink image file " << image_path; in dexopt()