Lines Matching defs:args
61 std::vector<std::string> args;
62 args.push_back("--dex-file=" + dex_location);
66 args.push_back("--oat-fd=" + std::to_string(oat_file->Fd()));
67 args.push_back("--oat-location=" + odex_location);
69 args.push_back("--oat-file=" + odex_location);
71 args.push_back("--compiler-filter=" + CompilerFilter::NameOfFilter(filter));
72 args.push_back("--runtime-arg");
73 args.push_back("-Xnorelocate");
75 args.insert(args.end(), extra_args.begin(), extra_args.end());
77 int status = Dex2Oat(args, error_msg);