Home | History | Annotate | Download | only in dexlayout

Lines Matching refs:tmp_dir

285     std::string tmp_dir = tmp_name.substr(0, tmp_last_slash + 1);
291 { dexlayout, "-w", tmp_dir, "-o", tmp_name, dex_file };
298 { "/usr/bin/unzip", dex_file, "classes.dex", "-d", tmp_dir};
303 { "/usr/bin/diff", tmp_dir + "classes.dex" , tmp_dir + dex_file_name };
307 std::vector<std::string> rm_zip_exec_argv = { "/bin/rm", tmp_dir + "classes.dex" };
311 std::vector<std::string> rm_out_exec_argv = { "/bin/rm", tmp_dir + dex_file_name };
385 std::string tmp_dir = tmp_name.substr(0, tmp_last_slash + 1);
388 std::string dex_file = tmp_dir + "classes.dex";
390 std::string profile_file = tmp_dir + "primary.prof";
393 std::string output_dex = tmp_dir + "classes.dex.new";
399 { dexlayout, "-v", "-w", tmp_dir, "-o", tmp_name, "-p", profile_file, dex_file };
420 std::string tmp_dir = tmp_name.substr(0, tmp_last_slash + 1);
424 std::string dex_file = tmp_dir + "classes.dex";
431 tmp_dir,
438 std::string profile_file = tmp_dir + "primary.prof";
440 std::string output_dex = tmp_dir + "classes.dex.new";
441 std::string second_output_dex = tmp_dir + "classes.dex.new.new";
448 { dexlayout, "-i", "-v", "-w", tmp_dir, "-o", tmp_name, "-p", profile_file, dex_file };
460 { dexlayout, "-i", "-v", "-w", tmp_dir, "-o", tmp_name, "-p", profile_file, output_dex };
486 std::string tmp_dir = tmp_name.substr(0, tmp_last_slash + 1);
489 std::string input_dex = tmp_dir + "classes.dex";
491 std::string output_dex = tmp_dir + "classes.dex.new";
497 { dexlayout, "-w", tmp_dir, "-o", "/dev/null", input_dex };