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

/frameworks/base/core/java/com/android/internal/os/
H A DInstallerConnection.java102 boolean debuggable, String outputPath) {
116 builder.append(debuggable ? " 1" : " 0");
100 dexopt(String apkPath, int uid, boolean isPublic, String pkgName, String instructionSet, int dexoptNeeded, boolean vmSafeMode, boolean debuggable, String outputPath) argument
/frameworks/base/services/core/java/com/android/server/pm/
H A DInstaller.java90 boolean debuggable, @Nullable String outputPath) {
97 debuggable, outputPath);
88 dexopt(String apkPath, int uid, boolean isPublic, String pkgName, String instructionSet, int dexoptNeeded, boolean vmSafeMode, boolean debuggable, @Nullable String outputPath) argument
/frameworks/native/cmds/installd/
H A Dcommands.cpp749 bool vm_safe_mode, bool debuggable)
881 // Check whether all apps should be compiled debuggable.
882 if (!debuggable) {
883 debuggable =
902 + (debuggable ? 1 : 0)
943 if (debuggable) {
944 argv[i++] = "--debuggable";
1070 bool vm_safe_mode, bool debuggable, const char* oat_dir)
1225 instruction_set, vm_safe_mode, debuggable);
747 run_dex2oat(int zip_fd, int oat_fd, const char* input_file_name, const char* output_file_name, int swap_fd, const char *pkgname, const char *instruction_set, bool vm_safe_mode, bool debuggable) argument
1068 dexopt(const char *apk_path, uid_t uid, bool is_public, const char *pkgname, const char *instruction_set, int dexopt_needed, bool vm_safe_mode, bool debuggable, const char* oat_dir) argument
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp195 (void) property_get("ro.debuggable", value, "0");
196 int debuggable = atoi(value); local
198 if (debuggable) {
/frameworks/base/tools/aapt/
H A DCommand.cpp1156 int32_t debuggable = AaptXml::getResolvedIntegerAttribute(res, tree, local
1159 fprintf(stderr, "ERROR getting 'android:debuggable' attribute: %s\n",
1163 if (debuggable != 0) {
1164 printf("application-debuggable\n");

Completed in 227 milliseconds