HomeSort by relevance Sort by last modified time
    Searched refs:debuggable (Results 1 - 25 of 29) 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 181 # Determine whether the application should be debuggable.
184 # - Otherwise, extract the android:debuggable attribute from the manifest.
190 $(call ndk_log,Application '$(_app)' forced debuggable through NDK_DEBUG)
192 $(call ndk_log,Application '$(_app)' forced *not* debuggable through NDK_DEBUG)
199 APP_DEBUGGABLE := $(shell $(HOST_AWK) -f $(BUILD_AWK)/extract-debuggable.awk $(call host-path,$(APP_MANIFEST)))
203 $(call ndk_log,Application '$(_app)' *is* debuggable)
205 $(call ndk_log,Application '$(_app)' is not debuggable)
214 # Otherwise, set to 'debug' if android:debuggable is set to TRUE,
226 $(call ndk_log,Selecting debug optimization mode (app is debuggable))
229 $(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/
keychords.c 98 const char* debuggable; local
property_service.c 596 const char *debuggable = property_get("ro.debuggable"); local
597 if (debuggable && (strcmp(debuggable, "1") == 0)) {
init.c 810 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 105 * Set whether the process is debuggable. By default the process is not
106 * considered debuggable. If the process is not debuggable then application-
107 * level tracing is not allowed unless the ro.debuggable system property is
110 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
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...]
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
392 simply extract the 'android:debuggable' attribute value from
399 if str(k).endswith('debuggable'):
537 DEBUGGABLE = extract_debuggable(PROJECT+os.sep+MANIFEST)
538 log('Found debuggable flag: %s' % ('true' if DEBUGGABLE==True else 'false'))
540 # ok to not have android:debuggable set to true in the original manifest.
544 if not DEBUGGABLE:
548 error('''Package %s is not debuggable ! You can fix that in two ways
    [all...]
  /build/core/
main.mk 331 # Target is more debuggable and adbd is on by default
332 ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1
336 # Target is less debuggable and adbd is off by default
337 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 840 int32_t debuggable = getResolvedIntegerAttribute(&res, tree, DEBUGGABLE_ATTR, &error, 0); local
842 fprintf(stderr, "ERROR getting 'android:debuggable' attribute: %s\n", error.string());
845 if (debuggable != 0) {
846 printf("application-debuggable\n");
    [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.cpp 153 (void) property_get("ro.debuggable", value, "0");
154 int debuggable = atoi(value); local
156 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 

Completed in 820 milliseconds

1 2