Lines Matching refs:options

82   Options options;  in DexlayoutDriver()  local
83 options.dump_ = true; in DexlayoutDriver()
84 options.verbose_ = true; in DexlayoutDriver()
95 options.show_annotations_ = true; in DexlayoutDriver()
98 options.build_dex_ir_ = true; in DexlayoutDriver()
101 options.checksum_only_ = true; in DexlayoutDriver()
104 options.disassemble_ = true; in DexlayoutDriver()
107 options.exports_only_ = true; in DexlayoutDriver()
110 options.show_file_headers_ = true; in DexlayoutDriver()
113 options.show_section_headers_ = true; in DexlayoutDriver()
116 options.ignore_bad_checksum_ = true; in DexlayoutDriver()
120 options.output_format_ = kOutputPlain; in DexlayoutDriver()
122 options.output_format_ = kOutputXml; in DexlayoutDriver()
123 options.verbose_ = false; in DexlayoutDriver()
129 options.output_file_name_ = optarg; in DexlayoutDriver()
132 options.profile_file_name_ = optarg; in DexlayoutDriver()
135 options.visualize_pattern_ = true; in DexlayoutDriver()
136 options.verbose_ = false; in DexlayoutDriver()
139 options.show_section_statistics_ = true; in DexlayoutDriver()
140 options.verbose_ = false; in DexlayoutDriver()
143 options.update_checksum_ = true; in DexlayoutDriver()
146 options.verify_output_ = true; in DexlayoutDriver()
149 options.output_dex_directory_ = optarg; in DexlayoutDriver()
153 options.compact_dex_level_ = CompactDexLevel::kCompactDexLevelNone; in DexlayoutDriver()
155 options.compact_dex_level_ = CompactDexLevel::kCompactDexLevelFast; in DexlayoutDriver()
171 if (options.checksum_only_ && options.ignore_bad_checksum_) { in DexlayoutDriver()
182 if (options.output_file_name_) { in DexlayoutDriver()
183 out_file = fopen(options.output_file_name_, "w"); in DexlayoutDriver()
185 PLOG(ERROR) << "Can't open " << options.output_file_name_; in DexlayoutDriver()
192 if (options.profile_file_name_) { in DexlayoutDriver()
198 int profile_fd = open(options.profile_file_name_, flags); in DexlayoutDriver()
200 PLOG(ERROR) << "Can't open " << options.profile_file_name_; in DexlayoutDriver()
205 LOG(ERROR) << "Can't read profile info from " << options.profile_file_name_; in DexlayoutDriver()
212 DexLayout dex_layout(options, profile_info.get(), out_file, /*header=*/ nullptr); in DexlayoutDriver()
220 if (options.output_file_name_) { in DexlayoutDriver()