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

/art/runtime/
H A Dutils.cc1298 // odex_location = /foo/bar/<isa>/baz.odex
1301 std::string odex_location(location);
1302 InsertIsaDirectory(isa, &odex_location);
1303 size_t dot_index = odex_location.size() - 3 - 1; // 3=dex or zip or apk
1304 CHECK_EQ('.', odex_location[dot_index]) << location;
1305 odex_location.resize(dot_index + 1);
1306 CHECK_EQ('.', odex_location[odex_location.size()-1]) << location << " " << odex_location; local
1307 odex_location
[all...]

Completed in 122 milliseconds