/system/bt/service/ |
D | daemon.cc | 71 if (!hal::BluetoothInterface::Initialize()) goto failed; in StartUpBluetoothInterfaces() 73 if (!hal::BluetoothGattInterface::Initialize()) goto failed; in StartUpBluetoothInterfaces() 75 if (!hal::BluetoothAvInterface::Initialize()) goto failed; in StartUpBluetoothInterfaces() 77 if (!hal::BluetoothAvrcpInterface::Initialize()) goto failed; in StartUpBluetoothInterfaces() 81 failed: in StartUpBluetoothInterfaces()
|
/system/tools/hidl/test/ |
D | run_tradefed_incompatible_tests.sh | 29 for failed in ${FAILED_TESTS[@]}; do 30 echo "FAILED TEST: $failed"
|
/system/apex/apexd/ |
D | apexd.rc | 8 reboot_on_failure reboot,apexd-failed 15 reboot_on_failure reboot,bootloader,bootstrap-apexd-failed
|
D | apexd.cpp | 3100 std::vector<std::string> failed; in RemountPackages() local 3106 failed.emplace_back(apex); in RemountPackages() 3114 if (!failed.empty()) { in RemountPackages() 3115 return Error() << kErrorMessage << "Failed (" << failed.size() << ") " in RemountPackages() 3116 << "APEX packages: [" << Join(failed, ',') << "]"; in RemountPackages()
|
/system/core/cli-test/ |
D | cli-test.cpp | 219 bool failed = false; in RunTests() local 235 if (!RunCommands("before", test.befores)) failed = true; in RunTests() 237 if (!failed) { in RunTests() 247 failed = true; in RunTests() 252 if (!CheckOutput("stdout", test_stdout.str(), test.expected_stdout, FILES)) failed = true; in RunTests() 253 if (!CheckOutput("stderr", test_stderr.str(), test.expected_stderr, FILES)) failed = true; in RunTests() 255 if (!RunCommands("after", test.afters)) failed = true; in RunTests() 260 if (failed) { in RunTests()
|
/system/bt/gd/rust/linux/mgmt/src/bin/btmanagerd/ |
D | main.rs | 52 Err(_) => ctx.reply(Err(dbus_crossroads::MethodErr::failed( in main() 68 ctx.reply(Err(dbus_crossroads::MethodErr::failed("cannot stop Bluetooth"))) in main() 98 Err(_) => ctx.reply(Err(dbus_crossroads::MethodErr::failed(&format!( in main() 117 Err(_) => ctx.reply(Err(dbus_crossroads::MethodErr::failed(&format!( in main()
|
/system/nfc/src/nfc/tags/ |
D | rw_t2t_ndef.cc | 403 bool failed = false; in rw_t2t_handle_tlv_detect_rsp() local 423 for (offset = 0; offset < T2T_READ_DATA_LEN && !failed && !found;) { in rw_t2t_handle_tlv_detect_rsp() 463 failed = true; in rw_t2t_handle_tlv_detect_rsp() 494 failed = true; in rw_t2t_handle_tlv_detect_rsp() 498 failed = true; in rw_t2t_handle_tlv_detect_rsp() 550 failed = true; in rw_t2t_handle_tlv_detect_rsp() 607 failed = true; in rw_t2t_handle_tlv_detect_rsp() 674 failed = true; in rw_t2t_handle_tlv_detect_rsp() 730 if (!found && !failed) { in rw_t2t_handle_tlv_detect_rsp() 737 failed = true; in rw_t2t_handle_tlv_detect_rsp() [all …]
|
D | rw_mfc.cc | 1009 bool failed = false; in rw_mfc_handle_read_op() local 1037 failed = true; in rw_mfc_handle_read_op() 1042 if (!failed && saved_length >= p_mfc->ndef_length) { in rw_mfc_handle_read_op() 1062 failed = true; in rw_mfc_handle_read_op() 1068 if (failed || done) { in rw_mfc_handle_read_op() 1069 evt_data.status = failed ? NFC_STATUS_FAILED : NFC_STATUS_OK; in rw_mfc_handle_read_op()
|
D | rw_t1t_ndef.cc | 851 bool failed = false; in rw_t1t_handle_tlv_detect_rsp() local 863 for (offset = start_offset; offset < end_offset && !failed && !found;) { in rw_t1t_handle_tlv_detect_rsp() 893 failed = true; in rw_t1t_handle_tlv_detect_rsp() 922 failed = true; in rw_t1t_handle_tlv_detect_rsp() 926 failed = true; in rw_t1t_handle_tlv_detect_rsp() 976 failed = true; in rw_t1t_handle_tlv_detect_rsp() 1080 failed = true; in rw_t1t_handle_tlv_detect_rsp() 1122 if (!found && !failed) { in rw_t1t_handle_tlv_detect_rsp() 1132 failed = true; in rw_t1t_handle_tlv_detect_rsp() 1136 status = failed ? NFC_STATUS_FAILED : NFC_STATUS_OK; in rw_t1t_handle_tlv_detect_rsp()
|
/system/security/keystore2/src/ |
D | shared_secret_negotiation.rs | 173 |(mut connected, mut failed), e| { in connect_participants() 187 failed.push(SharedSecretParticipant::Aidl(instance_name)); in connect_participants() 222 failed in connect_participants() 232 (connected, failed) in connect_participants()
|
/system/core/fastboot/fuzzy_fastboot/ |
D | test_listeners.h | 40 printf("%s in %s:%d\n%s\n", test_part_result.failed() ? "*** Failure" : "Success", in OnTestPartResult()
|
D | README.md | 184 … If the program has a non-zero return code, the validation is marked as failed and anything from … 317 In most cases this message at the bottom is all that is needed to figure out why it failed. 339 can be used to select certain tests to run, once you figure out which ones failed. 389 … to a file. This file should include the test information, the reason it failed, and the fastboot …
|
/system/hardware/interfaces/suspend/1.0/default/ |
D | SuspendProperties.sysprop | 36 # Number of consecutive bad (short, failed) suspends above which time between attempts is scaled 63 # If true, the wait time between repeated suspend attempts will be scaled on failed suspends
|
/system/extras/simpleperf/ |
D | cmd_report_sample.proto | 80 ERROR_MEMORY_INVALID = 3; // Memory read failed 91 // --keep-failed-unwinding-result or --keep-failed-unwinding-debug-info.
|
/system/libhidl/transport/allocator/1.0/ |
D | IAllocator.hal | 38 * @return success Whether allocation succeeded (returns false if any allocation failed).
|
/system/bt/gd/packet/parser/ |
D | gen_rust.cc | 36 #[error("Packet parsing failed")] in generate_rust_packet_preamble()
|
/system/core/libusbhost/ |
D | usbhost.c | 378 goto failed; in usb_device_new() 382 goto failed; in usb_device_new() 391 failed: in usb_device_new()
|
/system/update_engine/cros/ |
D | omaha_request_action.cc | 136 bool failed = false; member 209 if (data->failed) in ParserHandlerStart() 299 if (data->failed) in ParserHandlerEnd() 308 data->failed = true; in ParserHandlerEnd() 332 data->failed = true; in ParserHandlerEntityDecl() 1008 if (res != XML_STATUS_OK || parser_data.failed) { in TransferComplete()
|
/system/bpf/bpfloader/ |
D | bpfloader.rc | 57 reboot_on_failure reboot,bpfloader-failed
|
/system/chre/platform/shared/idl/ |
D | host_messages.fbs | 136 /// considered to have failed. If the request times out (e.g. the requestor 172 /// Denotes whether a load request succeeded or failed. 235 /// rejected or failed to complete for some reason
|
/system/core/fastboot/ |
D | README.md | 39 b. FAIL -> the requested command failed. The remaining 60 bytes 63 reason and consider the command failed. Stop. 320 previous session failed, e.g. due to network error or user Ctrl+C.
|
D | fastboot.cpp | 1722 goto failed; in fb_perform_format() 1734 goto failed; in fb_perform_format() 1780 failed: in fb_perform_format()
|
/system/core/fs_mgr/libsnapshot/android/snapshot/ |
D | snapshot.proto | 134 // Merging failed due to an unrecoverable error.
|
/system/bt/bta/jv/ |
D | bta_jv_act.cc | 1399 int failed = true; in bta_jv_port_mgmt_sr_cback() local 1415 failed = false; in bta_jv_port_mgmt_sr_cback() 1419 if (failed) { in bta_jv_port_mgmt_sr_cback()
|
/system/update_engine/ |
D | README.md | 62 the update, or reports that the update failed with specific error codes, etc. 97 postinstall fails, the entire update is considered failed. 132 * It retries failed network communication. 139 update process after failed attempts or crashes.
|