Home
last modified time | relevance | path

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

/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)
/external/libusb/libusb/os/
Dwindows_common.c51 static char err_string[256]; in windows_error_str() local
59 len = sprintf(err_string, "[%lu] ", ULONG_CAST(error_code)); in windows_error_str()
77 &err_string[len], sizeof(err_string) - len, NULL); in windows_error_str()
81 snprintf(err_string, sizeof(err_string), in windows_error_str()
85 snprintf(err_string, sizeof(err_string), "Unknown error code %lu", in windows_error_str()
90 if (err_string[pos] == '\r') in windows_error_str()
91 err_string[pos] = '\0'; in windows_error_str()
94 return err_string; in windows_error_str()
/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 …]
/external/llvm-project/lldb/source/API/
DSBError.cpp177 const char *err_string = GetCString(); in GetDescription() local
179 (err_string != nullptr ? err_string : "")); in GetDescription()
/external/llvm-project/lldb/test/API/lang/objc/objc-checker/
DTestObjCCheckers.py75 err_string = expr_error.GetCString()
76 self.assertTrue("selector" in err_string)
/external/llvm-project/openmp/libomptarget/plugins/amdgpu/impl/
Dsystem.cpp566 std::string err_string = "[GPU Memory Error] Addr: " + addr; in callbackEvent() local
567 err_string += " Reason: "; in callbackEvent()
569 err_string += "No Idea! "; in callbackEvent()
572 err_string += "Page not present or supervisor privilege. "; in callbackEvent()
574 err_string += "Write access to a read-only page. "; in callbackEvent()
576 err_string += "Execute access to a page marked NX. "; in callbackEvent()
578 err_string += "Host access only. "; in callbackEvent()
580 err_string += "ECC failure (if supported by HW). "; in callbackEvent()
582 err_string += "Can't determine the exact fault address. "; in callbackEvent()
584 fprintf(stderr, "%s\n", err_string.c_str()); in callbackEvent()
/external/python/cpython3/Include/
Dpyfpe.h11 #define PyFPE_START_PROTECT(err_string, leave_stmt) argument
/external/python/cpython3/Modules/
Dparsermodule.c552 err_string(const char *message) in err_string() function
787 err_string("Error Parsing encoding_decl"); in parser_tuple2st()
797 err_string("parse tree does not use a valid start symbol"); in parser_tuple2st()
809 err_string("unspecified ST error occurred"); in parser_tuple2st()
873 err_string("terminal nodes must have 2 or 3 entries"); in build_node_children()
/external/llvm-project/lldb/source/Utility/
DStringExtractorGDBRemote.cpp26 auto err_string = packet_ref.substr(4); in GetResponseType() local
27 for (auto e : err_string) in GetResponseType()
/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)
/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()
/external/python/cpython3/Lib/test/support/
D__init__.py550 err_string = str(e)
551 if len(err_string) > 50:
552 err_string = err_string[:50] + ' [...]'
554 err_string)
/external/crosvm/devices/src/virtio/
Dblock_async.rs913 if let Err(err_string) = run_worker( in activate()
923 error!("{}", err_string); in activate()