HomeSort by relevance Sort by last modified time
    Searched refs:debuggable (Results 1 - 25 of 316) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/597-deopt-new-string/
run 17 # We want to run in debuggable mode which keeps the call into StringFactory.newEmptyString().
18 exec ${RUN} -Xcompiler-option --debuggable "${@}"
  /art/test/597-deopt-busy-loop/
run 17 # We want to run in debuggable mode and compiled.
18 exec ${RUN} --jit -Xcompiler-option --debuggable "${@}"
  /art/test/597-deopt-invoke-stub/
run 18 # we want to run in debuggable mode with jit compilation.
21 exec ${RUN} --jit --runtime-option -Xjitthreshold:10000 -Xcompiler-option --debuggable "${@}"
  /cts/tests/framework/base/activitymanager/appDebuggable/src/android/server/am/debuggable/
DebuggableAppActivity.java 17 package android.server.am.debuggable;
Components.java 17 package android.server.am.debuggable;
  /frameworks/ml/nn/
Android.bp 26 debuggable: { // eng and userdebug builds
  /art/test/909-attach-agent/
run 34 --android-runtime-option --debuggable \
39 --android-runtime-option --debuggable \
  /art/tools/golem/
env 43 ALL_TARGETS=(art-interpreter art-opt art-jit art-jit-cc art-opt-cc art-opt-debuggable art-vdex)
  /system/core/libpackagelistparser/include/packagelistparser/
packagelistparser.h 51 bool debuggable; member in struct:pkg_info
  /frameworks/base/core/java/com/android/internal/content/
NativeLibraryHelper.java 80 final boolean debuggable; field in class:NativeLibraryHelper.Handle
100 lite.debuggable);
104 boolean extractNativeLibs, boolean debuggable) throws IOException {
119 return new Handle(apkHandles, multiArch, extractNativeLibs, debuggable);
130 return new Handle(apkHandles, lite.multiArch, lite.extractNativeLibs, lite.debuggable);
134 boolean debuggable) {
138 this.debuggable = debuggable;
171 boolean debuggable);
175 boolean debuggable);
    [all...]
  /frameworks/base/core/jni/
com_android_internal_content_NativeLibraryHelper.cpp 311 NativeLibrariesIterator(ZipFileRO* zipFile, bool debuggable, void* cookie)
312 : mZipFile(zipFile), mDebuggable(debuggable), mCookie(cookie), mLastSlash(NULL) {
317 static NativeLibrariesIterator* create(ZipFileRO* zipFile, bool debuggable) {
324 return new NativeLibrariesIterator(zipFile, debuggable, cookie);
392 jboolean debuggable, iterFunc callFunc, void* callArg) {
399 NativeLibrariesIterator::create(zipFile, debuggable));
434 jboolean debuggable) {
449 NativeLibrariesIterator::create(zipFile, debuggable));
491 jboolean extractNativeLibs, jboolean hasNativeBridge, jboolean debuggable)
494 return (jint) iterateOverNativeFiles(env, apkHandle, javaCpuAbi, debuggable,
    [all...]
  /frameworks/base/tools/aapt2/link/
ManifestFixer_test.cpp 433 <application android:debuggable="false">
440 <application android:debuggable="true">
444 // Inject the debuggable attribute when the attribute is not present and the
448 {}, "application", xml::kSchemaAndroid, "debuggable", "true"), NotNull());
450 // Set the debuggable flag to true if the attribute is false and the flag is
454 {}, "application", xml::kSchemaAndroid, "debuggable", "true"), NotNull());
456 // Keep debuggable flag true if the attribute is true and the flag is present
459 {}, "application", xml::kSchemaAndroid, "debuggable", "true"), NotNull());
461 // Do not inject the debuggable attribute when the attribute is not present
465 {}, "application", xml::kSchemaAndroid, "debuggable", "true"), IsNull())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DelayedLaunchInfo.java 53 /** debuggable attribute of the manifest file. */
87 * @param debuggable the debuggable value of the app's manifest, or null if not set.
93 IAndroidLaunchAction launchAction, IFile pack, Boolean debuggable,
102 mDebuggable = debuggable;
153 * Returns the value of the manifest debuggable attribute. If the attribute was not set,
155 * @return the manifest debuggable attribute.
  /external/apache-harmony/jdwp/
Android.mk 25 # -Xcompiler-option --debuggable to ART so the tests are compiled with full
27 cts_jdwp_test_runtime_target := dalvikvm|\#ABI\#| -XXlib:libart.so -Xcompiler-option --debuggable
28 cts_jdwp_test_target_runtime_args := -Xcompiler-option --debuggable
  /art/tools/checker/file_format/checker/
parser.py 25 def __extractLine(prefix, line, arch = None, debuggable = False):
33 dbg_specifier = r"-DEBUGGABLE" if debuggable else r""
86 for debuggable in [True, False]:
89 startLine = __extractLine(prefix + "-START", sline, arch, debuggable)
91 return None, startLine, (arch, debuggable)
  /libnativehelper/
JniInvocation.cpp 37 char debuggable[PROP_VALUE_MAX] = {0}; local
38 __system_property_get("ro.debuggable", debuggable);
39 return strcmp(debuggable, "1") == 0;
85 // Not a debuggable build.
92 // Debuggable build.
  /device/google/marlin/
init.power.sh 41 # On debuggable builds, enable console_suspend if uart is enabled to save power
43 if [[ $(getprop ro.debuggable) == "1" && ! -e /sys/class/tty/ttyHSL0 ]]
  /device/google/wahoo/
init.power.sh 47 # On debuggable builds, enable console_suspend if uart is enabled to save power
49 if [[ $(getprop ro.debuggable) == "1" && ! -e /sys/class/tty/ttyMSM0 ]]
  /system/core/libcutils/
trace-dev.inc 52 // Set whether this process is debuggable, which determines whether
53 // application-level tracing is allowed when the ro.debuggable system property
55 void atrace_set_debuggable(bool debuggable)
57 atrace_is_debuggable = debuggable;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
ProjectCheckPage.java 175 // project is an android project, we check the debuggable attribute.
177 Boolean debuggable = null; local
179 debuggable = manifestData.getDebuggable();
182 if (debuggable != null && debuggable == Boolean.TRUE) {
184 "The manifest 'debuggable' attribute is set to true.\n" +
186 "Applications with debuggable=true are compiled in debug mode always.");
  /system/core/libcutils/include/cutils/
trace.h 105 * Set whether the process is debuggable. By default the process is not
106 * considered debuggable. If the process is not debuggable then application-
107 * level tracing is not allowed unless the ro.debuggable system property is
110 void atrace_set_debuggable(bool debuggable);
  /art/tools/checker/
checker.py 40 parser.add_argument("--debuggable", action="store_true",
41 help="Run tests for debuggable code.")
109 RunTests(args.check_prefix, args.source_path, args.tested_file, args.arch, args.debuggable)
  /cts/tests/framework/base/activitymanager/src/android/server/am/
ActivityManagerAmProfileTests.java 21 import static android.server.am.debuggable.Components.DEBUGGABLE_APP_ACTIVITY;
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
debug.rb 106 A module that wraps token stream methods with debugging event code. A debuggable
  /system/core/libpackagelistparser/
packagelistparser.c 159 errmsg = "Could not get next token for field \"debuggable\"";
165 errmsg = "Could not convert field \"debuggable\" to integer value";
171 errmsg = "Field \"debuggable\" is not 0 or 1 boolean value";
175 pkg_info->debuggable = (bool) tmp;

Completed in 880 milliseconds

1 2 3 4 5 6 7 8 91011>>