Searched refs:err_info (Results 1 – 6 of 6) sorted by relevance
/third_party/mindspore/mindspore/ccsrc/debug/ |
D | common.h | 73 char err_info[MAX_FILENAME_LENGTH]; in ErrnoToString() local 74 char *ret = strerror_r(error_number, err_info, sizeof(err_info)); in ErrnoToString() 79 char err_info[MAX_FILENAME_LENGTH]; in ErrnoToString() local 80 (void)strerror_s(err_info, sizeof(err_info), error_number); in ErrnoToString() 81 ret_info << ", ErrInfo: " << err_info; in ErrnoToString()
|
D | debug_services.cc | 567 char err_info[kMaxFilenameLength]; in ReadTensorFromNpy() local 568 auto ret = strerror_r(errno, err_info, sizeof(err_info)); in ReadTensorFromNpy()
|
/third_party/boost/boost/interprocess/ |
D | exceptions.hpp | 46 interprocess_exception(const error_info &err_info, const char *str = 0) in interprocess_exception() argument 47 : m_err(err_info) in interprocess_exception()
|
/third_party/mindspore/mindspore/dataset/engine/ |
D | iterators.py | 181 err_info = str(err) 182 if err_info.find("Out of memory") >= 0 or err_info.find("MemoryError") >= 0:
|
/third_party/python/Python/ |
D | pystate.c | 1275 _PyErr_StackItem *err_info = _PyErr_GetTopmostException(t); in _PyThread_CurrentExceptions() local 1276 if (err_info == NULL) { in _PyThread_CurrentExceptions() 1285 err_info->exc_type != NULL ? err_info->exc_type : Py_None, in _PyThread_CurrentExceptions() 1286 err_info->exc_value != NULL ? err_info->exc_value : Py_None, in _PyThread_CurrentExceptions() 1287 err_info->exc_traceback != NULL ? err_info->exc_traceback : Py_None); in _PyThread_CurrentExceptions()
|
D | sysmodule.c | 787 _PyErr_StackItem *err_info = _PyErr_GetTopmostException(_PyThreadState_GET()); in sys_exc_info_impl() local 790 err_info->exc_type != NULL ? err_info->exc_type : Py_None, in sys_exc_info_impl() 791 err_info->exc_value != NULL ? err_info->exc_value : Py_None, in sys_exc_info_impl() 792 err_info->exc_traceback != NULL ? in sys_exc_info_impl() 793 err_info->exc_traceback : Py_None); in sys_exc_info_impl()
|