Home
last modified time | relevance | path

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

/aosp12/frameworks/native/cmds/installd/
H A Drun_dex2oat.cpp78 int swap_fd, in Initialize() argument
92 dex_metadata, profile, swap_fd, class_loader_context, in Initialize()
132 int swap_fd, in PrepareInputFileFlags() argument
156 if (swap_fd >= 0) { in PrepareInputFileFlags()
157 AddArg(StringPrintf("--swap-fd=%d", swap_fd)); in PrepareInputFileFlags()
H A Drun_dex2oat.h44 int swap_fd,
67 int swap_fd,
H A Drun_dex2oat_test.cpp106 int swap_fd = -1; member
250 args->swap_fd, in CallRunDex2Oat()
281 args->swap_fd = SWAP_FD; in TEST_F()
H A Ddexopt.cpp967 unique_fd swap_fd(open_output_file( in maybe_open_dexopt_swap_file() local
969 if (swap_fd.get() < 0) { in maybe_open_dexopt_swap_file()
979 return swap_fd; in maybe_open_dexopt_swap_file()
1784 unique_fd swap_fd = maybe_open_dexopt_swap_file(out_oat.path()); in dexopt() local
1840 swap_fd.get(), in dexopt()
/aosp12/art/compiler/driver/
H A Dcompiled_method_storage.cc147 CompiledMethodStorage::CompiledMethodStorage(int swap_fd) in CompiledMethodStorage() argument
148 : swap_space_(swap_fd == -1 ? nullptr : new SwapSpace(swap_fd, 10 * MB)), in CompiledMethodStorage()
H A Dcompiled_method_storage.h38 explicit CompiledMethodStorage(int swap_fd);
/aosp12/art/dex2oat/driver/
H A Dcompiler_driver.h90 int swap_fd);
H A Dcompiler_driver.cc258 int swap_fd) in CompilerDriver() argument
266 compiled_method_storage_(swap_fd), in CompilerDriver()