HomeSort by relevance Sort by last modified time
    Searched refs:debuggable (Results 1 - 25 of 272) 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/909-attach-agent/
run 26 --android-runtime-option --debuggable \
30 --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/libcutils/
trace-host.c 27 void atrace_set_debuggable(bool debuggable __unused) { }
trace-dev.c 50 // Set whether this process is debuggable, which determines whether
51 // application-level tracing is allowed when the ro.debuggable system property
53 void atrace_set_debuggable(bool debuggable)
55 atrace_is_debuggable = debuggable;
  /system/core/libpackagelistparser/include/packagelistparser/
packagelistparser.h 51 bool debuggable; member in struct:pkg_info
  /frameworks/base/core/jni/
com_android_internal_content_NativeLibraryHelper.cpp 313 NativeLibrariesIterator(ZipFileRO* zipFile, bool debuggable, void* cookie)
314 : mZipFile(zipFile), mDebuggable(debuggable), mCookie(cookie), mLastSlash(NULL) {
319 static NativeLibrariesIterator* create(ZipFileRO* zipFile, bool debuggable) {
326 return new NativeLibrariesIterator(zipFile, debuggable, cookie);
394 jboolean debuggable, iterFunc callFunc, void* callArg) {
401 NativeLibrariesIterator::create(zipFile, debuggable));
436 jboolean debuggable) {
451 NativeLibrariesIterator::create(zipFile, debuggable));
493 jboolean extractNativeLibs, jboolean hasNativeBridge, jboolean debuggable)
496 return (jint) iterateOverNativeFiles(env, apkHandle, javaCpuAbi, debuggable,
    [all...]
  /frameworks/base/core/java/com/android/internal/content/
NativeLibraryHelper.java 79 final boolean debuggable; field in class:NativeLibraryHelper.Handle
99 lite.debuggable);
103 boolean extractNativeLibs, boolean debuggable) throws IOException {
118 return new Handle(apkHandles, multiArch, extractNativeLibs, debuggable);
122 boolean debuggable) {
126 this.debuggable = debuggable;
158 boolean debuggable);
162 boolean debuggable);
167 sum += nativeSumNativeBinaries(apkHandle, abi, handle.debuggable);
    [all...]
  /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)
  /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 103 * Set whether the process is debuggable. By default the process is not
104 * considered debuggable. If the process is not debuggable then application-
105 * level tracing is not allowed unless the ro.debuggable system property is
108 void atrace_set_debuggable(bool debuggable);
  /art/compiler/driver/
compiler_options.cc 67 bool debuggable,
92 debuggable_(debuggable),
193 } else if (option == "--debuggable") {
  /art/tools/
run-jdwp-tests.sh 38 debuggee_args="-Xcompiler-option --debuggable"
165 --vm-arg -Xcompiler-option --vm-arg --debuggable \
  /art/test/
run-test 124 debuggable="no"
221 elif [ "x$1" = "x--debuggable" ]; then
222 run_args="${run_args} -Xcompiler-option --debuggable"
223 debuggable="yes"
616 echo " --debuggable Whether to compile Java code for a debugger."
743 if [ "$debuggable" = "yes" ]; then
744 checker_args="$checker_args --debuggable"
    [all...]
  /system/core/libnativeloader/
native_loader.cpp 98 char debuggable[PROP_VALUE_MAX]; local
99 property_get("ro.debuggable", debuggable, "0");
100 return std::string(debuggable) == "1";
268 // For debuggable platform builds use ANDROID_ADDITIONAL_PUBLIC_LIBRARIES environment
  /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 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;
  /system/core/run-as/
run-as.cpp 44 // - that '<package-name>' is the name of an installed and debuggable package
180 // Reject any non-debuggable package.
181 if (!info.debuggable) {
182 error(1, 0, "package not debuggable: %s", pkgname);
  /system/core/logcat/
logpersist 4 case `getprop ro.debuggable` in

Completed in 691 milliseconds

1 2 3 4 5 6 7 8 91011