Searched refs:error_msg (Results 1 – 9 of 9) sorted by relevance
/packages/modules/Uwb/service/uci/jni/src/ |
D | helper.rs | 22 pub(crate) fn boolean_result_helper<T>(result: Result<T>, error_msg: &str) -> jboolean { in boolean_result_helper() 26 error!("{} failed with {:?}", error_msg, &e); in boolean_result_helper() 33 pub(crate) fn byte_result_helper<T>(result: Result<T>, error_msg: &str) -> jbyte { in byte_result_helper() 35 u8::from(result_to_status_code(result, error_msg)) as i8 in byte_result_helper() 39 fn result_to_status_code<T>(result: Result<T>, error_msg: &str) -> StatusCode { in result_to_status_code() 41 error!("{} failed with {:?}", error_msg, &e); in result_to_status_code() 55 pub(crate) fn option_result_helper<T>(result: Result<T>, error_msg: &str) -> Option<T> { in option_result_helper() 58 error!("{} failed with {:?}", error_msg, &e); in option_result_helper() 70 let error_msg = "Error!"; in test_boolean_result_helper() localVariable 71 let jboolean_result = boolean_result_helper(result, error_msg); in test_boolean_result_helper() [all …]
|
/packages/modules/Connectivity/remoteauth/service/jni/src/ |
D | utils.rs | 20 pub(crate) fn get_boolean_result<T>(result: anyhow::Result<T>, error_msg: &str) -> jboolean { in get_boolean_result() 24 error!("{} failed with {:?}", error_msg, &e); in get_boolean_result()
|
/packages/modules/Bluetooth/system/gd/rust/topshim/btav_sink/ |
D | btav_sink_shim.cc | 38 .error_msg = error.error_msg.value_or(""), in to_rust_error()
|
/packages/services/Car/packages/ScriptExecutor/src/ |
D | LuaEngine.cpp | 169 std::string error_msg = s.substr(0, dpos - 1); in run() local 176 << error_msg.c_str(); in run()
|
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/ |
D | a2dp.rs | 224 error_msg: &'a CxxString, field 305 error_message: if self.error_msg == "" { in into() 308 Some(self.error_msg.to_string()) in into()
|
/packages/modules/Bluetooth/android/pandora/mmi2grpc/mmi2grpc/ |
D | __init__.py | 287 error_msg = (f"Missing {profile} proxy and mmi: {interaction}\n" 293 assert False, error_msg
|
/packages/modules/Bluetooth/system/gd/rust/topshim/btav/ |
D | btav_shim.cc | 225 .error_msg = error.error_msg.value_or(""), in to_rust_error()
|
/packages/modules/Bluetooth/system/include/hardware/ |
D | bt_av.h | 299 std::optional<std::string> error_msg; member
|
/packages/modules/DnsResolver/tests/dns_responder/ |
D | dns_responder.cpp | 55 char error_msg[512] = {0}; in errno2str() local 58 return strerror_r(errno, error_msg, sizeof(error_msg)); in errno2str()
|