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

1 2

  /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...]
  /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 192 # Determine whether the application should be debuggable.
195 # - Otherwise, extract the android:debuggable attribute from the manifest.
201 $(call ndk_log,Application '$(_app)' forced debuggable through NDK_DEBUG)
203 $(call ndk_log,Application '$(_app)' forced *not* debuggable through NDK_DEBUG)
210 APP_DEBUGGABLE := $(shell $(HOST_AWK) -f $(BUILD_AWK)/extract-debuggable.awk $(call host-path,$(APP_MANIFEST)))
214 $(call ndk_log,Application '$(_app)' *is* debuggable)
216 $(call ndk_log,Application '$(_app)' is not debuggable)
225 # Otherwise, set to 'debug' if android:debuggable is set to TRUE,
237 $(call ndk_log,Selecting debug optimization mode (app is debuggable))
240 $(call ndk_log,Selecting release optimization mode (app is not debuggable))
    [all...]
setup-toolchain.mk 137 # 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.");
  /system/core/init/
property_service.c 558 char debuggable[PROP_VALUE_MAX]; local
561 ret = property_get("ro.debuggable", debuggable);
562 if (ret && (strcmp(debuggable, "1") == 0)) {
init.c 967 char* debuggable; local
  /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
  /system/core/include/cutils/
trace.h 106 * Set whether the process is debuggable. By default the process is not
107 * considered debuggable. If the process is not debuggable then application-
108 * level tracing is not allowed unless the ro.debuggable system property is
111 void atrace_set_debuggable(bool 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
572 # Check that the application is debuggable, or nothing will work
573 DEBUGGABLE=`run_awk_manifest_script extract-debuggable.awk`
574 log "Found debuggable flag: $DEBUGGABLE"
575 if [ $? != 0 -o "$DEBUGGABLE" != "true" ] ; then
577 # ok to not have android:debuggable set to true in the original manifest.
582 echo "ERROR: Package $PACKAGE_NAME is not debuggable ! You can fix that in two ways:
    [all...]
ndk-gdb.py 21 on a given NDK application. The application must be debuggable, i.e.
22 its android:debuggable attribute must be set to 'true' in the
454 simply extract the 'android:debuggable' attribute value from
461 if str(k).endswith('debuggable'):
601 DEBUGGABLE = extract_debuggable(PROJECT+os.sep+MANIFEST)
602 log('Found debuggable flag: %s' % ('true' if DEBUGGABLE==True else 'false'))
604 # ok to not have android:debuggable set to true in the original manifest.
608 if not DEBUGGABLE:
612 error('''Package %s is not debuggable ! You can fix that in two ways
    [all...]
  /build/core/
main.mk 334 # Target is more debuggable and adbd is on by default
335 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1
339 # Target is less debuggable and adbd is off by default
340 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=0
    [all...]
  /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 947 int32_t debuggable = getResolvedIntegerAttribute(&res, tree, DEBUGGABLE_ATTR, &error, 0); local
    [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.cpp 158 (void) property_get("ro.debuggable", value, "0");
159 int debuggable = atoi(value); local
161 if (debuggable) {
    [all...]
  /prebuilts/devtools/tools/lib/
ddmuilib.jar 
  /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/18/
android.jar 

Completed in 755 milliseconds

1 2