/packages/modules/Virtualization/authfs/service/src/ |
D | main.rs | 46 debuggable: bool, field 65 authfs::AuthFs::mount_and_wait(mountpoint, config, self.debuggable).map_err(|e| { in mount() 75 fn new_binder(debuggable: bool) -> Strong<dyn IAuthFsService> { in new_binder() 76 let service = AuthFsService { serial_number: AtomicUsize::new(1), debuggable }; in new_binder() 132 let debuggable = env!("TARGET_BUILD_VARIANT") != "user"; in try_main() localVariable 133 let log_level = if debuggable { log::LevelFilter::Trace } else { log::LevelFilter::Info }; in try_main() 142 let service = AuthFsService::new_binder(debuggable).as_binder(); in try_main()
|
D | authfs.rs | 82 debuggable: bool, in mount_and_wait() 90 debuggable, in mount_and_wait() 135 debuggable: bool, in run_authfs() 158 if debuggable { in run_authfs()
|
/packages/modules/adb/libs/adbconnection/ |
D | adbconnection_client.cpp | 118 std::optional<bool> debuggable; in adbconnection_client_new() local 133 case AdbConnectionClientInfoType::debuggable: in adbconnection_client_new() 134 if (debuggable) { in adbconnection_client_new() 138 debuggable = info->data.debuggable; in adbconnection_client_new() 164 if (!debuggable) { in adbconnection_client_new() 228 app_info.process.debuggable = *debuggable; in adbconnection_client_new()
|
D | common.cpp | 42 process.set_debuggable(debuggable); in toProtobuf() 63 process_info.debuggable = process_entry_proto.debuggable(); in parseProtobufString()
|
D | tests.cc | 74 {.type = AdbConnectionClientInfoType::debuggable, .data.debuggable = true}, in TEST() 89 EXPECT_TRUE(info.debuggable); in TEST()
|
/packages/modules/adb/daemon/ |
D | jdwp_service.cpp | 198 if (!proc->process.debuggable) continue; in jdwp_process_list() 219 if (!proc->process.debuggable && !proc->process.profileable) continue; in app_process_list() 298 bool debuggable = proc->process.debuggable; in jdwp_process_event() 301 if (debuggable) jdwp_process_list_updated(); in jdwp_process_event() 302 if (debuggable || profileable) app_process_list_updated(); in jdwp_process_event() 310 if (!proc->process.debuggable) continue; in create_jdwp_connection_fd() 522 if (process.debuggable) jdwp_process_list_updated(); in init_jdwp() 523 if (process.debuggable || process.profileable) app_process_list_updated(); in init_jdwp()
|
/packages/modules/Virtualization/microdroid/ |
D | bootconfig.normal | 1 # ro.debuggable is off 2 androidboot.microdroid.debuggable=0
|
D | bootconfig.debuggable | 1 # ro.debuggable is set. 2 androidboot.microdroid.debuggable=1
|
/packages/modules/Virtualization/microdroid/init_debug_policy/src/ |
D | init_debug_policy.rs | 43 let (adbd_enabled, debuggable) = if system_properties::read_bool("ro.boot.adb.enabled", false)? in main() 52 system_properties::write("ro.debuggable", debuggable)?; in main()
|
/packages/modules/adb/libs/adbconnection/include/adbconnection/ |
D | client.h | 35 debuggable, enumerator 44 bool debuggable; member
|
D | common.h | 30 bool debuggable; member
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/customaudience/ |
D | DBCustomAudience.java | 127 boolean debuggable, in DBCustomAudience() argument 150 mDebuggable = debuggable; in DBCustomAudience() 174 boolean debuggable, in fromServiceObject() argument 212 .setDebuggable(debuggable) in fromServiceObject() 572 public Builder setDebuggable(boolean debuggable) { in setDebuggable() argument 573 mDebuggable = debuggable; in setDebuggable()
|
D | DBCustomAudienceBackgroundFetchData.java | 120 boolean debuggable) { in create() argument 129 .setIsDebuggable(debuggable) in create()
|
/packages/modules/Virtualization/docs/debug/ |
D | README.md | 7 in a debuggable mode and provides a bunch of debugging mechanisms you can use 10 Note: running a protected VM in a debuggable mode introduces many loopholes 20 Debug level is a per-VM property which indicates how debuggable the VM is. 22 is not debuggable at all, and FULL means that [all the debugging 59 code to make the VM debuggable and rebuild the entire software, because that
|
/packages/modules/Virtualization/compos/composd/src/ |
D | composd_main.rs | 36 let debuggable = env!("TARGET_BUILD_VARIANT") != "user"; in try_main() localVariable 37 let log_level = if debuggable { log::LevelFilter::Debug } else { log::LevelFilter::Info }; in try_main()
|
/packages/modules/Virtualization/pvmfw/src/ |
D | main.rs | 113 let debuggable = verified_boot_data.debug_level != DebugLevel::None; in main() localVariable 114 if debuggable { in main() 228 debuggable, in main()
|
/packages/modules/Virtualization/microdroid_manager/src/ |
D | dice.rs | 53 let debuggable = is_debuggable()?; in dice_derivation() localVariable 61 dice.derive(code_hash, &config_descriptor, authority_hash, debuggable, hidden) in dice_derivation()
|
/packages/modules/AdServices/sdksandbox/tests/hostsidetests/app/src/com/android/sdksandbox/debuggable/ |
D | SdkSandboxTestDebuggableActivity.java | 17 package com.android.sdksandbox.debuggable;
|
/packages/modules/Virtualization/compos/src/ |
D | compilation.rs | 46 let debuggable = in validate_args() localVariable 48 if !debuggable { in validate_args()
|
/packages/modules/Virtualization/tests/hostside/java/com/android/microdroid/test/ |
D | MicrodroidHostTests.java | 680 boolean protectedVm, boolean debuggable, String... additionalArgs) throws Exception { 698 debuggable ? "full" : "none", 720 private boolean isTombstoneGeneratedWithCrashPayload(boolean protectedVm, boolean debuggable) 723 protectedVm, debuggable, "--payload-binary-name", "MicrodroidCrashNativeLib.so"); 742 private boolean isTombstoneGeneratedWithCrashConfig(boolean protectedVm, boolean debuggable) 745 protectedVm, debuggable, "--config-path", "assets/vm_config_crash.json");
|
/packages/modules/adb/proto/ |
D | app_processes.proto | 26 bool debuggable = 2; field
|
/packages/modules/NeuralNetworks/ |
D | Android.bp | 65 debuggable: { // eng and userdebug builds
|
/packages/modules/Virtualization/demo_native/ |
D | main.cpp | 185 const std::string& main_apk_path, const std::string& payload_binary_name, bool debuggable, in create_vm_config() argument 207 if (debuggable) { in create_vm_config()
|
/packages/apps/Nfc/nci/jni/ |
D | Android.bp | 64 debuggable: {
|
/packages/services/Car/cpp/telemetry/cartelemetryd/ |
D | Android.bp | 39 debuggable: {
|