Searched refs:errCode (Results 1 - 25 of 26) sorted by relevance

12

/external/deqp/framework/egl/
H A DegluDefs.cpp55 Error::Error (deUint32 errCode, const char* errStr) argument
56 : tcu::TestError ((std::string("EGL returned ") + getErrorName(errCode)).c_str(), errStr ? errStr : "", __FILE__, __LINE__)
57 , m_error (errCode)
61 Error::Error (deUint32 errCode, const char* message, const char* expr, const char* file, int line) argument
63 , m_error (errCode)
H A DegluDefs.hpp41 Error (deUint32 errCode, const char* errStr);
42 Error (deUint32 errCode, const char* message, const char* expr, const char* file, int line);
/external/webrtc/webrtc/libjingle/xmpp/
H A Dxmppstanzaparser.h52 XML_Error errCode)
53 { outer_->IncomingError(pctx, errCode); }
67 XML_Error errCode);
51 Error(XmlParseContext * pctx, XML_Error errCode) argument
H A Dxmppstanzaparser.cc83 XmlParseContext * pctx, XML_Error errCode) {
85 RTC_UNUSED(errCode);
82 IncomingError( XmlParseContext * pctx, XML_Error errCode) argument
/external/icu/icu4c/source/common/
H A Dumutex.h259 inline void umtx_initOnce(UInitOnce &uio, void (U_CALLCONV *fp)(UErrorCode &), UErrorCode &errCode) { argument
260 if (U_FAILURE(errCode)) {
265 (*fp)(errCode);
266 uio.fErrCode = errCode;
271 errCode = uio.fErrCode;
290 template<class T> void umtx_initOnce(UInitOnce &uio, void (U_CALLCONV *fp)(T, UErrorCode &), T context, UErrorCode &errCode) { argument
291 if (U_FAILURE(errCode)) {
296 (*fp)(context, errCode);
297 uio.fErrCode = errCode;
302 errCode
[all...]
H A Ducnv_io.cpp232 static void U_CALLCONV initAliasData(UErrorCode &errCode) { argument
242 data = udata_openChoice(NULL, DATA_TYPE, DATA_NAME, isAcceptable, NULL, &errCode);
243 if(U_FAILURE(errCode)) {
252 errCode = U_INVALID_FORMAT_ERROR;
H A Ducnv_bld.cpp1098 static void U_CALLCONV initAvailableConvertersList(UErrorCode &errCode) { argument
1103 UEnumeration *allConvEnum = ucnv_openAllNames(&errCode);
1104 int32_t allConverterCount = uenum_count(allConvEnum, &errCode);
1105 if (U_FAILURE(errCode)) {
1112 errCode = U_MEMORY_ALLOCATION_ERROR;
/external/mesa3d/src/egl/main/
H A Deglcurrent.c223 _eglInternalError(EGLint errCode, const char *msg) argument
230 t->LastError = errCode;
232 if (errCode != EGL_SUCCESS) {
235 switch (errCode) {
278 _eglLog(_EGL_DEBUG, "EGL user error 0x%x (%s) in %s\n", errCode, s, msg);
285 _eglError(EGLint errCode, const char *msg) argument
287 if (errCode != EGL_SUCCESS) {
289 if (errCode == EGL_BAD_ALLOC) {
295 _eglDebugReport(errCode, msg, type, NULL);
297 _eglInternalError(errCode, ms
[all...]
H A Deglcurrent.h100 _eglError(EGLint errCode, const char *msg);
/external/autotest/client/deps/nvmap_compactor/src/
H A Dnvmap_carveout_compactor.c308 GLenum errCode = GL_NO_ERROR; local
332 errCode = glGetError();
333 if (errCode != GL_NO_ERROR) {
334 printf("GL Error Occured : %d\n", errCode);
377 GLenum errCode = GL_NO_ERROR; local
399 errCode = RunPhase(phase, 512, 512, allocCount, 1, phase1_tex);
400 if (errCode) {
401 brokeAt = errCode;
431 errCode = RunPhase(phase, 1024, 1024, allocCount, 4, phase2_tex);
432 if (errCode) {
742 GLenum errCode; local
[all...]
/external/svox/pico/lib/
H A Dpicoapi.h238 pico_Status errCode,
441 pico_Status errCode,
H A Dpicoapi.c194 * @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);
201 pico_getSystemStatusMessage( pico_System system, pico_Status errCode, pico_Retstring outMessage ) argument
698 pico_getEngineStatusMessage( pico_Engine engine, pico_Status errCode, pico_Retstring outMessage ) argument
/external/webrtc/webrtc/voice_engine/include/
H A Dvoe_base.h54 virtual void CallbackOnError(int channel, int errCode) = 0;
/external/icu/icu4c/source/i18n/
H A Dplurrule.cpp632 PluralRules::getRuleFromResource(const Locale& locale, UPluralType type, UErrorCode& errCode) { argument
635 if (U_FAILURE(errCode)) {
638 LocalUResourceBundlePointer rb(ures_openDirect(NULL, "plurals", &errCode));
639 if(U_FAILURE(errCode)) {
652 errCode = U_ILLEGAL_ARGUMENT_ERROR;
655 LocalUResourceBundlePointer locRes(ures_getByKey(rb.getAlias(), typeKey, NULL, &errCode));
656 if(U_FAILURE(errCode)) {
661 const UChar* s = ures_getStringByKey(locRes.getAlias(), curLocaleName, &resLen, &errCode);
675 errCode = U_ZERO_ERROR;
689 LocalUResourceBundlePointer ruleRes(ures_getByKey(rb.getAlias(), "rules", NULL, &errCode));
[all...]
/external/syslinux/core/lwip/src/netif/ppp/
H A Dppp.c200 int errCode; /* Code indicating why interface is down. */ member in struct:PPPControl_s
218 void (*linkStatusCB)(void *ctx, int errCode, void *arg);
369 PPPDEBUG(LOG_DEBUG, ("pppLinkTerminated: unit %d: linkStatusCB=%p errCode=%d\n", pd, pc->linkStatusCB, pc->errCode));
371 pc->linkStatusCB(pc->linkStatusCtx, pc->errCode ? pc->errCode : PPPERR_PROTOCOL, NULL);
530 pppOverSerialOpen(sio_fd_t fd, void (*linkStatusCB)(void *ctx, int errCode, void *arg), void *linkStatusCtx) argument
598 int pppOverEthernetOpen(struct netif *ethif, const char *service_name, const char *concentrator_name, void (*linkStatusCB)(void *ctx, int errCode, void *arg), void *linkStatusCtx) argument
663 pc->errCode = PPPERR_USER;
671 pc->errCode
[all...]
H A Dppp.h396 int pppOverSerialOpen(sio_fd_t fd, void (*linkStatusCB)(void *ctx, int errCode, void *arg), void *linkStatusCtx);
401 int pppOverEthernetOpen(struct netif *ethif, const char *service_name, const char *concentrator_name, void (*linkStatusCB)(void *ctx, int errCode, void *arg), void *linkStatusCtx);
H A Dauth.c629 int errCode = PPPERR_AUTHFAIL; local
643 pppIOCtl(unit, PPPCTLS_ERRCODE, &errCode);
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dbandwidth_estimator.c181 int16_t errCode; local
188 errCode = WebRtcIsacfix_UpdateUplinkBwRec(bweStr, Index);
189 if (errCode <0) {
190 return(errCode);
/external/webrtc/webrtc/voice_engine/
H A Dvoe_base_impl.cc52 int errCode = 0; local
54 errCode = VE_RUNTIME_REC_ERROR;
57 errCode = VE_RUNTIME_PLAY_ERROR;
62 voiceEngineObserverPtr_->CallbackOnError(-1, errCode);
/external/mesa3d/src/mesa/main/
H A Dtexenv.c44 #define TE_ERROR(errCode, msg, value) \
45 _mesa_error(ctx, errCode, msg, _mesa_enum_to_string(value));
/external/guice/extensions/struts2/lib/
H A Djsp-2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/jasper/ org/apache/jasper/resources/ ...
H A Djsp-api-2.1.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/jsp/ javax/servlet/jsp/resources/ ...
/external/sqlite/dist/orig/
H A Dsqlite3.c14156 int errCode; /* Most recent error code (SQLITE_*) */ member in struct:sqlite3
14908 u8 errCode; /* Error detected by xRecordCompare (CORRUPT or NOMEM) */ member in struct:UnpackedRecord
47684 int errCode; /* One of several kinds of errors */ member in struct:Pager
63159 sqlite3BtreeTripAllCursors(Btree *pBtree, int errCode, int writeOnly) argument
76723 sqlite3_result_error_code(sqlite3_context *pCtx, int errCode) argument
104027 sqlite3HaltConstraint( Parse *pParse, int errCode, int onError, char *p4, i8 p4type, u8 p5Errmsg ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c14156 int errCode; /* Most recent error code (SQLITE_*) */ member in struct:sqlite3
14908 u8 errCode; /* Error detected by xRecordCompare (CORRUPT or NOMEM) */ member in struct:UnpackedRecord
47684 int errCode; /* One of several kinds of errors */ member in struct:Pager
63159 sqlite3BtreeTripAllCursors(Btree *pBtree, int errCode, int writeOnly) argument
76723 sqlite3_result_error_code(sqlite3_context *pCtx, int errCode) argument
104027 sqlite3HaltConstraint( Parse *pParse, int errCode, int onError, char *p4, i8 p4type, u8 p5Errmsg ) argument
[all...]
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 764 milliseconds

12