Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/API/
H A DSBError.cpp173 const char *err_string = GetCString(); in GetDescription() local
175 (err_string != nullptr ? err_string : "")); in GetDescription()
/llvm-project-15.0.7/openmp/libomptarget/plugins/amdgpu/impl/
H A Dsystem.cpp113 std::string err_string = "[GPU Memory Error] Addr: " + addr; in callbackEvent() local
114 err_string += " Reason: "; in callbackEvent()
116 err_string += "No Idea! "; in callbackEvent()
119 err_string += "Page not present or supervisor privilege. "; in callbackEvent()
121 err_string += "Write access to a read-only page. "; in callbackEvent()
123 err_string += "Execute access to a page marked NX. "; in callbackEvent()
125 err_string += "Host access only. "; in callbackEvent()
127 err_string += "ECC failure (if supported by HW). "; in callbackEvent()
129 err_string += "Can't determine the exact fault address. "; in callbackEvent()
131 fprintf(stderr, "%s\n", err_string.c_str()); in callbackEvent()
/llvm-project-15.0.7/lldb/test/API/lang/objc/objc-checker/
H A DTestObjCCheckers.py73 err_string = expr_error.GetCString()
74 self.assertIn("selector", err_string)
/llvm-project-15.0.7/lldb/source/Utility/
H A DStringExtractorGDBRemote.cpp29 auto err_string = packet_ref.substr(4); in GetResponseType() local
30 for (auto e : err_string) in GetResponseType()