/system/core/libcutils/ |
trace-host.c | 27 void atrace_set_debuggable(bool debuggable __unused) { }
|
trace-dev.c | 48 // Set whether this process is debuggable, which determines whether 49 // application-level tracing is allowed when the ro.debuggable system property 51 void atrace_set_debuggable(bool debuggable) 53 atrace_is_debuggable = debuggable; 99 // Check whether the system is debuggable. 100 property_get("ro.debuggable", value, "0");
|
/art/compiler/driver/ |
compiler_options.cc | 61 bool debuggable, 82 debuggable_(debuggable),
|
compiler_options.h | 74 bool debuggable,
|
/libnativehelper/ |
JniInvocation.cpp | 53 static const char* kDebuggableSystemProperty = "ro.debuggable"; 54 static const char* kDebuggableFallback = "0"; // Not debuggable. 64 char debuggable[PROPERTY_VALUE_MAX]; local 65 property_get(kDebuggableSystemProperty, debuggable, kDebuggableFallback); 67 if (strcmp(debuggable, "1") != 0) { 68 // Not a debuggable build. 75 // Debuggable build.
|
/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.
|
DeviceChooserDialog.java | 218 String debuggable = device.getProperty(IDevice.PROP_DEBUGGABLE); local 219 if (debuggable != null && debuggable.equals("1")) { //$NON-NLS-1$
|
/external/apache-harmony/jdwp/ |
Android.mk | 23 # -Xcompiler-option --debuggable to ART so the tests are compiled with full 25 cts_jdwp_test_runtime_target := dalvikvm|\#ABI\#| -XXlib:libart.so -Xcompiler-option --debuggable 26 cts_jdwp_test_target_runtime_args := -Xcompiler-option --debuggable
|
Android_debug_config.mk | 31 jdwp_test_common_runtime_options := -XXlib:libartd.so -Xcompiler-option --debuggable
|
/art/tools/ |
run-jdwp-tests.sh | 34 # We use Quick's image on target because optimizing's image is not compiled debuggable. 37 debuggee_args="-Xcompiler-option --compiler-backend=Optimizing -Xcompiler-option --debuggable" 58 image_compiler_option="--vm-arg -Ximage-compiler-option --vm-arg --debuggable" 85 --vm-arg -Xcompiler-option --vm-arg --debuggable \
|
/ndk/build/core/ |
add-application.mk | 220 # Determine whether the application should be debuggable. 223 # - Otherwise, extract the android:debuggable attribute from the manifest. 229 $(call ndk_log,Application '$(_app)' forced debuggable through NDK_DEBUG) 231 $(call ndk_log,Application '$(_app)' forced *not* debuggable through NDK_DEBUG) 238 APP_DEBUGGABLE := $(shell $(HOST_AWK) -f $(BUILD_AWK)/extract-debuggable.awk $(call host-path,$(APP_MANIFEST))) 242 $(call ndk_log,Application '$(_app)' *is* debuggable) 244 $(call ndk_log,Application '$(_app)' is not debuggable) 253 # Otherwise, set to 'debug' if android:debuggable is set to TRUE, 265 $(call ndk_log,Selecting debug optimization mode (app is debuggable)) 268 $(call ndk_log,Selecting release optimization mode (app is not debuggable)) [all...] |
/frameworks/base/core/java/com/android/internal/os/ |
InstallerConnection.java | 102 boolean debuggable, String outputPath) { 116 builder.append(debuggable ? " 1" : " 0");
|
/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.");
|
/frameworks/base/services/core/java/com/android/server/pm/ |
PackageDexOptimizer.java | 119 final boolean debuggable = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0; 176 + " vmSafeMode=" + vmSafeMode + " debuggable=" + debuggable 181 dexoptNeeded, vmSafeMode, debuggable, oatDir);
|
Installer.java | 90 boolean debuggable, @Nullable String outputPath) { 97 debuggable, outputPath);
|
/hardware/ril/rild/ |
rild.c | 102 char debuggable[PROP_VALUE_MAX]; local 130 * Debuggable build only: 133 property_get("ro.debuggable", debuggable, "0"); 134 if (strcmp(debuggable, "1") == 0) {
|
/system/core/include/cutils/ |
trace.h | 98 * Set whether the process is debuggable. By default the process is not 99 * considered debuggable. If the process is not debuggable then application- 100 * level tracing is not allowed unless the ro.debuggable system property is 103 void atrace_set_debuggable(bool debuggable);
|
/art/test/ |
Android.run-test.mk | 165 DEBUGGABLE_TYPES += debuggable 187 $(foreach debuggable, $(11), \ 190 test-art-$(target)-run-test-$(run-type)-$(prebuild)-$(compiler)-$(relocate)-$(trace)-$(gc)-$(jni)-$(image)-$(pictest)-$(debuggable)-$(test)$(address_size) \ 475 # Tests that should fail when the optimizing compiler compiles them non-debuggable. 489 # Tests that should fail when the optimizing compiler compiles them debuggable. 495 $(IMAGE_TYPES),$(PICTEST_TYPES),debuggable,$(TEST_ART_BROKEN_OPTIMIZING_DEBUGGABLE_RUN_TESTS),$(ALL_ADDRESS_SIZES)) 600 # {11: ndebuggable debuggable}-{12: test name}{13: 32 or 64} 791 ifeq ($(11),debuggable) 793 run_test_options += --debuggable [all...] |
run-test | 124 debuggable="no" 194 elif [ "x$1" = "x--debuggable" ]; then 195 run_args="${run_args} -Xcompiler-option --debuggable" 196 debuggable="yes" 503 echo " --debuggable Whether to compile Java code for a debugger." 599 if [ "$runtime" = "art" -a "$image_suffix" = "-optimizing" -a "$target_mode" = "no" -a "$debuggable" = "no" ]; then
|
/system/core/init/ |
property_service.cpp | 504 char debuggable[PROP_VALUE_MAX]; local 505 int ret = property_get("ro.debuggable", debuggable); 506 if (ret && (strcmp(debuggable, "1") == 0)) {
|
/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
|
/frameworks/native/cmds/installd/ |
installd.h | 246 bool debuggable, const char* oat_dir);
|
commands.cpp | 749 bool vm_safe_mode, bool debuggable) 881 // Check whether all apps should be compiled debuggable. 882 if (!debuggable) { 883 debuggable = 902 + (debuggable ? 1 : 0) [all...] |
/external/libselinux/src/ |
android.c | 919 bool debuggable; member in struct:pkgInfo 977 pkgInfo->debuggable = atoi(cur); 1010 selinux_log(SELINUX_INFO, "%s: name=%s uid=%u debuggable=%s dataDir=%s seinfo=%s\n", 1012 pkgInfo->name, pkgInfo->uid, pkgInfo->debuggable ? "true" : "false", pkgInfo->dataDir, pkgInfo->seinfo); [all...] |
/art/dex2oat/ |
dex2oat.cc | 576 bool debuggable = false; local [all...] |