HomeSort by relevance Sort by last modified time
    Searched full:debuggable (Results 26 - 50 of 233) sorted by null

12 3 4 5 6 7 8 910

  /frameworks/ml/bordeaux/service/
AndroidManifest.xml 9 android:debuggable="true"
  /frameworks/opt/bitmap/sample/
AndroidManifest.xml 30 android:theme="@style/AppTheme" android:debuggable="true">
  /frameworks/testing/app-tests/AppLaunchTest/
AndroidManifest.xml 24 android:label="@string/app_name" android:debuggable="true">
  /ndk/tests/awk/extract-launchable/
multiple-launchables.in 8 android:debuggable="true">
  /packages/experimental/StrictModeTest/
AndroidManifest.xml 15 android:debuggable="true">
  /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.");
  /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
589 # Check that the application is debuggable, or nothing will work
590 DEBUGGABLE=`run_awk_manifest_script extract-debuggable.awk`
591 log "Found debuggable flag: $DEBUGGABLE"
592 if [ $? != 0 -o "$DEBUGGABLE" != "true" ] ; then
594 # ok to not have android:debuggable set to true in the original manifest.
599 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
481 simply extract the 'android:debuggable' attribute value from
488 if str(k).endswith('debuggable'):
628 DEBUGGABLE = extract_debuggable(PROJECT+os.sep+MANIFEST)
629 log('Found debuggable flag: %s' % ('true' if DEBUGGABLE==True else 'false'))
631 # ok to not have android:debuggable set to true in the original manifest.
635 if not DEBUGGABLE:
639 error('''Package %s is not debuggable ! You can fix that in two ways
    [all...]
  /frameworks/opt/telephony/
README.txt 29 DEBUGGABLE builds (userdebug, eng)
47 On debuggable builds (userdebug, eng) you can change additional
  /libnativehelper/tests/
JniInvocation_test.cpp 88 static const char* kDebuggableSystemProperty = "ro.debuggable";
98 TEST_F(JNIInvocationTest, Debuggable) {
  /cts/tests/tests/os/src/android/os/cts/
BuildTest.java 223 static final String RO_DEBUGGABLE = "ro.debuggable";
227 * Assert that the device is a secure, not debuggable user build.
229 * Debuggable devices allow adb root and have the su command, allowing
237 assertProperty("Must be a non-debuggable build", RO_DEBUGGABLE, "0");
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/
AndroidManifest.xml 20 android:debuggable="true"
  /external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/
AndroidManifest.xml 15 android:debuggable="true">
  /frameworks/base/docs/html/tools/help/
monitor.jd 42 in order for the device to be fully debuggable.</p>
  /frameworks/base/media/mca/samples/CameraEffectsRecordingSample/
AndroidManifest.xml 28 android:debuggable="true">
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/
AndroidManifest.xml 24 android:debuggable="true">
  /ndk/docs/text/
NDK-BUILD.text 30 ndk-build NDK_DEBUG=1 --> generate debuggable native code.
42 ndk-build NDK_DEBUG=1 --> force a debuggable build (see below)
56 III. Debuggable versus Release builds:
68 <application> element has android:debuggable="true".
NDK-GDB.text 30 2. Your application is debuggable:
33 element that sets the android:debuggable attribute to "true"
69 - checks that your application is declared debuggable in its manifest.
72 package name is also debuggable.
  /packages/apps/Camera2/tests/
AndroidManifest.xml 21 android:debuggable="true">
  /packages/services/Telecomm/tests/
AndroidManifest.xml 20 android:debuggable="true">
29 android:debuggable="true">
134 android:debuggable="true"/>
  /system/core/run-as/
run-as.c 68 * - that '<package-name>' is the name of an installed and debuggable package
137 /* reject any non-debuggable package */
139 panic("Package '%s' is not debuggable\n", pkgname);
  /system/core/include/cutils/
trace.h 110 * Set whether the process is debuggable. By default the process is not
111 * considered debuggable. If the process is not debuggable then application-
112 * level tracing is not allowed unless the ro.debuggable system property is
115 void atrace_set_debuggable(bool debuggable);
  /bootable/recovery/etc/
init.rc 95 on property:ro.debuggable=1
  /frameworks/base/docs/html/training/basics/firstapp/
index.jd 28 project and run a debuggable version of the app. You'll also learn some fundamentals of Android app
  /packages/apps/UnifiedEmail/tests/
AndroidManifest.xml 26 <application android:debuggable="true">

Completed in 625 milliseconds

12 3 4 5 6 7 8 910