OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:boot_class_path
(Results
1 - 5
of
5
) sorted by null
/art/runtime/
runtime_test.cc
34
std::string
boot_class_path
;
local
35
boot_class_path
+= "-Xbootclasspath:";
36
boot_class_path
+= lib_core;
39
options.push_back(std::make_pair(
boot_class_path
.c_str(), null));
/art/runtime/gc/space/
image_space.cc
49
std::vector<std::string>
boot_class_path
;
local
50
Split(boot_class_path_string, ':',
boot_class_path
);
51
if (
boot_class_path
.empty()) {
71
for (size_t i = 0; i <
boot_class_path
.size(); i++) {
72
arg_vector.push_back(std::string("--dex-file=") +
boot_class_path
[i]);
/art/runtime/native/
dalvik_system_DexFile.cc
218
const std::vector<const DexFile*>&
boot_class_path
= class_linker->GetBootClassPath();
local
219
for (size_t i = 0; i <
boot_class_path
.size(); i++) {
220
if (
boot_class_path
[i]->GetLocation() == filename.c_str()) {
/art/runtime/jdwp/
jdwp_handler.cc
329
std::vector<std::string>
boot_class_path
;
local
330
Split(Runtime::Current()->GetBootClassPathString(), ':',
boot_class_path
);
331
expandBufAdd4BE(pReply,
boot_class_path
.size());
332
for (size_t i = 0; i <
boot_class_path
.size(); ++i) {
333
expandBufAddUtf8String(pReply,
boot_class_path
[i]);
[
all
...]
/art/dex2oat/
dex2oat.cc
847
std::vector<const DexFile*>
boot_class_path
;
local
[
all
...]
Completed in 279 milliseconds