Home
last modified time | relevance | path

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

/art/dex2oat/
Ddex2oat.cc367 int swap_fd, in CreateOatFile() argument
403 swap_fd, in CreateOatFile()
909 int swap_fd = -1; // No swap file descriptor; in dex2oat() local
1101 if (!ParseInt(swap_fd_str, &swap_fd)) { in dex2oat()
1104 if (swap_fd < 0) { in dex2oat()
1105 Usage("--swap-fd passed a negative value %d", swap_fd); in dex2oat()
1317 if (swap_fd == -1 && !swap_file_name.empty()) { in dex2oat()
1323 swap_fd = swap_file->Fd(); in dex2oat()
1358 if (swap_fd != -1) { in dex2oat()
1494 if (swap_fd != -1) { in dex2oat()
[all …]
/art/compiler/driver/
Dcompiler_driver.cc341 int swap_fd, std::string profile_file) in CompilerDriver() argument
342 : swap_space_(swap_fd == -1 ? nullptr : new SwapSpace(swap_fd, 10 * MB)), in CompilerDriver()
Dcompiler_driver.h113 CumulativeLogger* timer, int swap_fd = -1,