Home
last modified time | relevance | path

Searched refs:path (Results 1 – 25 of 30) sorted by relevance

12

/dalvik/dx/src/com/android/dx/cf/direct/
DClassPathOpener.java126 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/
Dinfo.txt1 Make a hot exception-throwing path to stress test how the trace builder handles
/dalvik/dx/src/com/android/dx/command/dexer/
DMain.java750 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/
DOP_FILLED_NEW_ARRAY.S20 # less frequent path, so we'll redo some work
DOP_NEW_ARRAY.S26 jne .L${opcode}_finish # yes, fast path
DOP_EXECUTE_INLINE.S20 jnz .L${opcode}_debugprofile # yes, take slow path
/dalvik/tests/068-classloader/src/
DFancyLoader.java141 File path = new File(pathName); in findClassNonDalvik() local
145 raf = new RandomAccessFile(path, "r"); in findClassNonDalvik()
/dalvik/vm/
DMisc.cpp752 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()
DMisc.h327 const char* dvmPathToAbsolutePortion(const char* path);
DInit.cpp832 const char* path = argv[i] + sizeof("-Xbootclasspath:")-1; in processOptions() local
834 if (*path == '\0') { in processOptions()
839 gDvm.bootClassPathStr = strdup(path); in processOptions()
DThread.cpp3420 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/
DAnnotationLister.java61 for (String path : args.files) { in process()
64 opener = new ClassPathOpener(path, true, in process()
/dalvik/dx/etc/
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/
DClass.h64 bool dvmClassPathContains(const ClassPathEntry* cpe, const char* path);
DClass.cpp540 bool dvmClassPathContains(const ClassPathEntry* cpe, const char* path) in dvmClassPathContains() argument
543 if (strcmp(cpe->fileName, path) == 0) in dvmClassPathContains()
/dalvik/vm/compiler/template/
DMakefile-template38 $(shell find . -path ./$(OUTPUT_DIR) -prune -o -type f -print)
/dalvik/vm/mterp/
DMakefile-mterp38 $(shell find . -path ./$(OUTPUT_DIR) -prune -o -type f -print) \
/dalvik/vm/mterp/mips/
DOP_EXECUTE_INLINE_RANGE.S19 bnez a2, .L${opcode}_debugmode # yes - take slow path
DOP_EXECUTE_INLINE.S21 bnez a2, .L${opcode}_debugmode # yes - take slow path
/dalvik/libdex/
Dsha1.cpp431 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/
DOP_EXECUTE_INLINE_RANGE.S19 bne .L${opcode}_debugmode @ yes - take slow path
DOP_EXECUTE_INLINE.S21 bne .L${opcode}_debugmode @ yes - take slow path
/dalvik/vm/analysis/
DDexPrepare.cpp65 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/
DTraceDump.c1663 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/
DInterpAsm-x86.S1143 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

12