Home
last modified time | relevance | path

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

/aosp_15_r20/external/libaom/av1/
H A Dav1_cx_iface.c2561 char *const err_string = ctx->ppi->error.detail; in ctrl_set_target_seq_level_idx() local
2562 snprintf(err_string, ARG_ERR_MSG_MAX_LEN, in ctrl_set_target_seq_level_idx()
2564 ctx->base.err_detail = err_string; in ctrl_set_target_seq_level_idx()
3988 char *const err_string = ctx->ppi->error.detail; in encoder_set_option() local
4009 argv, err_string)) { in encoder_set_option()
4011 arg_parse_uint_helper(&arg, err_string); in encoder_set_option()
4013 err_string)) { in encoder_set_option()
4014 extra_cfg.min_gf_interval = arg_parse_uint_helper(&arg, err_string); in encoder_set_option()
4016 err_string)) { in encoder_set_option()
4017 extra_cfg.max_gf_interval = arg_parse_uint_helper(&arg, err_string); in encoder_set_option()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/lite/python/authoring/
H A 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 …]
/aosp_15_r20/external/python/cpython2/Modules/
Dparsermodule.c549 err_string(char *message) in err_string() function
698 err_string("parse tree does not use a valid start symbol"); in parser_tuple2st()
705 err_string("unspecified ST error occurred"); in parser_tuple2st()
779 err_string("terminal nodes must have 2 or 3 entries"); in build_node_children()
1264 err_string("expected variable argument trailer for varargslist"); in validate_varargslist_trailer()
1288 err_string("illegal variable argument trailer for varargslist"); in validate_varargslist_trailer()
1312 err_string("varargslist missing child nodes"); in validate_varargslist()
1393 err_string("illegal formation for varargslist"); in validate_varargslist()
1619 err_string("illegal small_stmt child type"); in validate_small_stmt()
1703 err_string("illegal augmented assignment operator"); in validate_expr_stmt()
[all …]
/aosp_15_r20/external/libusb/libusb/os/
H A 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()
/aosp_15_r20/external/e2fsprogs/lib/e2p/
H A 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()
/aosp_15_r20/external/python/cpython2/Include/
Dpyfpe.h136 #define PyFPE_START_PROTECT(err_string, leave_stmt) \ argument
138 PyErr_SetString(PyExc_FloatingPointError, err_string); \
168 #define PyFPE_START_PROTECT(err_string, leave_stmt)
/aosp_15_r20/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()
/aosp_15_r20/external/grpc-grpc/src/core/lib/iomgr/
H A 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()
/aosp_15_r20/external/python/cpython2/Lib/test/support/
D__init__.py385 err_string = str(e)
386 if len(err_string) > 50:
387 err_string = err_string[:50] + ' [...]'
389 err_string)
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dpyfpe.h11 #define PyFPE_START_PROTECT(err_string, leave_stmt) argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dpyfpe.h11 #define PyFPE_START_PROTECT(err_string, leave_stmt) argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dpyfpe.h11 #define PyFPE_START_PROTECT(err_string, leave_stmt) argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dpyfpe.h11 #define PyFPE_START_PROTECT(err_string, leave_stmt) argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dpyfpe.h11 #define PyFPE_START_PROTECT(err_string, leave_stmt) argument
/aosp_15_r20/external/python/cpython3/Lib/test/support/
D__init__.py282 err_string = str(e)
283 if len(err_string) > 50:
284 err_string = err_string[:50] + ' [...]'
286 err_string)
/aosp_15_r20/external/python/cpython2/Objects/
Dlistobject.c2280 PyObject *v, *format_tuple, *err_string; in listindex() local
2312 err_string = PyString_Format(err_format, format_tuple); in listindex()
2314 if (err_string == NULL) in listindex()
2316 PyErr_SetObject(PyExc_ValueError, err_string); in listindex()
2317 Py_DECREF(err_string); in listindex()
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A 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()
/aosp_15_r20/external/crosvm/devices/src/virtio/block/
H A Dasynchronous.rs1028 if let Err(err_string) = ex in start_worker()
1039 error!("{:#}", err_string); in start_worker()
/aosp_15_r20/external/pytorch/test/
H A 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):