Home
last modified time | relevance | path

Searched refs:options (Results 76 – 100 of 101) sorted by relevance

12345

/art/tools/jvmti-agents/titrace/
Dtitrace.cc230 JNIEXPORT jint JNICALL Agent_OnAttach(JavaVM *vm, char* options, void* reserved) { in Agent_OnAttach() argument
231 return Agent_OnLoad(vm, options, reserved); in Agent_OnAttach()
/art/tools/runtime_memusage/
DREADME38 of a file. Additional options specified below are useful for removing
42 Usage: sanitizer_logcat_analysis.sh [options] [LOGCAT_FILE] [CATEGORIES...]
/art/runtime/
Dcommon_runtime_test.h84 static void SetUpRuntimeOptionsForFillHeap(RuntimeOptions *options);
139 virtual void SetUpRuntimeOptions(RuntimeOptions* options ATTRIBUTE_UNUSED) {} in SetUpRuntimeOptions()
Druntime_options.def140 RUNTIME_OPTIONS_KEY (std::list<ti::AgentSpec>, AgentLib) // -agentlib:<libname>=<options>
141 RUNTIME_OPTIONS_KEY (std::list<ti::AgentSpec>, AgentPath) // -agentpath:<libname>=<options>
Dtransaction_test.cc32 void SetUpRuntimeOptions(/*out*/RuntimeOptions* options) override { in SetUpRuntimeOptions() argument
34 options->emplace_back("-Ximage:" + GetImageLocation(), nullptr); in SetUpRuntimeOptions()
Dclass_linker_test.cc458 void SetUpRuntimeOptions(RuntimeOptions* options) override { in SetUpRuntimeOptions() argument
459 CommonRuntimeTest::SetUpRuntimeOptions(options); in SetUpRuntimeOptions()
/art/compiler/
Dcommon_compiler_test.cc160 void CommonCompilerTest::SetUpRuntimeOptions(RuntimeOptions* options) { in SetUpRuntimeOptions() argument
161 CommonRuntimeTest::SetUpRuntimeOptions(options); in SetUpRuntimeOptions()
/art/dex2oat/linker/
Dimage_test.h91 void SetUpRuntimeOptions(RuntimeOptions* options) override { in SetUpRuntimeOptions() argument
92 CommonCompilerTest::SetUpRuntimeOptions(options); in SetUpRuntimeOptions()
97 options->push_back(std::make_pair("compilercallbacks", callbacks_.get())); in SetUpRuntimeOptions()
Doat_writer.cc3423 Options options; in LayoutDexFile() local
3424 options.compact_dex_level_ = compact_dex_level_; in LayoutDexFile()
3425 options.update_checksum_ = true; in LayoutDexFile()
3426 DexLayout dex_layout(options, profile_compilation_info_, /*file*/ nullptr, /*header*/ nullptr); in LayoutDexFile()
/art/cmdline/
Dcmdline_types.h614 Result Parse(const std::string& options) {
618 Split(options, ',', &verbose_options);
695 static Result ParseInto(ProfileSaverOptions& options,
701 options.*pField = result.ReleaseValue();
/art/tools/jvmti-agents/ti-fast/
Dtifast.cc672 char* options, in AgentStart() argument
680 std::string args(options); in AgentStart()
726 extern "C" JNIEXPORT jint JNICALL Agent_OnAttach(JavaVM *vm, char* options, void* reserved) { in Agent_OnAttach() argument
727 return AgentStart(vm, options, reserved); in Agent_OnAttach()
731 extern "C" JNIEXPORT jint JNICALL Agent_OnLoad(JavaVM* jvm, char* options, void* reserved) { in Agent_OnLoad() argument
732 return AgentStart(jvm, options, reserved); in Agent_OnLoad()
/art/test/ti-agent/
Dredefinition_helper.cc262 char* options ATTRIBUTE_UNUSED, in OnLoad()
437 char* options ATTRIBUTE_UNUSED, in OnLoad()
453 char* options ATTRIBUTE_UNUSED, in OnLoad()
/art/dexlayout/
Ddex_ir_builder.cc177 void CheckAndSetRemainingOffsets(const DexFile& dex_file, const Options& options);
252 const Options& options) { in DexIrBuilder() argument
301 if (!options.class_filter_.empty()) { in DexIrBuilder()
306 if (options.class_filter_.find(descriptor) == options.class_filter_.end()) { in DexIrBuilder()
316 builder_maps.CheckAndSetRemainingOffsets(dex_file, options); in DexIrBuilder()
332 void BuilderMaps::CheckAndSetRemainingOffsets(const DexFile& dex_file, const Options& options) { in CheckAndSetRemainingOffsets() argument
365 if (options.class_filter_.empty()) { in CheckAndSetRemainingOffsets()
Ddexdiag.cc302 Options options; in ProcessOneDexMapping() local
305 options)); in ProcessOneDexMapping()
/art/test/901-hello-ti-agent/
Dbasics.cc86 char* options ATTRIBUTE_UNUSED, in OnLoad()
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md24 * Multiple breakpoints can be included in the options, separated with ','s.
/art/test/1919-vminit-thread-start-timing/
Dvminit.cc143 char* options ATTRIBUTE_UNUSED, in OnLoad()
/art/runtime/jni/
Djava_vm_ext.cc1204 RuntimeOptions options; in JNI_CreateJavaVM() local
1206 JavaVMOption* option = &args->options[i]; in JNI_CreateJavaVM()
1207 options.push_back(std::make_pair(std::string(option->optionString), option->extraInfo)); in JNI_CreateJavaVM()
1210 if (!Runtime::Create(options, ignore_unrecognized)) { in JNI_CreateJavaVM()
/art/dex2oat/
Ddex2oat_image_test.cc71 void SetUpRuntimeOptions(RuntimeOptions* options) override { in SetUpRuntimeOptions() argument
73 options->emplace_back("-Xnoimage-dex2oat", nullptr); in SetUpRuntimeOptions()
Dverifier_deps_test.cc62 void SetUpRuntimeOptions(RuntimeOptions* options) override { in SetUpRuntimeOptions() argument
63 CommonCompilerTest::SetUpRuntimeOptions(options); in SetUpRuntimeOptions()
/art/tools/dexfuzz/
DREADME116 Check dexfuzz --help for the full list of options.
/art/test/
DREADME.md51 To see the invocation options supported by `run-test` and `testrunner.py`, run
/art/runtime/arch/
Dstub_test.cc58 void SetUpRuntimeOptions(RuntimeOptions *options) override { in SetUpRuntimeOptions() argument
60 for (std::pair<std::string, const void*>& pair : *options) { in SetUpRuntimeOptions()
65 options->push_back(std::make_pair("-Xint", nullptr)); in SetUpRuntimeOptions()
/art/runtime/verifier/
Dreg_type_test.cc1057 void SetUpRuntimeOptions(RuntimeOptions *options) override { in SetUpRuntimeOptions() argument
1058 SetUpRuntimeOptionsForFillHeap(options); in SetUpRuntimeOptions()
/art/openjdkjvmti/include/
Djvmti.h50 Agent_OnLoad(JavaVM *vm, char *options, void *reserved);
53 Agent_OnAttach(JavaVM* vm, char* options, void* reserved);

12345