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

/dalvik/libdex/
H A Dsha1.cpp431 char path[MAXPATH]; local
469 sprintf(path, "%s%s%s", drive, dir, f.ff_name);
470 s = path;
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java102 "that is an indication that the path you are on will ultimately\n" +
380 * be the path of a class file, a jar file, or a directory
732 * Returns the "fixed" version of a given file path, suitable for
733 * use as a path within a {@code .jar} file and for checking
736 * the path, and if it finds it, it takes the portion after to be
737 * the fixed path. If that isn't found but the path starts with
742 * @param path {@code non-null;} the path to "fix"
744 * the given {@code path})
746 fixPath(String path) argument
1185 String path; field in class:Main.ParallelProcessor
1196 ParallelProcessor(String path, long lastModified, byte bytes[]) argument
[all...]
/dalvik/vm/
H A DInit.cpp693 dvmFprintf(stderr, "Missing classpath path list\n");
703 const char* path = argv[i] + sizeof("-Xbootclasspath:")-1; local
705 if (*path == '\0') {
706 dvmFprintf(stderr, "Missing bootclasspath path list\n");
710 gDvm.bootClassPathStr = strdup(path);
717 dvmFprintf(stderr, "Missing appending bootclasspath path list\n");
723 dvmFprintf(stderr, "Can't append to bootclasspath path list\n");
734 dvmFprintf(stderr, "Missing prepending bootclasspath path list\n");
740 dvmFprintf(stderr, "Can't prepend to bootclasspath path list\n");
H A DMisc.cpp744 const char* dvmPathToAbsolutePortion(const char* path) { argument
745 if (path == NULL) {
749 if (path[0] == '/') {
750 /* It's a regular absolute path. Return it. */
751 return path;
754 const char* sentinel = strstr(path, "/./");
/dalvik/vm/analysis/
H A DDexPrepare.cpp63 * Get just the directory portion of the given path. Equivalent to dirname(3).
65 static std::string saneDirName(const std::string& path) { argument
66 size_t n = path.rfind('/');
70 return path.substr(0, n);
75 * see if the directory part of the given path (all but the last
393 /* full path to optimizer */
409 /* probably shouldn't ship the hard-coded path */
909 * that wasn't previously loaded into the bootstrap class path, loading
1052 * bootstrap class path. The class loader favored the bootstrap
1150 * var Full path o
[all...]
/dalvik/tools/dmtracedump/
H A DTraceDump.c1663 char path[FILENAME_MAX]; local
1665 snprintf(path, FILENAME_MAX, "%s.dot", gOptions.graphFileName);
1667 snprintf(path, FILENAME_MAX, "/tmp/dot-%d-%d.dot", (int)time(NULL), rand());
1670 FILE* file = fopen(path, "w+");
1682 snprintf(command, 1024, "dot -Tpng -o '%s' '%s'", gOptions.graphFileName, path);
1687 remove(path);
/dalvik/vm/oo/
H A DClass.cpp126 of either the AppClass jar or one of the jars in the bootstrap path.
411 /* make this a requirement -- don't currently support dirs in path */
453 * Process the bootstrap class path. This means opening the specified
530 * Dump the contents of the bootstrap class path.
538 * Returns "true" if the class path contains the specified path.
540 bool dvmClassPathContains(const ClassPathEntry* cpe, const char* path) argument
543 if (strcmp(cpe->fileName, path) == 0)
650 * If entries are added or removed from the bootstrap class path, the
670 * If the path wa
[all...]

Completed in 291 milliseconds