Home
last modified time | relevance | path

Searched refs:err_string (Results 1 – 11 of 11) sorted by relevance

/external/libaom/av1/
Dav1_cx_iface.c2598 char *const err_string = ctx->ppi->error.detail; in ctrl_set_target_seq_level_idx() local
2599 snprintf(err_string, ARG_ERR_MSG_MAX_LEN, in ctrl_set_target_seq_level_idx()
2601 ctx->base.err_detail = err_string; in ctrl_set_target_seq_level_idx()
4035 char *const err_string = ctx->ppi->error.detail; in encoder_set_option() local
4056 argv, err_string)) { in encoder_set_option()
4058 arg_parse_uint_helper(&arg, err_string); in encoder_set_option()
4060 err_string)) { in encoder_set_option()
4061 extra_cfg.min_gf_interval = arg_parse_uint_helper(&arg, err_string); in encoder_set_option()
4063 err_string)) { in encoder_set_option()
4064 extra_cfg.max_gf_interval = arg_parse_uint_helper(&arg, err_string); in encoder_set_option()
[all …]
/external/tensorflow/tensorflow/lite/python/authoring/
Dauthoring.py161 err_string = f"Op: {ops[i]}\n{callstack_dump}\n"
162 self._log(err_string)
170 err_string = (
174 self._log(err_string)
178 err_string = (
182 self._log(err_string)
214 err_string = (
218 self._log(err_string)
223 err_string = (
227 self._log(err_string)
[all …]
/external/e2fsprogs/lib/e2p/
Derrcode.c12 static const char *err_string[] = { variable
41 if (err < ARRAY_SIZE(err_string)) in e2p_errcode2str()
42 return err_string[err]; in e2p_errcode2str()
/external/libusb/libusb/os/
Dwindows_common.c50 static char err_string[256]; in windows_error_str() local
58 len = sprintf(err_string, "[%lu] ", ULONG_CAST(error_code)); in windows_error_str()
76 &err_string[len], sizeof(err_string) - len, NULL); in windows_error_str()
80 snprintf(err_string, sizeof(err_string), in windows_error_str()
84 snprintf(err_string, sizeof(err_string), "Unknown error code %lu", in windows_error_str()
89 if (err_string[pos] == '\r') in windows_error_str()
90 err_string[pos] = '\0'; in windows_error_str()
93 return err_string; in windows_error_str()
/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/iomgr/
Derror.cc61 auto err_string = grpc_core::StrError(err); in grpc_os_error() local
63 StatusCreate(absl::StatusCode::kUnknown, err_string, location, {}); in grpc_os_error()
66 err_string); in grpc_os_error()
/external/grpc-grpc/src/core/lib/iomgr/
Derror.cc61 auto err_string = grpc_core::StrError(err); in grpc_os_error() local
63 StatusCreate(absl::StatusCode::kUnknown, err_string, location, {}); in grpc_os_error()
66 err_string); in grpc_os_error()
/external/python/cpython3/Include/cpython/
Dpyfpe.h11 #define PyFPE_START_PROTECT(err_string, leave_stmt) argument
/external/python/cpython3/Lib/test/support/
D__init__.py275 err_string = str(e)
276 if len(err_string) > 50:
277 err_string = err_string[:50] + ' [...]'
279 err_string)
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dgpu_compiler.cc1288 std::string err_string; in CompileToTargetBinary() local
1289 llvm::raw_string_ostream os(err_string); in CompileToTargetBinary()
1291 LOG(FATAL) << "Failed to parse IR: " << err_string; in CompileToTargetBinary()
/external/crosvm/devices/src/virtio/block/
Dasynchronous.rs1002 if let Err(err_string) = ex in start_worker()
1013 error!("{:#}", err_string); in start_worker()
/external/pytorch/test/
Dtest_reductions.py2070 err_string = f"Expected out tensor to have device {device}, but got cpu instead"
2072 with self.assertRaisesRegex(RuntimeError, err_string):
2078 with self.assertRaisesRegex(RuntimeError, err_string):