/packages/modules/Bluetooth/system/stack/include/ |
D | hci_error_code.h | 79 inline std::string hci_error_code_text(const tHCI_ERROR_CODE& error_code) { in hci_error_code_text() argument 80 switch (error_code) { in hci_error_code_text() 123 return std::format("UNKNOWN[0x{:02x}]", static_cast<uint8_t>(error_code)); in hci_error_code_text() 127 inline bt_status_t hci_error_to_bt_status(const tHCI_ERROR_CODE& error_code) { in hci_error_to_bt_status() argument 128 switch (error_code) { in hci_error_to_bt_status() 228 inline tHCI_ERROR_CODE to_hci_error_code(const uint8_t& error_code) { in to_hci_error_code() argument 229 if (error_code > _HCI_ERR_MAX_ERR) { in to_hci_error_code() 232 return static_cast<tHCI_ERROR_CODE>(error_code); in to_hci_error_code()
|
/packages/modules/Bluetooth/android/pandora/test/a2dp/packets/ |
D | avdtp.pdl | 180 error_code : ErrorCode, 193 error_code: ErrorCode, 206 error_code: ErrorCode, 222 error_code: ErrorCode, 235 error_code: ErrorCode, 249 error_code: ErrorCode, 261 error_code: ErrorCode, 276 error_code: ErrorCode, 288 error_code: ErrorCode, 303 error_code: ErrorCode, [all …]
|
D | avdtp.py | 970 error_code: ErrorCode = field(kw_only=True, default=ErrorCode.SUCCESS) variable in DiscoverReject 989 _span.append((self.error_code << 0)) 1064 error_code: ErrorCode = field(kw_only=True, default=ErrorCode.SUCCESS) variable in GetCapabilitiesReject 1083 _span.append((self.error_code << 0)) 1158 error_code: ErrorCode = field(kw_only=True, default=ErrorCode.SUCCESS) variable in GetAllCapabilitiesReject 1177 _span.append((self.error_code << 0)) 1261 error_code: ErrorCode = field(kw_only=True, default=ErrorCode.SUCCESS) variable in SetConfigurationReject 1287 _span.append((self.error_code << 0)) 1362 error_code: ErrorCode = field(kw_only=True, default=ErrorCode.SUCCESS) variable in GetConfigurationReject 1381 _span.append((self.error_code << 0)) [all …]
|
/packages/modules/Bluetooth/system/gd/hci/acl_manager/ |
D | classic_acl_connection.cc | 170 std::string error_code = ErrorCodeText(status); in on_role_discovery_complete() local 171 log::error("Received on_role_discovery_complete with error code {}", error_code); in on_role_discovery_complete() 184 std::string error_code = ErrorCodeText(status); in on_read_link_policy_settings_complete() local 185 log::error("Received on_read_link_policy_settings_complete with error code {}", error_code); in on_read_link_policy_settings_complete() 198 std::string error_code = ErrorCodeText(status); in on_read_automatic_flush_timeout_complete() local 200 error_code); in on_read_automatic_flush_timeout_complete() 213 std::string error_code = ErrorCodeText(status); in on_read_transmit_power_level_complete() local 214 log::error("Received on_read_transmit_power_level_complete with error code {}", error_code); in on_read_transmit_power_level_complete() 227 std::string error_code = ErrorCodeText(status); in on_read_link_supervision_timeout_complete() local 229 error_code); in on_read_link_supervision_timeout_complete() [all …]
|
D | classic_impl.h | 445 std::string error_code = ErrorCodeText(status); in on_connection_packet_type_changed() local 446 log::error("Received on_connection_packet_type_changed with error code {}", error_code); in on_connection_packet_type_changed() 462 std::string error_code = ErrorCodeText(status); in on_central_link_key_complete() local 463 log::error("Received on_central_link_key_complete with error code {}", error_code); in on_central_link_key_complete() 493 std::string error_code = ErrorCodeText(status); in on_change_connection_link_key_complete() local 494 log::error("Received on_change_connection_link_key_complete with error code {}", error_code); in on_change_connection_link_key_complete() 510 std::string error_code = ErrorCodeText(status); in on_read_clock_offset_complete() local 511 log::error("Received on_read_clock_offset_complete with error code {}", error_code); in on_read_clock_offset_complete() 557 std::string error_code = ErrorCodeText(status); in on_qos_setup_complete() local 558 log::error("Received on_qos_setup_complete with error code {}", error_code); in on_qos_setup_complete() [all …]
|
D | classic_impl_test.cc | 96 hci::ErrorCode error_code) { in ReturnCommandComplete() argument 97 std::vector<uint8_t> success_vector{static_cast<uint8_t>(error_code)}; in ReturnCommandComplete() 106 hci::ErrorCode error_code) { in ReturnCommandStatus() argument 107 std::vector<uint8_t> success_vector{static_cast<uint8_t>(error_code)}; in ReturnCommandStatus()
|
/packages/modules/Connectivity/remoteauth/service/jni/src/ |
D | remoteauth_jni_android_platform.rs | 79 fn on_error(&mut self, error_code: i32); in on_error() 205 fn on_send_request_error(&self, error_code: i32, response_handle: i64) { in on_send_request_error() 209 error_code, in on_send_request_error() 214 callback.on_error(error_code); in on_send_request_error() 263 error_code: jint, in Java_com_android_server_remoteauth_jni_NativeRemoteAuthJavaPlatform_native_on_send_request_error() 268 native_on_send_request_error(env, error_code, platform_handle, response_handle); in Java_com_android_server_remoteauth_jni_NativeRemoteAuthJavaPlatform_native_on_send_request_error() 273 error_code: jint, in native_on_send_request_error() 279 platform.on_send_request_error(error_code, response_handle); in native_on_send_request_error()
|
/packages/modules/Bluetooth/tools/rootcanal/net/posix/ |
D | posix_async_socket.cc | 125 int error_code = 0; in Close() local 126 socklen_t error_code_size = sizeof(error_code); in Close() 127 getsockopt(fd_, SOL_SOCKET, SO_ERROR, reinterpret_cast<void*>(&error_code), &error_code_size); in Close() 132 error_code = ::close(fd_); in Close() 133 if (error_code == -1) { in Close()
|
/packages/modules/Bluetooth/system/rust/src/gatt/server/transactions/ |
D | read_by_group_type_request.rs | 33 error_code: AttErrorCode::AttributeNotFound, in handle_read_by_group_type_request() 37 failure_response.error_code = AttErrorCode::InvalidPdu; in handle_read_by_group_type_request() 46 failure_response.error_code = AttErrorCode::InvalidHandle; in handle_read_by_group_type_request() 55 failure_response.error_code = AttErrorCode::UnsupportedGroupType; in handle_read_by_group_type_request() 79 failure_response.error_code = err; in handle_read_by_group_type_request() 179 error_code: AttErrorCode::UnsupportedGroupType, in test_invalid_group_type() 204 error_code: AttErrorCode::InvalidHandle, in test_range_validation() 370 error_code: AttErrorCode::AttributeNotFound, in test_no_results()
|
D | read_by_type_request.rs | 29 error_code: AttErrorCode::AttributeNotFound, in handle_read_by_type_request() 33 failure_response.error_code = AttErrorCode::InvalidPdu; in handle_read_by_type_request() 42 failure_response.error_code = AttErrorCode::InvalidHandle; in handle_read_by_type_request() 59 failure_response.error_code = err; in handle_read_by_type_request() 255 error_code: AttErrorCode::AttributeNotFound, in test_no_results() 280 error_code: AttErrorCode::InvalidHandle, in test_range_validation()
|
D | read_request.rs | 18 Err(error_code) => att::AttErrorResponse { in handle_read_request() 21 error_code, in handle_read_request() 90 error_code: att::AttErrorCode::InvalidHandle, in test_missed_read() 120 error_code: att::AttErrorCode::ReadNotPermitted, in test_not_readable()
|
D | write_request.rs | 13 Err(error_code) => att::AttErrorResponse { in handle_write_request() 16 error_code, in handle_write_request() 78 error_code: att::AttErrorCode::WriteNotPermitted in test_failed_write()
|
D | find_information_request.rs | 21 error_code: AttErrorCode::InvalidHandle, in handle_find_information_request() 34 error_code: AttErrorCode::AttributeNotFound, in handle_find_information_request() 229 error_code: AttErrorCode::InvalidHandle, in test_handle_validation() 302 error_code: AttErrorCode::AttributeNotFound, in test_empty_output()
|
D | find_by_type_value.rs | 26 error_code: AttErrorCode::InvalidHandle, in handle_find_by_type_value_request() 60 error_code: AttErrorCode::AttributeNotFound, in handle_find_by_type_value_request() 221 error_code: AttErrorCode::InvalidHandle, in test_range_check() 254 error_code: AttErrorCode::AttributeNotFound, in test_empty_response()
|
/packages/modules/adb/client/ |
D | mdnsresponder_client.cpp | 59 uint32_t interface_index, DNSServiceErrorType error_code, 369 uint32_t /*interface_index*/, DNSServiceErrorType error_code, in register_service_ip() argument 372 D("%s: sdref=%p flags=0x%08x error_code=%u ttl=%u", __func__, sdref, flags, error_code, ttl); in register_service_ip() 378 if (error_code != kDNSServiceErr_NoError) { in register_service_ip() 379 D("Got error while looking up ip_addr [%u]", error_code); in register_service_ip() 393 DNSServiceErrorType error_code, const char* fullname, 482 DNSServiceErrorType error_code, const char* fullname, in register_resolved_mdns_service() argument 489 if (error_code != kDNSServiceErr_NoError) { in register_resolved_mdns_service() 490 D("Got error %d resolving service.", error_code); in register_resolved_mdns_service() 515 uint32_t interface_index, DNSServiceErrorType error_code, in on_service_browsed() argument [all …]
|
/packages/modules/Virtualization/libs/libvmclient/src/ |
D | error_code.rs | 38 fn from(error_code: AidlErrorCode) -> Self { in from() 39 match error_code { in from() 44 _ => Self::Unrecognised(error_code), in from()
|
D | lib.rs | 18 mod error_code; module 23 pub use crate::error_code::ErrorCode; 196 fn on_error(&self, cid: i32, error_code: ErrorCode, message: &str) {} in on_error() 407 fn onError(&self, cid: i32, error_code: AidlErrorCode, message: &str) -> BinderResult<()> { in onError() 410 let error_code = error_code.into(); in onError() localVariable 411 callback.on_error(cid, error_code, message); in onError()
|
/packages/modules/Bluetooth/system/btif/src/ |
D | btif_sock_logging.cc | 54 static android::bluetooth::SocketErrorEnum toSocketErrorEnum(btsock_error_code_t error_code); 60 btsock_error_code_t error_code, btsock_data_path_t data_path) { in btif_sock_connection_logger() argument 85 toSocketErrorEnum(error_code), data_path == BTSOCK_DATA_PATH_HARDWARE_OFFLOAD); in btif_sock_connection_logger() 203 static android::bluetooth::SocketErrorEnum toSocketErrorEnum(btsock_error_code_t error_code) { in toSocketErrorEnum() argument 204 switch (error_code) { in toSocketErrorEnum()
|
/packages/providers/MediaProvider/jni/ |
D | FuseDaemon.cpp | 554 const std::string& path, const std::string& name, fuse_req_t req, int* error_code, in validate_node_path() argument 562 *error_code = errno; in validate_node_path() 572 *error_code = ENONET; in validate_node_path() 580 *error_code = ENOENT; in validate_node_path() 603 *error_code = EFAULT; in validate_node_path() 610 *error_code = errno; in validate_node_path() 619 struct fuse_entry_param* e, int* error_code, const FuseOp op) { in make_node_entry() argument 627 validate_node_path(path, name, req, error_code, e, op); in make_node_entry() 943 struct fuse_entry_param* e, int* error_code, const FuseOp op, in do_lookup() argument 948 *error_code = ENOENT; in do_lookup() [all …]
|
/packages/modules/Bluetooth/android/app/jni/ |
D | com_android_bluetooth_hap_client.cpp | 176 ErrorCode error_code) override { in OnActivePresetSelectError() argument 195 (jint)error_code); in OnActivePresetSelectError() 198 std::get<int>(addr_or_group_id), (jint)error_code); in OnActivePresetSelectError() 257 ErrorCode error_code) override { in OnPresetInfoError() argument 276 (jint)preset_index, (jint)error_code); in OnPresetInfoError() 280 (jint)error_code); in OnPresetInfoError() 285 ErrorCode error_code) override { in OnSetPresetNameError() argument 304 (jint)preset_index, (jint)error_code); in OnSetPresetNameError() 308 (jint)error_code); in OnSetPresetNameError()
|
/packages/modules/Bluetooth/system/include/hardware/ |
D | bt_has.h | 98 ErrorCode error_code) = 0; 106 uint8_t preset_index, ErrorCode error_code) = 0; 110 uint8_t preset_index, ErrorCode error_code) = 0;
|
/packages/modules/Bluetooth/tools/rootcanal/rust/ |
D | llcp_packets.pdl | 68 error_code: 8, 114 error_code: 16, 153 error_code: 8, 276 error_code: 8,
|
/packages/modules/Bluetooth/system/gd/hci/ |
D | hci_layer_test.cc | 227 ErrorCode error_code = ErrorCode::SUCCESS; in SetUp() local 229 GetPacketBytes(ResetCompleteBuilder::Create(num_packets, error_code))); in SetUp() 336 ErrorCode error_code = ErrorCode::SUCCESS; in TEST_F() local 345 num_packets, error_code, local_version_information))); in TEST_F() 376 ErrorCode error_code = ErrorCode::SUCCESS; in TEST_F() local 385 num_packets, error_code, local_version_information))); in TEST_F() 411 num_packets, error_code, supported_commands))); in TEST_F() 432 num_packets, error_code, lmp_features))); in TEST_F()
|
/packages/modules/Bluetooth/system/gd/rust/topshim/btav_sink/ |
D | btav_sink_shim.cc | 41 .error_code = error.error_code, in connection_state_cb()
|
/packages/modules/Bluetooth/system/stack/avdt/ |
D | avdt_api.cc | 502 uint16_t AVDT_ConfigRsp(uint8_t handle, uint8_t label, uint8_t error_code, uint8_t category) { in AVDT_ConfigRsp() argument 508 log::info("avdt_handle={} label={} error_code=0x{:x} category={}", handle, label, error_code, in AVDT_ConfigRsp() 521 evt.msg.hdr.err_code = error_code; in AVDT_ConfigRsp() 524 if (error_code == 0) { in AVDT_ConfigRsp() 784 uint16_t AVDT_SecurityRsp(uint8_t handle, uint8_t label, uint8_t error_code, uint8_t* p_data, in AVDT_SecurityRsp() argument 790 log::info("avdt_handle={} label={} error_code=0x{:x} len={}", handle, label, error_code, len); in AVDT_SecurityRsp() 798 evt.msg.security_rsp.hdr.err_code = error_code; in AVDT_SecurityRsp()
|