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

1 2 3 4 5 6 7 8 9

  /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 "${@}"
  /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;
92 // Check whether the system is debuggable.
93 property_get("ro.debuggable", value, "0");
  /system/core/libpackagelistparser/include/packagelistparser/
packagelistparser.h 51 bool debuggable; member in struct:pkg_info
  /libnativehelper/
JniInvocation.cpp 53 static const char* kDebuggableSystemProperty = "ro.debuggable";
63 char debuggable[PROP_VALUE_MAX]; local
64 __system_property_get(kDebuggableSystemProperty, debuggable);
66 if (strcmp(debuggable, "1") != 0) {
67 // Not a debuggable build.
74 // 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 22 # -Xcompiler-option --debuggable to ART so the tests are compiled with full
24 cts_jdwp_test_runtime_target := dalvikvm|\#ABI\#| -XXlib:libart.so -Xcompiler-option --debuggable
25 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/checker/file_format/checker/
parser.py 25 def __extractLine(prefix, line, arch = None, debuggable = False):
33 dbg_specifier = r"-DEBUGGABLE" if debuggable else r""
60 for debuggable in [True, False]:
62 startLine = __extractLine(prefix + "-START", line, arch, debuggable)
64 return None, startLine, (arch, 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...]
  /art/tools/
run-jdwp-tests.sh 46 debuggee_args="-Xcompiler-option --debuggable"
130 --vm-arg -Xcompiler-option --vm-arg --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.");
  /hardware/ril/rild/
rild.c 105 char debuggable[PROP_VALUE_MAX]; local
136 * Debuggable build only:
139 property_get("ro.debuggable", debuggable, "0");
140 if (strcmp(debuggable, "1") == 0) {
  /system/core/libnativeloader/
native_loader.cpp 49 char debuggable[PROP_VALUE_MAX]; local
50 property_get("ro.debuggable", debuggable, "0");
51 return std::string(debuggable) == "1";
134 // For debuggable platform builds use ANDROID_ADDITIONAL_PUBLIC_LIBRARIES environment
  /frameworks/base/services/core/java/com/android/server/pm/
PackageDexOptimizer.java 189 final boolean debuggable = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
243 + " vmSafeMode=" + vmSafeMode + " debuggable=" + debuggable
252 | (debuggable ? DEXOPT_DEBUGGABLE : 0)
  /system/core/include/cutils/
trace.h 101 * Set whether the process is debuggable. By default the process is not
102 * considered debuggable. If the process is not debuggable then application-
103 * level tracing is not allowed unless the ro.debuggable system property is
106 void atrace_set_debuggable(bool debuggable);
  /art/compiler/driver/
compiler_options.cc 66 bool debuggable,
90 debuggable_(debuggable),
177 } else if (option == "--debuggable") {
  /art/test/
Android.run-test.mk 168 DEBUGGABLE_TYPES += debuggable
190 $(foreach debuggable, $(11), \
193 test-art-$(target)-run-test-$(run-type)-$(prebuild)-$(compiler)-$(relocate)-$(trace)-$(gc)-$(jni)-$(image)-$(pictest)-$(debuggable)-$(test)$(address_size) \
499 # Tests that should fail when the optimizing compiler compiles them non-debuggable.
512 # Tests that should fail when the optimizing compiler compiles them debuggable.
518 $(IMAGE_TYPES),$(PICTEST_TYPES),debuggable,$(TEST_ART_BROKEN_OPTIMIZING_DEBUGGABLE_RUN_TESTS),$(ALL_ADDRESS_SIZES))
664 # {11: ndebuggable debuggable}-{12: test name}{13: 32 or 64}
    [all...]
run-test 103 debuggable="no"
196 elif [ "x$1" = "x--debuggable" ]; then
197 run_args="${run_args} -Xcompiler-option --debuggable"
198 debuggable="yes"
554 echo " --debuggable Whether to compile Java code for a debugger."
704 if [ "$debuggable" = "yes" ]; then
705 checker_args="$checker_args --debuggable"
  /art/tools/checker/
checker.py 40 parser.add_argument("--debuggable", action="store_true",
41 help="Run tests for debuggable code.")
108 RunTests(args.check_prefix, args.source_path, args.tested_file, args.arch, args.debuggable)
  /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 160 errmsg = "Could not get next token for field \"debuggable\"";
166 errmsg = "Could not convert field \"debuggable\" to integer value";
172 errmsg = "Field \"debuggable\" is not 0 or 1 boolean value";
176 pkg_info->debuggable = (bool) tmp;
  /ndk/
ndk-gdb.py 133 debuggable_attrib = "{}debuggable".format(ANDROID_XMLNS)
135 debuggable = applications[0].attrib[debuggable_attrib]
136 if debuggable == "true":
138 elif debuggable == "false":
141 msg = "Unexpected android:debuggable value: '{}'"
142 error(msg.format(debuggable))
271 debuggable = is_debuggable(manifest_root)
272 if not debuggable:
273 error("Application is not marked as debuggable in its manifest.")
398 "the application is installed and debuggable?"
    [all...]
  /system/core/init/
property_service.cpp 464 std::string debuggable = property_get("ro.debuggable"); local
465 if (debuggable == "1") {

Completed in 412 milliseconds

1 2 3 4 5 6 7 8 9