HomeSort by relevance Sort by last modified time
    Searched refs:DEBUGGABLE (Results 1 - 3 of 3) sorted by null

  /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;
  /packages/apps/Settings/src/com/android/settings/wifi/
AdvancedSettings.java 62 //Tracks ro.debuggable (1 on userdebug builds)
63 private static int DEBUGGABLE;
79 DEBUGGABLE = SystemProperties.getInt("ro.debuggable", 0);
85 if (DEBUGGABLE == 1) {
109 if (DEBUGGABLE == 1) {
  /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
412 # Check that the application is debuggable, or nothing will work
413 DEBUGGABLE=`run_awk_manifest_script extract-debuggable.awk`
414 log "Found debuggable flag: $DEBUGGABLE"
415 if [ $? != 0 -o "$DEBUGGABLE" != "true" ] ; then
417 # ok to not have android:debuggable set to true in the original manifest.
422 echo "ERROR: Package $PACKAGE_NAME is not debuggable ! You can fix that in two ways:
    [all...]

Completed in 709 milliseconds