HomeSort by relevance Sort by last modified time
    Searched refs:profile_fd (Results 1 - 2 of 2) sorted by null

  /art/dexlayout/
dexlayout_main.cc 175 int profile_fd = open(options.profile_file_name_, O_RDONLY); local
176 if (profile_fd < 0) {
181 if (!profile_info->Load(profile_fd)) {
  /frameworks/native/cmds/installd/
dexopt.cpp 194 bool debuggable, bool post_bootcomplete, int profile_fd, const char* class_loader_context) {
364 if (profile_fd != -1) {
365 sprintf(profile_arg, "--profile-file-fd=%d", profile_fd);
395 + (profile_fd == -1 ? 0 : 1)
453 if (profile_fd != -1) {
608 unique_fd profile_fd = open_current_profile(uid, user, location, is_secondary_dex); local
610 if (profile_fd.get() >= 0) {
611 profiles_fd->push_back(std::move(profile_fd));
    [all...]

Completed in 61 milliseconds