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

1 2

  /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")) ||
property_service.c 587 const char *debuggable = property_get("ro.debuggable"); local
588 if (debuggable && (strcmp(debuggable, "1") == 0)) {
init.c 841 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 218 String debuggable = device.getProperty(IDevice.PROP_DEBUGGABLE); local
219 if (debuggable != null && debuggable.equals("1")) { //$NON-NLS-1$
AndroidLaunchController.java 291 * @param debuggable the debuggable value of the app's manifest, or null if not set.
298 String packageName, String debugPackageName, Boolean debuggable,
308 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 154 # Determine whether the application should be debuggable.
157 # - Otherwise, extract the android:debuggable attribute from the manifest.
163 $(call ndk_log,Application '$(_app)' forced debuggable through NDK_DEBUG)
165 $(call ndk_log,Application '$(_app)' forced *not* debuggable through NDK_DEBUG)
173 APP_DEBUGGABLE := $(shell $(HOST_AWK) -f $(BUILD_AWK)/extract-debuggable.awk $(APP_MANIFEST))
177 $(call ndk_log,Application '$(_app)' *is* debuggable)
179 $(call ndk_log,Application '$(_app)' is not debuggable)
188 # Otherwise, set to 'debug' if android:debuggable is set to TRUE,
200 $(call ndk_log,Selecting debug optimization mode (app is debuggable))
203 $(call ndk_log,Selecting release optimization mode (app is not debuggable))
    [all...]
setup-toolchain.mk 134 # Ensure that for debuggable applications, gdbserver will be copied to
  /tools/build/builder/src/main/java/com/android/builder/
BuildType.java 69 public void setDebuggable(boolean debuggable) {
70 mDebuggable = debuggable;
171 .add("debuggable", mDebuggable)
  /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 215 String debuggable = device.getProperty(IDevice.PROP_DEBUGGABLE); local
222 if (debuggable != null && debuggable.equals("1")) { //$NON-NLS-1$
229 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
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/model/manifest/dom/
ApplicationNode.java 55 * The debuggable property
252 * Gets the debuggable property value
254 * @return the debuggable property value
262 * Sets the debuggable property value. Set it to null to remove it.
264 * @param debuggable the debuggable property value
266 public void setDebuggable(Boolean debuggable)
268 this.propDebuggable = debuggable;
  /development/apps/Development/src/com/android/development/
PackageSummary.java 75 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
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...]
  /build/core/
main.mk 327 # Target is more debuggable and adbd is on by default
328 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1
332 # Target is less debuggable and adbd is off by default
333 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 

Completed in 1037 milliseconds

1 2