/cts/tests/tests/permission/src/android/permission/cts/ |
DebuggableTest.java | 28 * Verify that pre-installed packages don't have the debuggable 29 * flag set. The debuggable flag allows should only be used during 45 assertTrue("Packages marked debuggable: " + debuggableApps, debuggableApps.isEmpty());
|
/cts/tests/tests/os/src/android/os/cts/ |
SecurityFeaturesTest.java | 57 * Verifies that prctl(PR_GET_DUMPABLE) == ro.debuggable 68 * 1) ro.debuggable=1 (global debuggable enabled, i.e., userdebug or 71 * 2) android:debuggable="true" in the manifest for an individual 76 * For this test, neither #2 nor #3 are true, so we expect ro.debuggable
|
/development/ndk/platforms/android-8/samples/bitmap-plasma/ |
AndroidManifest.xml | 6 <application android:label="@string/app_name" android:debuggable="true">
|
/development/ndk/samples/hello-jni/ |
AndroidManifest.xml | 8 android:debuggable="true">
|
/ndk/tests/awk/extract-launchable/ |
no-launchable.in | 8 android:debuggable="true">
|
one-launchable.in | 8 android:debuggable="true">
|
multiple-categories.in | 8 android:debuggable="true">
|
/ndk/tests/build/awk-trailing-r/ |
AndroidManifest.xml | 6 <application android:label="@string/app_name" android:debuggable="true">
|
/ndk/build/awk/ |
extract-debuggable.awk | 15 # A nawk/gawk script used to extract the debuggable flag from an 22 DEBUGGABLE = ""; 24 # simply extract the 'android:debuggable' attribute value from 28 DEBUGGABLE = XML_ATTR["android:debuggable"]; 33 if ( DEBUGGABLE != "true" ) 34 DEBUGGABLE = "false"; 36 print DEBUGGABLE;
|
/libnativehelper/ |
JniInvocation.cpp | 53 static const char* kDebuggableSystemProperty = "ro.debuggable"; 54 static const char* kDebuggableFallback = "0"; // Not debuggable. 62 char debuggable[PROPERTY_VALUE_MAX]; local 63 property_get(kDebuggableSystemProperty, debuggable, kDebuggableFallback); 65 if (strcmp(debuggable, "1") != 0) { 66 // Not a debuggable build. 73 // Debuggable build.
|
/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.
|
/development/ndk/platforms/android-9/samples/native-plasma/ |
AndroidManifest.xml | 8 android:hasCode="false" android:debuggable="true">
|
/external/chromium_org/third_party/skia/platform_tools/android/examples/hello_skia_app/ |
AndroidManifest.xml | 7 <application android:label="@string/app_name" android:icon="@drawable/ic_launcher" android:debuggable="true">
|
/external/chromium_org/third_party/webrtc/examples/android/opensl_loopback/ |
AndroidManifest.xml | 6 android:debuggable="true">
|
/external/chromium_org/third_party/webrtc/modules/audio_device/test/android/audio_device_android_test/ |
AndroidManifest.xml | 7 android:debuggable="true">
|
/external/robolectric/src/test/resources/ |
TestAndroidManifestWithFlags.xml | 8 android:debuggable="true"
|
/external/skia/platform_tools/android/examples/hello_skia_app/ |
AndroidManifest.xml | 7 <application android:label="@string/app_name" android:icon="@drawable/ic_launcher" android:debuggable="true">
|
/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; 92 // Check whether the system is debuggable. 93 property_get("ro.debuggable", value, "0");
|
/ndk/build/core/ |
add-application.mk | 217 # Determine whether the application should be debuggable. 220 # - Otherwise, extract the android:debuggable attribute from the manifest. 226 $(call ndk_log,Application '$(_app)' forced debuggable through NDK_DEBUG) 228 $(call ndk_log,Application '$(_app)' forced *not* debuggable through NDK_DEBUG) 235 APP_DEBUGGABLE := $(shell $(HOST_AWK) -f $(BUILD_AWK)/extract-debuggable.awk $(call host-path,$(APP_MANIFEST))) 239 $(call ndk_log,Application '$(_app)' *is* debuggable) 241 $(call ndk_log,Application '$(_app)' is not debuggable) 250 # Otherwise, set to 'debug' if android:debuggable is set to TRUE, 262 $(call ndk_log,Selecting debug optimization mode (app is debuggable)) 265 $(call ndk_log,Selecting release optimization mode (app is not debuggable)) [all...] |
/cts/tests/tests/nativeopengl/standalone/ |
AndroidManifest.xml | 24 android:debuggable="true" >
|
/development/samples/HelloEffects/ |
AndroidManifest.xml | 22 android:debuggable="true"
|
/external/chromium_org/third_party/webrtc/examples/android/media_demo/ |
AndroidManifest.xml | 6 android:debuggable="true">
|
/external/chromium_org/third_party/webrtc/modules/audio_processing/test/android/apmtest/ |
AndroidManifest.xml | 12 <application android:label="@string/app_name" android:hasCode="false" android:debuggable="true">
|
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/android/ |
AndroidManifest.xml | 6 android:debuggable="true"
|
/external/webrtc/src/modules/audio_processing/test/android/apmtest/ |
AndroidManifest.xml | 12 <application android:label="@string/app_name" android:hasCode="false" android:debuggable="true">
|