HomeSort by relevance Sort by last modified time
    Searched defs:err_string (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
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 class:Lexer
  /external/lldb/source/API/
SBError.cpp 225 const char * err_string = GetCString(); local
226 description.Printf ("error: %s", (err_string != NULL ? err_string : ""));
  /external/chromium_org/third_party/libusb/src/libusb/os/
wince_usb.c 61 static char err_string[ERR_BUFFER_SIZE]; local
87 if (WideCharToMultiByte(CP_ACP, 0, wErr_string, -1, err_string, ERR_BUFFER_SIZE, NULL, NULL) < 0)
89 strcpy(err_string, "Unable to convert error string");
91 return err_string;
    [all...]
windows_usb.c 151 static char err_string[ERR_BUFFER_SIZE]; local
159 safe_sprintf(err_string, ERR_BUFFER_SIZE, "[%u] ", error_code);
162 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), &err_string[safe_strlen(err_string)],
163 ERR_BUFFER_SIZE - (DWORD)safe_strlen(err_string), NULL);
167 safe_sprintf(err_string, ERR_BUFFER_SIZE,
170 safe_sprintf(err_string, ERR_BUFFER_SIZE, "Unknown error code %u", error_code);
173 for (i=safe_strlen(err_string)-1; (i>=0) && ((err_string[i]==0x0A) || (err_string[i]==0x0D)); i--)
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp 2253 const char *err_string = error.AsCString(); local
    [all...]

Completed in 535 milliseconds