summaryrefslogtreecommitdiff
path: root/runtime/utils.h
diff options
context:
space:
mode:
author Richard Uhler <ruhler@google.com> 2015-03-02 15:50:08 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-03-02 15:50:09 +0000
commit4ab52e75c782abf19ff9ebff8d19c87ec4ec97b6 (patch)
tree182699e6f100d74902790594dc0b377999332378 /runtime/utils.h
parent2eb5168bd9e43b80452eaee5be32c063e124886e (diff)
parent965fd02721746d4164bc40719cd53eefab37cfb3 (diff)
Merge "Don't require three-character extensions for dex locations."
Diffstat (limited to 'runtime/utils.h')
-rw-r--r--runtime/utils.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/utils.h b/runtime/utils.h
index 698d686afd..9d04d35e26 100644
--- a/runtime/utils.h
+++ b/runtime/utils.h
@@ -516,8 +516,9 @@ std::string GetDalvikCacheFilenameOrDie(const char* file_location,
// Returns the system location for an image
std::string GetSystemImageFilename(const char* location, InstructionSet isa);
-// Returns an .odex file name next adjacent to the dex location.
+// Returns an .odex file name adjacent to the dex location.
// For example, for "/foo/bar/baz.jar", return "/foo/bar/<isa>/baz.odex".
+// The dex location must include a directory component and have an extension.
// Note: does not support multidex location strings.
std::string DexFilenameToOdexFilename(const std::string& location, InstructionSet isa);