Searched refs:err_string (Results 1 – 8 of 8) sorted by relevance
/external/lldb/source/API/ |
D | SBError.cpp | 225 const char * err_string = GetCString(); in GetDescription() local 226 description.Printf ("error: %s", (err_string != NULL ? err_string : "")); in GetDescription()
|
/external/lldb/test/lang/objc/objc-checker/ |
D | TestObjCCheckers.py | 85 err_string = expr_error.GetCString() 86 self.assertTrue ("selector" in err_string)
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
D | lexer.py | 155 assert s[i].isdigit() or s[i] in "abcdefABCDEF", self.err_string() 193 raise LexError( self.err_string() + "unterminated char constant" ) 216 def err_string(self): member in Lexer
|
D | parse_core.py | 81 sys.stderr.write( lexer.err_string() )
|
/external/chromium_org/ppapi/ |
D | PRESUBMIT.py | 11 def RunCmdAndCheck(cmd, err_string, output_api, cwd=None, warning=False): argument 20 '%s\n\n%s' % (err_string, p_stderr))) 23 output_api.PresubmitError(err_string,
|
/external/chromium_org/third_party/libusb/src/libusb/os/ |
D | wince_usb.c | 61 static char err_string[ERR_BUFFER_SIZE]; in windows_error_str() local 87 if (WideCharToMultiByte(CP_ACP, 0, wErr_string, -1, err_string, ERR_BUFFER_SIZE, NULL, NULL) < 0) in windows_error_str() 89 strcpy(err_string, "Unable to convert error string"); in windows_error_str() 91 return err_string; in windows_error_str()
|
D | windows_usb.c | 151 static char err_string[ERR_BUFFER_SIZE]; in windows_error_str() local 159 safe_sprintf(err_string, ERR_BUFFER_SIZE, "[%u] ", error_code); in windows_error_str() 162 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), &err_string[safe_strlen(err_string)], in windows_error_str() 163 ERR_BUFFER_SIZE - (DWORD)safe_strlen(err_string), NULL); in windows_error_str() 167 safe_sprintf(err_string, ERR_BUFFER_SIZE, in windows_error_str() 170 safe_sprintf(err_string, ERR_BUFFER_SIZE, "Unknown error code %u", error_code); in windows_error_str() 173 …for (i=safe_strlen(err_string)-1; (i>=0) && ((err_string[i]==0x0A) || (err_string[i]==0x0D)); i--)… in windows_error_str() 174 err_string[i] = 0; in windows_error_str() 177 return err_string; in windows_error_str()
|
/external/lldb/source/Plugins/Process/gdb-remote/ |
D | ProcessGDBRemote.cpp | 2253 const char *err_string = error.AsCString(); in EnableBreakpointSite() local 2256 err_string ? err_string : "NULL"); in EnableBreakpointSite()
|