Searched refs:path (Results 1 - 25 of 27) sorted by relevance

12

/dalvik/dx/src/com/android/dx/cf/direct/
H A DClassPathOpener.java33 * Opens all the class files found in a class path element. Path elements
56 * Provides the file name and byte array for a class path element.
59 * filesystem path.
71 * this path element. Processing will continue if possible.
88 * @param pathname {@code non-null;} path element to process
101 * Processes a path element.
126 String path = file.getPath();
128 if (path.endsWith(".zip") ||
129 path.endsWith(".jar") ||
130 path
[all...]
/dalvik/vm/mterp/x86/
H A DOP_FILLED_NEW_ARRAY.S20 # less frequent path, so we'll redo some work
H A DOP_NEW_ARRAY.S26 jne .L${opcode}_finish # yes, fast path
H A DOP_EXECUTE_INLINE.S20 jnz .L${opcode}_debugprofile # yes, take slow path
/dalvik/tests/068-classloader/src/
H A DFancyLoader.java141 File path = new File(pathName);
145 raf = new RandomAccessFile(path, "r");
/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" +
384 * be the path of a class file, a jar file, or a directory
736 * Returns the "fixed" version of a given file path, suitable for
737 * use as a path within a {@code .jar} file and for checking
740 * the path, and if it finds it, it takes the portion after to be
741 * the fixed path. If that isn't found but the path starts with
746 * @param path {@code non-null;} the path to "fix"
748 * the given {@code path})
750 fixPath(String path) argument
1196 String path; field in class:Main.ParallelProcessor
1207 ParallelProcessor(String path, long lastModified, byte bytes[]) argument
[all...]
/dalvik/vm/
H A DMisc.cpp751 const char* dvmPathToAbsolutePortion(const char* path) { argument
752 if (path == NULL) {
756 if (path[0] == '/') {
757 /* It's a regular absolute path. Return it. */
758 return path;
761 const char* sentinel = strstr(path, "/./");
H A DMisc.h311 * Returns the pointer to the "absolute path" part of the given path
313 * indicating the start of the absolute path. If the path isn't absolute
327 const char* dvmPathToAbsolutePortion(const char* path);
H A DThread.cpp1023 * fails to attach during shutdown, but the "fail" path calls
3391 char path[64];
3392 snprintf(path, sizeof(path), "/proc/%d/comm", tid);
3394 int fd = open(path, O_RDONLY);
3487 char path[64];
3488 snprintf(path, sizeof(path), "/proc/%d/task", getpid());
3490 DIR* d = opendir(path);
H A DInit.cpp819 dvmFprintf(stderr, "Missing classpath path list\n");
829 const char* path = argv[i] + sizeof("-Xbootclasspath:")-1; local
831 if (*path == '\0') {
832 dvmFprintf(stderr, "Missing bootclasspath path list\n");
836 gDvm.bootClassPathStr = strdup(path);
843 dvmFprintf(stderr, "Missing appending bootclasspath path list\n");
849 dvmFprintf(stderr, "Can't append to bootclasspath path list\n");
860 dvmFprintf(stderr, "Missing prepending bootclasspath path list\n");
866 dvmFprintf(stderr, "Can't prepend to bootclasspath path list\n");
/dalvik/dx/etc/
H A Ddx.bat21 REM Set up prog to be the path of this script, including following symlinks,
29 rem Check we have a valid Java.exe in the path.
/dalvik/vm/oo/
H A DClass.h55 * Boot class path accessors, for class loader getResources().
62 * Determine whether "path" is a member of "cpe".
64 bool dvmClassPathContains(const ClassPathEntry* cpe, const char* path);
169 * During DEX optimizing, add an extra DEX to the bootstrap class path.
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...]
/dalvik/dx/src/com/android/dx/command/annotool/
H A DAnnotationLister.java61 for (String path : args.files) {
64 opener = new ClassPathOpener(path, true,
/dalvik/vm/mterp/armv5te/
H A DOP_EXECUTE_INLINE.S21 bne .L${opcode}_debugmode @ yes - take slow path
H A DOP_EXECUTE_INLINE_RANGE.S19 bne .L${opcode}_debugmode @ yes - take slow path
/dalvik/vm/mterp/mips/
H A DOP_EXECUTE_INLINE.S21 bnez a2, .L${opcode}_debugmode # yes - take slow path
H A DOP_EXECUTE_INLINE_RANGE.S19 bnez a2, .L${opcode}_debugmode # yes - take slow path
/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/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/mterp/out/
H A DInterpAsm-x86.S688 /* This is the less common path, so we'll redo some work
689 here rather than force spills on the common path */
725 /* This is the less common path, so we'll redo some work
726 here rather than force spills on the common path */
762 /* This is the less common path, so we'll redo some work
763 here rather than force spills on the common path */
887 * Resolution required. This is the least-likely path, and we're
973 * Resolution required. This is the least-likely path.
989 /* Now, we need to sync up with fast path. We need eax to
1101 * Resolution required. This is the least-likely path
[all...]
H A DInterpAsm-armv5te-vfp.S1397 * us a constant 5-cycle path plus a branch at the end to the
7308 bne .LOP_EXECUTE_INLINE_debugmode @ yes - take slow path
7342 bne .LOP_EXECUTE_INLINE_RANGE_debugmode @ yes - take slow path
7802 * Resolution required. This is the least-likely path.
7855 * Resolution required. This is the least-likely path.
7934 * Resolution required. This is the least-likely path.
H A DInterpAsm-armv7-a-neon.S1407 * us a constant 5-cycle path plus a branch at the end to the
7266 bne .LOP_EXECUTE_INLINE_debugmode @ yes - take slow path
7300 bne .LOP_EXECUTE_INLINE_RANGE_debugmode @ yes - take slow path
7756 * Resolution required. This is the least-likely path.
7809 * Resolution required. This is the least-likely path.
7888 * Resolution required. This is the least-likely path.
H A DInterpAsm-armv7-a.S1407 * us a constant 5-cycle path plus a branch at the end to the
7266 bne .LOP_EXECUTE_INLINE_debugmode @ yes - take slow path
7300 bne .LOP_EXECUTE_INLINE_RANGE_debugmode @ yes - take slow path
7756 * Resolution required. This is the least-likely path.
7809 * Resolution required. This is the least-likely path.
7888 * Resolution required. This is the least-likely path.

Completed in 2590 milliseconds

12