/art/tools/dmtracedump/ |
D | createtesttrace.cc | 129 char* cp = buf; in parseInputFile() local 130 if (*cp == '#') continue; in parseInputFile() 132 if (isdigit(*cp)) { in parseInputFile() 133 while (isspace(*cp)) cp += 1; in parseInputFile() 134 int32_t threadId = strtoul(cp, &cp, 0); in parseInputFile() 137 indentEnd = cp; in parseInputFile() 139 if (indentEnd - cp + 1 > maxFrames) maxFrames = indentEnd - cp + 1; in parseInputFile() 166 char* cp = buf; in parseInputFile() local 169 if (*cp == '#') continue; in parseInputFile() 172 if (!isdigit(*cp)) { in parseInputFile() [all …]
|
/art/test/142-classloader2/src/ |
D | Main.java | 43 String cp = System.getProperty("java.class.path"); in main() local 44 if (cp.split(System.getProperty("path.separator")).length != 1) { in main() 45 throw new IllegalStateException("Didn't find exactly one classpath element in " + cp); in main() 47 if (!cp.endsWith("classloader2.jar")) { in main() 48 throw new IllegalStateException("Don't understand classpath " + cp); in main() 50 cp = cp.replace("classloader2.jar", "classloader2-ex.jar"); in main() 53 cp, ClassLoader.getSystemClassLoader().getParent()); in main()
|
/art/test/952-invoke-custom/ |
D | build | 34 -cp|-classpath|--class-path) 37 args+=(-cp $classpath) 68 ${ORIGINAL_JAVAC:-javac} ${JAVAC_ARGS} -cp "${ASM_JAR}" -d classes $(find util-src -name '*.java')
|
/art/test/071-dexfile-get-static-size/ |
D | build | 25 cp res/test1.dex test-jar/classes.dex 26 cp res/test2.dex test-jar/classes2.dex
|
/art/test/1948-obsolete-const-method-handle/util-src/ |
D | build-classes | 41 (cd "${SRC_PATH}" && javac -cp "${ASM_CLASSPATH}" -d "${BUILD_PATH}" Main.java art/*.java art/const… 43 (cd "${SCRIPT_PATH}" && java -cp "${ASM_CLASSPATH}:${BUILD_PATH}" art.constmethodhandle.TestGenerat…
|
/art/tools/bisection_search/ |
D | README.md | 22 ./bisection_search.py -cp classes.dex --expected-output out_int --class Test 32 ./bisection_search.py --raw-cmd='run.sh -cp classes.dex Test' --expected-retcode SUCCESS 33 …./bisection_search.py --raw-cmd='/bin/sh art {ARGS} -cp classes.dex Test' --expected-retcode SUCCE… 37 bisection_search.py [-h] [-cp CLASSPATH] [--class CLASSNAME] [--lib LIB] 46 Tool for finding compiler bugs. Either --raw-cmd or both -cp and --class are required. 52 -cp CLASSPATH, --classpath CLASSPATH classpath
|
/art/tools/ahat/ |
D | Android.mk | 61 cp $(PRIVATE_AHAT_SOURCE_PROGUARD_MAP) $@ 89 -cp $(PRIVATE_AHAT_TEST_DUMP_JAR) Main $@ 100 -cp $(PRIVATE_AHAT_TEST_DUMP_JAR) Main $@ --base 120 java -cp $(PRIVATE_AHAT_RI_TEST_DUMP_JAR) Main $@
|
/art/test/ |
D | run-test | 835 cp -LRp "$test_dir" "$tmp_dir" 839 cp "${progdir}/etc/default-build" build 841 cp "${progdir}/etc/default-build" . 845 cp "${progdir}/etc/default-run" run 847 cp "${progdir}/etc/default-run" . 851 cp "${progdir}/etc/default-check" check 853 cp "${progdir}/etc/default-check" . 963 cp "$build_output" "$output" 1001 cp "$build_output" "$output"
|
/art/tools/ |
D | dist_linux_bionic.sh | 44 cp -R ${out_dir}/soong/host/* $DIST_DIR/
|
D | art | 59 art --32 -cp my_classes.dex MainClass 90 local cp="$1" 97 for part in $cp; do 106 # e.g. (-cp foo/classes.dex:bar/classes.dex) -> (foo/classes.dex bar/classes.dex) 114 -cp|-classpath) 139 # Parse -cp <CP>, -classpath <CP>, and $CLASSPATH to find the dex files. 142 # e.g. -cp foo/classes.dex:bar/classes.dex would delete (foo/oat bar/oat) directories. 147 # Second try: Look for latest -cp or -classpath arg which will take precedence. 225 # -cp argument is split by ':' and stored in DEX2OAT_CLASSPATH 251 -cp) [all …]
|
/art/test/121-modifiers/ |
D | info.txt | 11 javac -cp asm.jar:asm-tree.jar:. Asm.java 12 java -cp asm.jar:asm-tree.jar:. Asm
|
/art/test/979-const-method-handle/ |
D | build | 52 ${ORIGINAL_JAVAC:-javac} ${JAVAC_ARGS} -cp "${ASM_JAR}" -d classes $(find util-src -name '*.java')
|
/art/tools/jvmti-agents/jit-load/ |
D | README.md | 13 …lib64/libopenjdkjvmti.so -agentpath:$ANDROID_HOST_OUT/lib64/libjitload.so -cp tmp/java/helloworld.… 20 …bopenjdkjvmtid.so -agentpath:$ANDROID_HOST_OUT/lib64/libjitloadd.so=fatal -cp tmp/java/helloworld.…
|
/art/tools/jvmti-agents/field-null-percent/ |
D | README.md | 22 … '-agentpath:libfieldnull.so=Lname/of/class;.nameOfField:Ltype/of/field;' -cp tmp/java/helloworld.… 34 > `java '-agentpath:libfieldnull.so=Lname/of/class;.nameOfField:Ltype/of/field;' -cp tmp/hellowo…
|
/art/dexdump/ |
D | dexdump.cc | 306 char* cp; in createAccessFlagStr() local 307 cp = str = reinterpret_cast<char*>(malloc(count * (kLongest + 1) + 1)); in createAccessFlagStr() 313 if (cp != str) { in createAccessFlagStr() 314 *cp++ = ' '; in createAccessFlagStr() 316 memcpy(cp, accessStr, len); in createAccessFlagStr() 317 cp += len; in createAccessFlagStr() 322 *cp = '\0'; in createAccessFlagStr() 1297 char* cp = tmpBuf; in dumpMethod() local 1299 *cp++ = *base++; in dumpMethod() 1304 *cp = *base++; in dumpMethod() [all …]
|
/art/tools/jvmti-agents/breakpoint-logger/ |
D | README.md | 35 …vmti.so '-agentpath:libbreakpointlogger.so=Lclass/Name;->methodName()V@0' -cp tmp/java/helloworld.… 41 > `java '-agentpath:libbreakpointlogger.so=Lclass/Name;->methodName()V@0' -cp tmp/helloworld/cla…
|
/art/libdexfile/dex/ |
D | descriptors_names.cc | 102 const char* cp = &s[0]; in MangleForJni() local 104 uint32_t ch = GetUtf16FromUtf8(&cp); in MangleForJni()
|
/art/tools/jvmti-agents/ti-fast/ |
D | README.md | 98 …D_HOST_OUT/lib64/libopenjdkjvmti.so '-agentpath:libtifast.so=MethodEntry' -cp tmp/java/helloworld.… 110 > `java '-agentpath:libtifast.so=MethodEntry' -cp tmp/helloworld/classes helloworld`
|
/art/tools/jvmti-agents/titrace/ |
D | README.md | 12 …lib64/libopenjdkjvmti.so -agentpath:$ANDROID_HOST_OUT/lib64/libtitrace.so -cp tmp/java/helloworld.… 40 > `adb shell run-as com.littleinc.orm_benchmark 'cp /data/local/tmp/libtitrace.so /data/data/com.li…
|
/art/tools/jvmti-agents/wrapagentproperties/ |
D | README.md | 15 …64/libwrapagentproperties.so=/path/to/prop.file,/path/to/agent=agent-args -cp tmp/java/helloworld.…
|
/art/tools/jvmti-agents/dump-jvmti-state/ |
D | README.md | 15 > `art -Xplugin:$ANDROID_HOST_OUT/lib64/libopenjdkjvmti.so '-agentpath:libdumpjvmti.so' -cp tmp/…
|
/art/tools/ahat/src/main/com/android/ahat/proguard/ |
D | ProguardMap.java | 272 int cp = clearName.indexOf(')'); in readFromReader() local 273 if (op == -1 || cp == -1) { in readFromReader() 277 String sig = clearName.substring(op, cp + 1); in readFromReader()
|
/art/build/ |
D | Android.gtest.mk | 101 cp $< $@ 107 cp $< $@ 113 cp $< $@ 120 cp $< $@ 159 cp $< $@ 166 cp $< $@
|
/art/test/ti-agent/ |
D | jni_binder.cc | 36 const char* cp = &s[0]; in MangleForJni() local 38 uint32_t ch = ti::GetUtf16FromUtf8(&cp); in MangleForJni()
|
/art/tools/runtime_memusage/ |
D | sanitizer_logcat_analysis.sh | 315 cp "$dex_start" "$filtered_dex_start"
|