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* shared_libraries) {
358 if (profile_fd != -1) {
359 sprintf(profile_arg, "--profile-file-fd=%d", profile_fd);
389 + (profile_fd == -1 ? 0 : 1)
447 if (profile_fd != -1) {
604 unique_fd profile_fd = open_current_profile(uid, user, location, is_secondary_dex); local
606 if (profile_fd.get() >= 0) {
607 profiles_fd->push_back(std::move(profile_fd));
    [all...]

Completed in 50 milliseconds