Searched defs:options (Results 1 - 22 of 22) sorted by relevance

/art/disassembler/
H A Ddisassembler.cc30 Disassembler* Disassembler::Create(InstructionSet instruction_set, DisassemblerOptions* options) { argument
32 return new arm::DisassemblerArm(options);
34 return new arm64::DisassemblerArm64(options);
36 return new mips::DisassemblerMips(options);
38 return new x86::DisassemblerX86(options, false);
40 return new x86::DisassemblerX86(options, true);
H A Ddisassembler_mips.h29 explicit DisassemblerMips(DisassemblerOptions* options) : Disassembler(options) {} argument
H A Ddisassembler_arm.h29 explicit DisassemblerArm(DisassemblerOptions* options) : Disassembler(options) {} argument
H A Ddisassembler_arm64.h30 explicit DisassemblerArm64(DisassemblerOptions* options) : Disassembler(options) { argument
H A Ddisassembler_x86.h27 DisassemblerX86(DisassemblerOptions* options, bool supports_rex) argument
28 : Disassembler(options), supports_rex_(supports_rex) {}
/art/runtime/
H A Dparsed_options_test.cc39 RuntimeOptions options; local
40 options.push_back(std::make_pair(boot_class_path.c_str(), null));
41 options.push_back(std::make_pair("-classpath", null));
42 options.push_back(std::make_pair(lib_core.c_str(), null));
43 options.push_back(std::make_pair("-cp", null));
44 options.push_back(std::make_pair(lib_core.c_str(), null));
45 options.push_back(std::make_pair("-Ximage:boot_image", null));
46 options.push_back(std::make_pair("-Xcheck:jni", null));
47 options.push_back(std::make_pair("-Xms2048", null));
48 options
[all...]
H A Dcommon_runtime_test.h87 // Allow subclases such as CommonCompilerTest to add extra options.
88 virtual void SetUpRuntimeOptions(RuntimeOptions* options) {} argument
H A Dparsed_options.cc33 ParsedOptions* ParsedOptions::Create(const RuntimeOptions& options, bool ignore_unrecognized) { argument
35 if (parsed->Parse(options, ignore_unrecognized)) {
49 // The spec says the -Xmx and -Xms options must be multiples of 1024. It
169 bool ParsedOptions::Parse(const RuntimeOptions& options, bool ignore_unrecognized) { argument
207 // parsing options. If you set this to kCollectorTypeHSpaceCompact then we will do an hspace
278 for (size_t i = 0; i < options.size(); ++i) {
279 if (true && options[0].first == "-Xzygote") {
280 LOG(INFO) << "option[" << i << "]=" << options[i].first;
283 for (size_t i = 0; i < options.size(); ++i) {
284 const std::string option(options[
[all...]
H A Dcommon_runtime_test.cc199 RuntimeOptions options; local
200 options.push_back(std::make_pair("bootclasspath", &boot_class_path_));
201 options.push_back(std::make_pair("-Xcheck:jni", nullptr));
202 options.push_back(std::make_pair(min_heap_string.c_str(), nullptr));
203 options.push_back(std::make_pair(max_heap_string.c_str(), nullptr));
204 options.push_back(std::make_pair("compilercallbacks", callbacks_.get()));
205 SetUpRuntimeOptions(&options);
206 if (!Runtime::Create(options, false)) {
H A Ddebugger.h58 arg_count(0), arg_values(NULL), options(0), error(JDWP::ERR_NONE),
77 uint32_t options; member in struct:art::DebugInvokeReq
207 static bool ParseJdwpOptions(const std::string& options);
559 JDWP::JdwpTag* arg_types, uint32_t options,
H A Dprofiler.cc328 const std::string& output_filename, const ProfilerOptions& options) {
329 if (!options.IsEnabled()) {
345 << " and options: " << options; local
348 profiler_ = new BackgroundMethodSamplingProfiler(output_filename, options);
391 const std::string& output_filename, const ProfilerOptions& options)
393 options_(options),
327 Start( const std::string& output_filename, const ProfilerOptions& options) argument
390 BackgroundMethodSamplingProfiler( const std::string& output_filename, const ProfilerOptions& options) argument
H A Druntime.cc328 bool Runtime::Create(const RuntimeOptions& options, bool ignore_unrecognized) { argument
335 if (!instance_->Init(options, ignore_unrecognized)) {
658 std::unique_ptr<ParsedOptions> options(ParsedOptions::Create(raw_options, ignore_unrecognized));
659 if (options.get() == nullptr) {
660 LOG(ERROR) << "Failed to parse options";
667 Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_);
669 boot_class_path_string_ = options->boot_class_path_string_;
670 class_path_string_ = options->class_path_string_;
671 properties_ = options
[all...]
H A Ddebugger.cc296 // Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.)
536 * JDWP options are:
614 bool Dbg::ParseJdwpOptions(const std::string& options) { argument
615 VLOG(jdwp) << "ParseJdwpOptions: " << options;
618 Split(options, ',', pairs);
623 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'"; local
630 LOG(ERROR) << "Must specify JDWP transport: " << options;
633 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
3476 JDWP::JdwpTag* arg_types, uint32_t options,
3597 req->options
3473 InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id, JDWP::RefTypeId class_id, JDWP::MethodId method_id, uint32_t arg_count, uint64_t* arg_values, JDWP::JdwpTag* arg_types, uint32_t options, JDWP::JdwpTag* pResultTag, uint64_t* pResultValue, JDWP::ObjectId* pExceptionId) argument
[all...]
H A Djni_internal.cc3020 RuntimeOptions options; local
3022 JavaVMOption* option = &args->options[i];
3023 options.push_back(std::make_pair(std::string(option->optionString), option->extraInfo));
3026 if (!Runtime::Create(options, ignore_unrecognized)) {
3119 JavaVMExt::JavaVMExt(Runtime* runtime, ParsedOptions* options) argument
3125 trace(options->jni_trace_),
3135 if (options->check_jni_) {
/art/compiler/
H A Dimage_test.cc143 RuntimeOptions options; local
146 options.push_back(std::make_pair(image.c_str(), reinterpret_cast<void*>(NULL)));
148 options.push_back(std::make_pair("-Xnorelocate", nullptr));
150 if (!Runtime::Create(options, false)) {
H A Dcommon_compiler_test.cc331 void CommonCompilerTest::SetUpRuntimeOptions(RuntimeOptions* options) { argument
332 CommonRuntimeTest::SetUpRuntimeOptions(options);
339 options->push_back(std::make_pair("compilercallbacks", callbacks_.get()));
/art/compiler/sea_ir/debug/
H A Ddot_gen.h41 explicit DotGenerationVisitor(const DotConversionOptions* const options, argument
42 art::SafeMap<int, const Type*>* types): graph_(), types_(types), options_(options) { }
97 // Stores options for turning a SEA IR graph to a .dot file.
101 // Saves to @filename the .dot representation of @graph with the options @options.
/art/runtime/jdwp/
H A Djdwp_main.cc200 JdwpState::JdwpState(const JdwpOptions* options) argument
201 : options_(options),
235 JdwpState* JdwpState::Create(const JdwpOptions* options) { argument
238 std::unique_ptr<JdwpState> state(new JdwpState(options));
239 switch (options->transport) {
241 InitSocketTransport(state.get(), options);
245 InitAdbTransport(state.get(), options);
249 LOG(FATAL) << "Unknown transport: " << options->transport;
274 if (options->suspend) {
H A Djdwp_socket.cc69 bool InitSocketTransport(JdwpState* state, const JdwpOptions* options) { argument
70 uint16_t port = options->port;
72 if (options->server) {
73 if (options->port != 0) {
86 LOG(ERROR) << "JDWP net startup failed (req port=" << options->port << ")";
93 if (options->suspend) {
96 LOG(INFO) << "JDWP will " << (options->server ? "listen" : "connect") << " on port " << port;
261 bool JdwpSocketState::Establish(const JdwpOptions* options) { argument
268 CHECK(!options->server);
269 CHECK(!options
[all...]
H A Djdwp_handler.cc119 uint32_t options = request.ReadUnsigned32("InvokeOptions bit flags"); local
120 VLOG(jdwp) << StringPrintf(" options=0x%04x%s%s", options,
121 (options & INVOKE_SINGLE_THREADED) ? " (SINGLE_THREADED)" : "",
122 (options & INVOKE_NONVIRTUAL) ? " (NONVIRTUAL)" : "");
127 JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.get(), argTypes.get(), options, &resultTag, &resultValue, &exceptObjId);
/art/patchoat/
H A Dpatchoat.cc146 RuntimeOptions options; local
148 options.push_back(std::make_pair("compilercallbacks", &callbacks));
150 options.push_back(std::make_pair(img.c_str(), nullptr));
151 options.push_back(std::make_pair("imageinstructionset", reinterpret_cast<const void*>(isa_name)));
152 if (!Runtime::Create(options, false)) {
235 RuntimeOptions options; local
237 options.push_back(std::make_pair("compilercallbacks", &callbacks));
239 options.push_back(std::make_pair(img.c_str(), nullptr));
240 options.push_back(std::make_pair("imageinstructionset", reinterpret_cast<const void*>(isa_name)));
241 if (!Runtime::Create(options, fals
[all...]
/art/oatdump/
H A Doatdump.cc62 "Usage: oatdump [options] ...\n"
141 explicit OatDumper(const OatFile& oat_file, OatDumperOptions* options) argument
144 options_(options),
1774 RuntimeOptions options; local
1782 options.push_back(std::make_pair("compilercallbacks", &callbacks));
1787 options.push_back(std::make_pair(boot_image_option.c_str(), nullptr));
1792 options.push_back(std::make_pair(image_option.c_str(), nullptr));
1794 options.push_back(
1798 if (!Runtime::Create(options, false)) {

Completed in 2855 milliseconds