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

  /system/core/init/
keychords.c 96 const char* debuggable; local
101 // only handle keychords if ro.debuggable is set or adb is enabled.
104 debuggable = property_get("ro.debuggable");
112 if ((debuggable && !strcmp(debuggable, "1")) ||
init.c 657 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 debuggable attribute of the app's manifest file.
93 IAndroidLaunchAction launchAction, IFile pack, Boolean debuggable,
102 mDebuggable = debuggable;
153 * @return true if Android app is marked as debuggable in its manifest
DeviceChooserDialog.java 186 String debuggable = device.getProperty(IDevice.PROP_DEBUGGABLE); local
187 if (debuggable != null && debuggable.equals("1")) { //$NON-NLS-1$
AndroidLaunchController.java 279 * @param debuggable the debuggable value of the app, or null if not set.
286 String packageName, String debugPackageName, Boolean debuggable,
296 debugPackageName, launchAction, apk, debuggable, requiredApiVersionNumber, launch,
699 * <li>Debuggable attribute of the application and whether or not the device requires it. I
    [all...]
  /ndk/build/core/
add-application.mk 132 # Determine whether the application should be debuggable.
135 # - Otherwise, extract the android:debuggable attribute from the manifest.
141 $(call ndk_log,Application '$(_app)' forced debuggable through NDK_DEBUG)
143 $(call ndk_log,Application '$(_app)' forced *not* debuggable through NDK_DEBUG)
151 APP_DEBUGGABLE := $(shell $(HOST_AWK) -f $(BUILD_AWK)/extract-debuggable.awk $(APP_MANIFEST))
155 $(call ndk_log,Application '$(_app)' *is* debuggable)
157 $(call ndk_log,Application '$(_app)' is not debuggable)
166 # Otherwise, set to 'debug' if android:debuggable is set to TRUE,
178 $(call ndk_log,Selecting debug optimization mode (app is debuggable))
181 $(call ndk_log,Selecting release optimization mode (app is not debuggable))
    [all...]
setup-toolchain.mk 104 # 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 192 // project is an android project, we check the debuggable attribute.
194 Boolean debuggable = null; local
196 debuggable = manifestData.getDebuggable();
199 if (debuggable != null && debuggable == Boolean.TRUE) {
201 "The manifest 'debuggable' attribute is set to true.\nYou should set it to false for applications that you release to the public.");
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
DevicePanel.java 207 String debuggable = device.getProperty(IDevice.PROP_DEBUGGABLE); local
214 if (debuggable != null && debuggable.equals("1")) { //$NON-NLS-1$
221 if (debuggable != null && debuggable.equals("1")) { //$NON-NLS-1$
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
PostCompilerBuilder.java 462 // figure out whether the application is debuggable.
463 // It is considered debuggable if the attribute debuggable is set to true
465 boolean debuggable = false;
474 debuggable = Boolean.valueOf(result);
487 referencedJavaProjects, null /*abiFilter*/, debuggable) == false) {
PostCompilerHelper.java 165 * @param debuggable whether the project manifest has debuggable==true. If true, any gdbserver
171 IJavaProject[] referencedJavaProjects, String abiFilter, boolean debuggable) {
221 apkBuilder.setDebugMode(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
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...]
  /development/apps/Development/src/com/android/development/
PackageSummary.java 77 mDebuggable = findViewById(R.id.debuggable);
  /build/core/
main.mk 230 # Target is more debuggable and adbd is on by default
231 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1 persist.service.adb.enable=1
235 # Target is less debuggable and adbd is off by default
236 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=0 persist.service.adb.enable=0
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 543 milliseconds