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

  /system/core/init/
keychords.c 98 const char* debuggable; local
103 // only handle keychords if ro.debuggable is set or adb is enabled.
106 debuggable = property_get("ro.debuggable");
114 if ((debuggable && !strcmp(debuggable, "1")) ||
init.c 856 char* debuggable; local
  /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 193 String debuggable = device.getProperty(IDevice.PROP_DEBUGGABLE); local
194 if (debuggable != null && debuggable.equals("1")) { //$NON-NLS-1$
AndroidLaunchController.java 289 * @param debuggable the debuggable value of the app's manifest, or null if not set.
296 String packageName, String debugPackageName, Boolean debuggable,
306 debugPackageName, launchAction, apk, debuggable, requiredApiVersionNumber, launch,
    [all...]
  /gdk/build/core/
add-application.mk 95 # Determine whether the application should be debuggable.
98 # - Otherwise, extract the android:debuggable attribute from the manifest.
104 $(call gdk_log,Application '$(_app)' forced debuggable through GDK_DEBUG)
106 $(call gdk_log,Application '$(_app)' forced *not* debuggable through GDK_DEBUG)
114 APP_DEBUGGABLE := $(shell $(HOST_AWK) -f $(BUILD_AWK)/extract-debuggable.awk $(APP_MANIFEST))
118 $(call gdk_log,Application '$(_app)' *is* debuggable)
120 $(call gdk_log,Application '$(_app)' is not debuggable)
129 # Otherwise, set to 'debug' if android:debuggable is set to TRUE,
141 $(call gdk_log,Selecting debug optimization mode (app is debuggable))
144 $(call gdk_log,Selecting release optimization mode (app is not debuggable))
    [all...]
  /ndk/build/core/
add-application.mk 149 # Determine whether the application should be debuggable.
152 # - Otherwise, extract the android:debuggable attribute from the manifest.
158 $(call ndk_log,Application '$(_app)' forced debuggable through NDK_DEBUG)
160 $(call ndk_log,Application '$(_app)' forced *not* debuggable through NDK_DEBUG)
168 APP_DEBUGGABLE := $(shell $(HOST_AWK) -f $(BUILD_AWK)/extract-debuggable.awk $(APP_MANIFEST))
172 $(call ndk_log,Application '$(_app)' *is* debuggable)
174 $(call ndk_log,Application '$(_app)' is not debuggable)
183 # Otherwise, set to 'debug' if android:debuggable is set to TRUE,
195 $(call ndk_log,Selecting debug optimization mode (app is debuggable))
198 $(call ndk_log,Selecting release optimization mode (app is not debuggable))
    [all...]
setup-toolchain.mk 103 # Ensure that for debuggable applications, gdbserver will be copied to
  /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.");
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
DevicePanel.java 217 String debuggable = device.getProperty(IDevice.PROP_DEBUGGABLE); local
224 if (debuggable != null && debuggable.equals("1")) { //$NON-NLS-1$
231 if (debuggable != null && debuggable.equals("1")) { //$NON-NLS-1$
  /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
  /development/apps/Development/src/com/android/development/
PackageSummary.java 77 mDebuggable = findViewById(R.id.debuggable);
  /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
522 # Check that the application is debuggable, or nothing will work
523 DEBUGGABLE=`run_awk_manifest_script extract-debuggable.awk`
524 log "Found debuggable flag: $DEBUGGABLE"
525 if [ $? != 0 -o "$DEBUGGABLE" != "true" ] ; then
527 # ok to not have android:debuggable set to true in the original manifest.
532 echo "ERROR: Package $PACKAGE_NAME is not debuggable ! You can fix that in two ways:
    [all...]
  /build/core/
main.mk 284 # Target is more debuggable and adbd is on by default
285 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1
289 # Target is less debuggable and adbd is off by default
290 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=0
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
debug.rb 288 A module that wraps token stream methods with debugging event code. A debuggable
  /frameworks/base/tools/aapt/
Command.cpp 835 int32_t debuggable = getResolvedIntegerAttribute(&res, tree, DEBUGGABLE_ATTR, &error, 0); local
837 fprintf(stderr, "ERROR getting 'android:debuggable' attribute: %s\n", error.string());
840 if (debuggable != 0) {
841 printf("application-debuggable\n");
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 829 milliseconds