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

1 2 3 4 5 6 7

  /cts/tests/tests/permission/src/android/permission/cts/
DebuggableTest.java 28 * Verify that pre-installed packages don't have the debuggable
29 * flag set. The debuggable flag allows should only be used during
45 assertTrue("Packages marked debuggable: " + debuggableApps, debuggableApps.isEmpty());
  /development/ndk/platforms/android-8/samples/bitmap-plasma/
AndroidManifest.xml 6 <application android:label="@string/app_name" android:debuggable="true">
  /development/ndk/samples/hello-jni/
AndroidManifest.xml 8 android:debuggable="true">
  /ndk/tests/awk/extract-launchable/
no-launchable.in 8 android:debuggable="true">
one-launchable.in 8 android:debuggable="true">
multiple-categories.in 8 android:debuggable="true">
multiple-launchables.in 8 android:debuggable="true">
  /ndk/build/awk/
extract-debuggable.awk 15 # A nawk/gawk script used to extract the debuggable flag from an
22 DEBUGGABLE = "";
24 # simply extract the 'android:debuggable' attribute value from
28 DEBUGGABLE = XML_ATTR["android:debuggable"];
33 if ( DEBUGGABLE != "true" )
34 DEBUGGABLE = "false";
36 print DEBUGGABLE;
  /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.
  /development/ndk/platforms/android-9/samples/native-plasma/
AndroidManifest.xml 8 android:hasCode="false" android:debuggable="true">
  /external/robolectric/src/test/resources/
TestAndroidManifestWithFlags.xml 8 android:debuggable="true"
  /system/core/libcutils/
trace.c 41 // Set whether this process is debuggable, which determines whether
42 // application-level tracing is allowed when the ro.debuggable system property
44 void atrace_set_debuggable(bool debuggable)
46 atrace_is_debuggable = debuggable;
93 // Check whether the system is debuggable.
94 property_get("ro.debuggable", value, "0");
  /ndk/build/core/
add-application.mk 181 # Determine whether the application should be debuggable.
184 # - Otherwise, extract the android:debuggable attribute from the manifest.
190 $(call ndk_log,Application '$(_app)' forced debuggable through NDK_DEBUG)
192 $(call ndk_log,Application '$(_app)' forced *not* debuggable through NDK_DEBUG)
199 APP_DEBUGGABLE := $(shell $(HOST_AWK) -f $(BUILD_AWK)/extract-debuggable.awk $(call host-path,$(APP_MANIFEST)))
203 $(call ndk_log,Application '$(_app)' *is* debuggable)
205 $(call ndk_log,Application '$(_app)' is not debuggable)
214 # Otherwise, set to 'debug' if android:debuggable is set to TRUE,
226 $(call ndk_log,Selecting debug optimization mode (app is debuggable))
229 $(call ndk_log,Selecting release optimization mode (app is not debuggable))
    [all...]
  /ndk/
ndk-gdb 19 # on a given NDK application. The application must be debuggable, i.e.
20 # its android:debuggable attribute must be set to 'true' in the
549 # Check that the application is debuggable, or nothing will work
550 DEBUGGABLE=`run_awk_manifest_script extract-debuggable.awk`
551 log "Found debuggable flag: $DEBUGGABLE"
552 if [ $? != 0 -o "$DEBUGGABLE" != "true" ] ; then
554 # ok to not have android:debuggable set to true in the original manifest.
559 echo "ERROR: Package $PACKAGE_NAME is not debuggable ! You can fix that in two ways:
    [all...]
  /bootable/recovery/etc/
init.rc 49 on property:ro.debuggable=1
  /development/samples/HelloEffects/
AndroidManifest.xml 22 android:debuggable="true"
  /external/webrtc/src/modules/audio_processing/test/android/apmtest/
AndroidManifest.xml 12 <application android:label="@string/app_name" android:hasCode="false" android:debuggable="true">
  /frameworks/ml/bordeaux/service/
AndroidManifest.xml 9 android:debuggable="true"
  /frameworks/testing/app-tests/AppLaunchTest/
AndroidManifest.xml 24 android:label="@string/app_name" android:debuggable="true">
  /packages/apps/Phone/src/com/android/phone/
CallerInfoCacheUpdateReceiver.java 34 (PhoneGlobals.DBG_LEVEL >= 1) && (SystemProperties.getInt("ro.debuggable", 0) == 1);
  /packages/experimental/StrictModeTest/
AndroidManifest.xml 15 android:debuggable="true">
  /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/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);
  /build/tools/
post_process_props.py 27 # If ro.debuggable is 1, then enable adb on USB by default
29 if prop.get("ro.debuggable") == "1":
  /frameworks/opt/telephony/
README.txt 29 DEBUGGABLE builds (userdebug, eng)
47 On debuggable builds (userdebug, eng) you can change additional

Completed in 1824 milliseconds

1 2 3 4 5 6 7