OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:dex_file_location
(Results
1 - 4
of
4
) sorted by null
/art/runtime/
oat_file.cc
292
std::string
dex_file_location
= ResolveRelativeEncodedDexLocation(
local
302
dex_file_location
.c_str());
312
dex_file_location
.c_str());
320
dex_file_location
.c_str());
328
dex_file_location
.c_str(),
338
dex_file_location
.c_str(),
351
dex_file_location
.c_str(),
360
dex_file_location
.c_str(),
370
dex_file_location
.c_str(),
383
dex_file_location
.c_str())
[
all
...]
class_linker.cc
3201
std::string
dex_file_location
= dex_file.GetLocation();
local
[
all
...]
/art/runtime/gc/space/
image_space.cc
1475
const std::string&
dex_file_location
= oat_dex_file->GetDexFileLocation();
local
[
all
...]
/art/oatdump/
oatdump.cc
641
std::string
dex_file_location
= oat_dex_file.GetDexFileLocation();
local
645
os << "Failed to open dex file '" <<
dex_file_location
<< "': " << error_msg;
664
if (
dex_file_location
.size() > PATH_MAX ||
dex_file_location
.size() <= 0) {
669
size_t dex_orig_pos =
dex_file_location
.rfind('/');
671
dex_orig_name =
dex_file_location
;
673
dex_orig_name =
dex_file_location
.substr(dex_orig_pos + 1);
677
dex_file_location
.erase(dex_orig_pos, strlen("base.apk") + 1);
678
size_t apk_orig_pos =
dex_file_location
.rfind('/');
680
dex_orig_name =
dex_file_location
.substr(++apk_orig_pos)
[
all
...]
Completed in 4270 milliseconds