HomeSort by relevance Sort by last modified time
    Searched refs:errCode (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/srec/srec/include/
errhndl.h 34 int errCode,
  /external/deqp/framework/egl/
egluDefs.cpp 55 Error::Error (deInt32 errCode, const char* errStr)
56 : tcu::TestError ((std::string("EGL returned ") + getErrorName(errCode)).c_str(), errStr ? errStr : "", __FILE__, __LINE__)
57 , m_error (errCode)
61 Error::Error (deInt32 errCode, const char* message, const char* expr, const char* file, int line)
63 , m_error (errCode)
egluDefs.hpp 44 Error (deInt32 errCode, const char* errStr);
45 Error (deInt32 errCode, const char* message, const char* expr, const char* file, int line);
  /external/chromium_org/third_party/sqlite/src/src/
test_server.c 226 int errCode; /* Error code returned */
338 return msg.errCode;
355 return msg.errCode;
362 return msg.errCode;
369 return msg.errCode;
376 return msg.errCode;
383 return msg.errCode;
424 pMsg->errCode = sqlite3_open(pMsg->zIn, &pMsg->pDb);
428 pMsg->errCode = sqlite3_prepare(pMsg->pDb, pMsg->zIn, pMsg->nByte,
433 pMsg->errCode = sqlite3_step(pMsg->pStmt)
    [all...]
table.c 141 db->errCode = SQLITE_NOMEM;
157 db->errCode = res.rc; /* Assume 32-bit assignment is atomic */
170 db->errCode = SQLITE_NOMEM;
util.c 119 db->errCode = err_code;
pager.c 332 ** * The Pager.errCode variable is set to something other than SQLITE_OK.
603 ** errCode
605 ** The Pager.errCode variable is only ever used in PAGER_ERROR state. It
606 ** is set to zero in all other states. In PAGER_ERROR state, Pager.errCode
644 int errCode; /* One of several kinds of errors */
    [all...]
vdbeapi.c 287 void sqlite3_result_error_code(sqlite3_context *pCtx, int errCode){
288 pCtx->isError = errCode;
290 sqlite3VdbeMemSetStr(&pCtx->s, sqlite3ErrStr(errCode), -1,
436 db->errCode = rc;
457 rc = db->errCode = p->rc;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppstanzaparser.h 69 XML_Error errCode)
70 { outer_->IncomingError(pctx, errCode); }
84 XML_Error errCode);
xmppstanzaparser.cc 100 XmlParseContext * pctx, XML_Error errCode) {
102 UNUSED(errCode);
  /external/icu/icu4c/source/common/
umutex.h 227 inline void umtx_initOnce(UInitOnce &uio, void (*fp)(UErrorCode &), UErrorCode &errCode) {
228 if (U_FAILURE(errCode)) {
233 (*fp)(errCode);
234 uio.fErrCode = errCode;
239 errCode = uio.fErrCode;
258 template<class T> void umtx_initOnce(UInitOnce &uio, void (*fp)(T, UErrorCode &), T context, UErrorCode &errCode) {
259 if (U_FAILURE(errCode)) {
264 (*fp)(context, errCode);
265 uio.fErrCode = errCode;
270 errCode = uio.fErrCode
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglcurrent.c 268 _eglError(EGLint errCode, const char *msg)
275 t->LastError = errCode;
277 if (errCode != EGL_SUCCESS) {
280 switch (errCode) {
331 _eglLog(_EGL_DEBUG, "EGL user error 0x%x (%s) in %s\n", errCode, s, msg);
eglcurrent.h 113 _eglError(EGLint errCode, const char *msg);
  /external/mesa3d/src/egl/main/
eglcurrent.c 268 _eglError(EGLint errCode, const char *msg)
275 t->LastError = errCode;
277 if (errCode != EGL_SUCCESS) {
280 switch (errCode) {
331 _eglLog(_EGL_DEBUG, "EGL user error 0x%x (%s) in %s\n", errCode, s, msg);
eglcurrent.h 113 _eglError(EGLint errCode, const char *msg);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/GL/
glu.h 19 #define gluErrorStringWIN(errCode) ((LPCSTR) gluErrorUnicodeStringEXT(errCode))
21 #define gluErrorStringWIN(errCode) ((LPCWSTR) gluErrorString(errCode))
24 const GLubyte *APIENTRY gluErrorString(GLenum errCode);
25 const wchar_t *APIENTRY gluErrorUnicodeStringEXT(GLenum errCode);
  /external/svox/pico/lib/
picoapi.h 238 pico_Status errCode,
441 pico_Status errCode,
picoapi.c 194 * @param errCode : pico_System error code
203 pico_Status errCode,
218 if (errCode == PICO_OK) {
222 picoos_setErrorMsg((picoos_char *) outMessage, PICO_RETSTRINGSIZE, errCode, NULL, NULL, NULL);
691 * @param errCode : error code
700 pico_Status errCode,
706 PICODBG_DEBUG(("got error code %i", errCode));
718 if (errCode == PICO_OK) {
722 picoos_setErrorMsg((picoos_char *) outMessage, PICO_RETSTRINGSIZE, errCode, NULL, NULL, NULL);
  /external/chromium_org/third_party/webrtc/voice_engine/include/
voe_base.h 55 virtual void CallbackOnError(int channel, int errCode) = 0;
  /external/chromium_org/third_party/icu/source/i18n/
plurrule.cpp 428 PluralRules::getRuleFromResource(const Locale& locale, UErrorCode& errCode) {
431 if (U_FAILURE(errCode)) {
434 UResourceBundle *rb=ures_openDirect(NULL, "plurals", &errCode);
435 if(U_FAILURE(errCode)) {
439 UResourceBundle *locRes=ures_getByKey(rb, "locales", NULL, &errCode);
440 if(U_FAILURE(errCode)) {
446 const UChar* s = ures_getStringByKey(locRes, curLocaleName, &resLen, &errCode);
461 errCode = U_ZERO_ERROR;
479 UResourceBundle *ruleRes=ures_getByKey(rb, "rules", NULL, &errCode);
480 if(U_FAILURE(errCode)) {
    [all...]
  /external/icu/icu4c/source/i18n/
plurrule.cpp 658 PluralRules::getRuleFromResource(const Locale& locale, UPluralType type, UErrorCode& errCode) {
661 if (U_FAILURE(errCode)) {
664 LocalUResourceBundlePointer rb(ures_openDirect(NULL, "plurals", &errCode));
665 if(U_FAILURE(errCode)) {
678 errCode = U_ILLEGAL_ARGUMENT_ERROR;
681 LocalUResourceBundlePointer locRes(ures_getByKey(rb.getAlias(), typeKey, NULL, &errCode));
682 if(U_FAILURE(errCode)) {
687 const UChar* s = ures_getStringByKey(locRes.getAlias(), curLocaleName, &resLen, &errCode);
701 errCode = U_ZERO_ERROR;
715 LocalUResourceBundlePointer ruleRes(ures_getByKey(rb.getAlias(), "rules", NULL, &errCode));
    [all...]
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
InstallAppProgress.java 150 private int getExplanationFromErrorCode(int errCode) {
151 Log.d(TAG, "Installation error code: " + errCode);
152 switch (errCode) {
  /external/chromium_org/net/third_party/nss/ssl/
ssl3ecc.c 599 int errCode = SSL_ERROR_RX_MALFORMED_SERVER_KEY_EXCH;
628 errCode = SEC_ERROR_UNSUPPORTED_ELLIPTIC_CURVE;
639 errCode = SEC_ERROR_UNSUPPORTED_EC_POINT_FORM;
685 errCode =
692 errCode =
716 errCode = SEC_ERROR_UNSUPPORTED_ELLIPTIC_CURVE;
737 PORT_SetError( errCode );
    [all...]
ssl3con.c     [all...]
dtlscon.c 956 int errCode = SSL_ERROR_RX_MALFORMED_HELLO_VERIFY_REQUEST;
968 errCode = SSL_ERROR_RX_UNEXPECTED_HELLO_VERIFY_REQUEST;
1012 errCode = ssl_MapLowLevelError(errCode);
    [all...]

Completed in 6976 milliseconds

1 2 3