Lines Matching refs:option

179       const std::string_view option(raw_option);  in ParseArgs()  local
180 if (option == "--assume-profile-changed") { in ParseArgs()
182 } else if (StartsWith(option, "--dex-file=")) { in ParseArgs()
183 dex_file_ = std::string(option.substr(strlen("--dex-file="))); in ParseArgs()
184 } else if (StartsWith(option, "--compiler-filter=")) { in ParseArgs()
189 } else if (StartsWith(option, "--isa=")) { in ParseArgs()
195 } else if (StartsWith(option, "--image=")) { in ParseArgs()
196 image_ = std::string(option.substr(strlen("--image="))); in ParseArgs()
197 } else if (option == "--runtime-arg") { in ParseArgs()
203 } else if (StartsWith(option, "--android-data=")) { in ParseArgs()
208 } else if (option == "--downgrade") { in ParseArgs()
210 } else if (StartsWith(option, "--oat-fd=")) { in ParseArgs()
211 oat_fd_ = std::stoi(std::string(option.substr(strlen("--oat-fd="))), nullptr, 0); in ParseArgs()
215 } else if (StartsWith(option, "--vdex-fd=")) { in ParseArgs()
216 vdex_fd_ = std::stoi(std::string(option.substr(strlen("--vdex-fd="))), nullptr, 0); in ParseArgs()
220 } else if (StartsWith(option, "--zip-fd=")) { in ParseArgs()
221 zip_fd_ = std::stoi(std::string(option.substr(strlen("--zip-fd="))), nullptr, 0); in ParseArgs()
225 } else if (StartsWith(option, "--class-loader-context=")) { in ParseArgs()
226 context_str_ = std::string(option.substr(strlen("--class-loader-context="))); in ParseArgs()
227 } else if (StartsWith(option, "--class-loader-context-fds=")) { in ParseArgs()
229 std::string(option.substr(strlen("--class-loader-context-fds="))); in ParseArgs()
237 } else if (option == "--flatten-class-loader-context") { in ParseArgs()