Searched defs:debuggable (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/com/android/internal/content/
H A DNativeLibraryHelper.java79 final boolean debuggable; field in class:NativeLibraryHelper.Handle
99 lite.debuggable);
103 boolean extractNativeLibs, boolean debuggable) throws IOException {
118 return new Handle(apkHandles, multiArch, extractNativeLibs, debuggable);
122 boolean debuggable) {
126 this.debuggable = debuggable;
158 boolean debuggable);
162 boolean debuggable);
167 sum += nativeSumNativeBinaries(apkHandle, abi, handle.debuggable);
102 create(List<String> codePaths, boolean multiArch, boolean extractNativeLibs, boolean debuggable) argument
121 Handle(long[] apkHandles, boolean multiArch, boolean extractNativeLibs, boolean debuggable) argument
157 nativeSumNativeBinaries(long handle, String cpuAbi, boolean debuggable) argument
160 nativeCopyNativeBinaries(long handle, String sharedLibraryPath, String abiToCopy, boolean extractNativeLibs, boolean hasNativeBridge, boolean debuggable) argument
223 nativeFindSupportedAbi(long handle, String[] supportedAbis, boolean debuggable) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/
H A DPluginManagerImpl.java81 PluginManagerImpl(Context context, PluginInstanceManagerFactory factory, boolean debuggable, argument
86 isDebuggable = debuggable;
H A DPluginInstanceManager.java76 PluginManagerImpl manager, boolean debuggable) {
86 isDebuggable = debuggable;
291 Log.d(TAG, "Somehow hit second debuggable check");
74 PluginInstanceManager(Context context, PackageManager pm, String action, PluginListener<T> listener, boolean allowMultiple, Looper looper, VersionInfo version, PluginManagerImpl manager, boolean debuggable) argument
/frameworks/base/core/jni/
H A Dcom_android_internal_content_NativeLibraryHelper.cpp313 NativeLibrariesIterator(ZipFileRO* zipFile, bool debuggable, void* cookie) argument
314 : mZipFile(zipFile), mDebuggable(debuggable), mCookie(cookie), mLastSlash(NULL) {
319 static NativeLibrariesIterator* create(ZipFileRO* zipFile, bool debuggable) { argument
326 return new NativeLibrariesIterator(zipFile, debuggable, cookie);
394 jboolean debuggable, iterFunc callFunc, void* callArg) {
401 NativeLibrariesIterator::create(zipFile, debuggable));
436 jboolean debuggable) {
451 NativeLibrariesIterator::create(zipFile, debuggable));
493 jboolean extractNativeLibs, jboolean hasNativeBridge, jboolean debuggable)
496 return (jint) iterateOverNativeFiles(env, apkHandle, javaCpuAbi, debuggable,
393 iterateOverNativeFiles(JNIEnv *env, jlong apkHandle, jstring javaCpuAbi, jboolean debuggable, iterFunc callFunc, void* callArg) argument
435 findSupportedAbi(JNIEnv *env, jlong apkHandle, jobjectArray supportedAbisArray, jboolean debuggable) argument
491 com_android_internal_content_NativeLibraryHelper_copyNativeBinaries(JNIEnv *env, jclass clazz, jlong apkHandle, jstring javaNativeLibPath, jstring javaCpuAbi, jboolean extractNativeLibs, jboolean hasNativeBridge, jboolean debuggable) argument
501 com_android_internal_content_NativeLibraryHelper_sumNativeBinaries(JNIEnv *env, jclass clazz, jlong apkHandle, jstring javaCpuAbi, jboolean debuggable) argument
512 com_android_internal_content_NativeLibraryHelper_findSupportedAbi(JNIEnv *env, jclass clazz, jlong apkHandle, jobjectArray javaCpuAbisToSearch, jboolean debuggable) argument
[all...]
/frameworks/base/tools/aapt/
H A DCommand.cpp1385 int32_t debuggable = AaptXml::getResolvedIntegerAttribute(res, tree, local
1389 "ERROR getting 'android:debuggable' attribute: %s",
1393 if (debuggable != 0) {
1394 printf("application-debuggable\n");
/frameworks/native/cmds/installd/
H A Ddexopt.cpp194 bool debuggable, bool post_bootcomplete, int profile_fd, const char* shared_libraries) {
350 // Check whether all apps should be compiled debuggable.
351 if (!debuggable) {
353 debuggable =
386 + (debuggable ? 1 : 0)
431 if (debuggable) {
432 argv[i++] = "--debuggable";
1500 bool debuggable = (dexopt_flags & DEXOPT_DEBUGGABLE) != 0; local
1597 debuggable,
191 run_dex2oat(int zip_fd, int oat_fd, int input_vdex_fd, int output_vdex_fd, int image_fd, const char* input_file_name, const char* output_file_name, int swap_fd, const char* instruction_set, const char* compiler_filter, bool debuggable, bool post_bootcomplete, int profile_fd, const char* shared_libraries) argument
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp188 (void) property_get("ro.debuggable", value, "0");
189 int debuggable = atoi(value); local
191 if (debuggable) {
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java411 public final boolean debuggable; field in class:PackageParser.PackageLite
434 this.debuggable = baseApk.debuggable;
468 public final boolean debuggable; field in class:PackageParser.ApkLite
477 Certificate[][] certificates, boolean coreApp, boolean debuggable,
493 this.debuggable = debuggable;
1783 boolean debuggable = false;
1835 if ("debuggable".equals(attr)) {
1836 debuggable
474 ApkLite(String codePath, String packageName, String splitName, boolean isFeatureSplit, String configForSplit, String usesSplitName, int versionCode, int revisionCode, int installLocation, List<VerifierInfo> verifiers, Signature[] signatures, Certificate[][] certificates, boolean coreApp, boolean debuggable, boolean multiArch, boolean use32bitAbi, boolean extractNativeLibs, boolean isolatedSplits) argument
[all...]

Completed in 1147 milliseconds