/dalvik/dx/src/com/android/dx/cf/direct/ |
D | ClassPathOpener.java | 126 String path = file.getPath(); in processOne() local 128 if (path.endsWith(".zip") || in processOne() 129 path.endsWith(".jar") || in processOne() 130 path.endsWith(".apk")) { in processOne() 135 return consumer.processFileBytes(path, file.lastModified(), bytes); in processOne() 229 String path = one.getName(); in processArchive() local 245 any |= consumer.processFileBytes(path, one.getTime(), bytes); in processArchive()
|
/dalvik/tests/081-hot-exceptions/ |
D | info.txt | 1 Make a hot exception-throwing path to stress test how the trace builder handles
|
/dalvik/dx/src/com/android/dx/command/dexer/ |
D | Main.java | 750 private static String fixPath(String path) { in fixPath() argument 756 path = path.replace('\\', '/'); in fixPath() 759 int index = path.lastIndexOf("/./"); in fixPath() 762 return path.substring(index + 3); in fixPath() 765 if (path.startsWith("./")) { in fixPath() 766 return path.substring(2); in fixPath() 769 return path; in fixPath() 1196 String path; field in Main.ParallelProcessor 1207 private ParallelProcessor(String path, long lastModified, byte bytes[]) { in ParallelProcessor() argument 1208 this.path = path; in ParallelProcessor() [all …]
|
/dalvik/vm/mterp/x86/ |
D | OP_FILLED_NEW_ARRAY.S | 20 # less frequent path, so we'll redo some work
|
D | OP_NEW_ARRAY.S | 26 jne .L${opcode}_finish # yes, fast path
|
D | OP_EXECUTE_INLINE.S | 20 jnz .L${opcode}_debugprofile # yes, take slow path
|
/dalvik/tests/068-classloader/src/ |
D | FancyLoader.java | 141 File path = new File(pathName); in findClassNonDalvik() local 145 raf = new RandomAccessFile(path, "r"); in findClassNonDalvik()
|
/dalvik/vm/ |
D | Misc.cpp | 752 const char* dvmPathToAbsolutePortion(const char* path) { in dvmPathToAbsolutePortion() argument 753 if (path == NULL) { in dvmPathToAbsolutePortion() 757 if (path[0] == '/') { in dvmPathToAbsolutePortion() 759 return path; in dvmPathToAbsolutePortion() 762 const char* sentinel = strstr(path, "/./"); in dvmPathToAbsolutePortion()
|
D | Misc.h | 327 const char* dvmPathToAbsolutePortion(const char* path);
|
D | Init.cpp | 832 const char* path = argv[i] + sizeof("-Xbootclasspath:")-1; in processOptions() local 834 if (*path == '\0') { in processOptions() 839 gDvm.bootClassPathStr = strdup(path); in processOptions()
|
D | Thread.cpp | 3420 char path[64]; in dumpNativeThread() local 3421 snprintf(path, sizeof(path), "/proc/%d/comm", tid); in dumpNativeThread() 3423 int fd = open(path, O_RDONLY); in dumpNativeThread()
|
/dalvik/dx/src/com/android/dx/command/annotool/ |
D | AnnotationLister.java | 61 for (String path : args.files) { in process() 64 opener = new ClassPathOpener(path, true, in process()
|
/dalvik/dx/etc/ |
D | dx.bat | 21 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/ |
D | Class.h | 64 bool dvmClassPathContains(const ClassPathEntry* cpe, const char* path);
|
D | Class.cpp | 540 bool dvmClassPathContains(const ClassPathEntry* cpe, const char* path) in dvmClassPathContains() argument 543 if (strcmp(cpe->fileName, path) == 0) in dvmClassPathContains()
|
/dalvik/vm/compiler/template/ |
D | Makefile-template | 38 $(shell find . -path ./$(OUTPUT_DIR) -prune -o -type f -print)
|
/dalvik/vm/mterp/ |
D | Makefile-mterp | 38 $(shell find . -path ./$(OUTPUT_DIR) -prune -o -type f -print) \
|
/dalvik/vm/mterp/mips/ |
D | OP_EXECUTE_INLINE_RANGE.S | 19 bnez a2, .L${opcode}_debugmode # yes - take slow path
|
D | OP_EXECUTE_INLINE.S | 21 bnez a2, .L${opcode}_debugmode # yes - take slow path
|
/dalvik/libdex/ |
D | sha1.cpp | 431 char path[MAXPATH]; in main() local 469 sprintf(path, "%s%s%s", drive, dir, f.ff_name); in main() 470 s = path; in main()
|
/dalvik/vm/mterp/armv5te/ |
D | OP_EXECUTE_INLINE_RANGE.S | 19 bne .L${opcode}_debugmode @ yes - take slow path
|
D | OP_EXECUTE_INLINE.S | 21 bne .L${opcode}_debugmode @ yes - take slow path
|
/dalvik/vm/analysis/ |
D | DexPrepare.cpp | 65 static std::string saneDirName(const std::string& path) { in saneDirName() argument 66 size_t n = path.rfind('/'); in saneDirName() 70 return path.substr(0, n); in saneDirName()
|
/dalvik/tools/dmtracedump/ |
D | TraceDump.c | 1663 char path[FILENAME_MAX]; in createInclusiveProfileGraphNew() local 1665 snprintf(path, FILENAME_MAX, "%s.dot", gOptions.graphFileName); in createInclusiveProfileGraphNew() 1667 snprintf(path, FILENAME_MAX, "/tmp/dot-%d-%d.dot", (int)time(NULL), rand()); in createInclusiveProfileGraphNew() 1670 FILE* file = fopen(path, "w+"); in createInclusiveProfileGraphNew() 1682 snprintf(command, 1024, "dot -Tpng -o '%s' '%s'", gOptions.graphFileName, path); in createInclusiveProfileGraphNew() 1687 remove(path); in createInclusiveProfileGraphNew()
|
/dalvik/vm/mterp/out/ |
D | InterpAsm-x86.S | 1143 jne .LOP_NEW_ARRAY_finish # yes, fast path 1202 # less frequent path, so we'll redo some work 7839 jnz .LOP_EXECUTE_INLINE_debugprofile # yes, take slow path
|