Home | History | Annotate | Download | only in installd

Lines Matching refs:profile_file

1134     char profile_file[PKG_PATH_MAX];
1136 snprintf(profile_file, sizeof(profile_file), "%s/%s", profile_dir, pkgname);
1142 int fd = open(profile_file, O_WRONLY | O_CREAT | O_NOFOLLOW | O_CLOEXEC, 0660);
1148 ALOGE("cannot chown profile file '%s': %s\n", profile_file, strerror(errno));
1150 unlink(profile_file);
1155 ALOGE("cannot chmod profile file '%s': %s\n", profile_file, strerror(errno));
1157 unlink(profile_file);
1166 char profile_file[PKG_PATH_MAX];
1167 snprintf(profile_file, sizeof(profile_file), "%s/%s", DALVIK_CACHE_PREFIX "profiles", pkgname);
1168 unlink(profile_file);