/external/deqp/framework/egl/ |
egluDefs.cpp | 55 Error::Error (deUint32 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 (deUint32 errCode, const char* message, const char* expr, const char* file, int line) 63 , m_error (errCode)
|
egluDefs.hpp | 41 Error (deUint32 errCode, const char* errStr); 42 Error (deUint32 errCode, const char* message, const char* expr, const char* file, int line);
|
/device/google/marlin/telephony/ims/src/org/codeaurora/ims/internal/ |
IQtiImsExtListener.aidl | 66 * @param errCode contains error code 70 void onUTReqFailed(int errCode, String errString);
|
/external/webrtc/webrtc/libjingle/xmpp/ |
xmppstanzaparser.h | 52 XML_Error errCode) 53 { outer_->IncomingError(pctx, errCode); } 67 XML_Error errCode);
|
xmppstanzaparser.cc | 83 XmlParseContext * pctx, XML_Error errCode) { 85 RTC_UNUSED(errCode);
|
/external/icu/icu4c/source/common/ |
umutex.h | 259 inline void umtx_initOnce(UInitOnce &uio, void (U_CALLCONV *fp)(UErrorCode &), UErrorCode &errCode) { 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) { 291 if (U_FAILURE(errCode)) { 296 (*fp)(context, errCode); 297 uio.fErrCode = errCode; 302 errCode = uio.fErrCode [all...] |
ucnv_io.cpp | 232 static void U_CALLCONV initAliasData(UErrorCode &errCode) { 242 data = udata_openChoice(NULL, DATA_TYPE, DATA_NAME, isAcceptable, NULL, &errCode); 243 if(U_FAILURE(errCode)) { 252 errCode = U_INVALID_FORMAT_ERROR; [all...] |
ucnv_bld.cpp | [all...] |
/external/autotest/client/deps/nvmap_compactor/src/ |
nvmap_carveout_compactor.c | 308 GLenum errCode = GL_NO_ERROR; 332 errCode = glGetError(); 333 if (errCode != GL_NO_ERROR) { 334 printf("GL Error Occured : %d\n", errCode); 377 GLenum errCode = GL_NO_ERROR; 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) { [all...] |
/device/google/marlin/telephony/ims/src/org/codeaurora/ims/ |
QtiImsExtListenerBaseImpl.java | 49 public void onUTReqFailed(int errCode, String errString) {
|
/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/webrtc/webrtc/voice_engine/include/ |
voe_base.h | 54 virtual void CallbackOnError(int channel, int errCode) = 0;
|
/external/icu/icu4c/source/i18n/ |
plurrule.cpp | 632 PluralRules::getRuleFromResource(const Locale& locale, UPluralType type, UErrorCode& errCode) { 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/ |
ppp.c | 200 int errCode; /* Code indicating why interface is down. */ 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) 598 int pppOverEthernetOpen(struct netif *ethif, const char *service_name, const char *concentrator_name, void (*linkStatusCB)(void *ctx, int errCode, void *arg), void *linkStatusCtx) 663 pc->errCode = PPPERR_USER; 671 pc->errCode = PPPERR_USER [all...] |
ppp.h | 396 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);
|
auth.c | 629 int errCode = PPPERR_AUTHFAIL; 643 pppIOCtl(unit, PPPCTLS_ERRCODE, &errCode); [all...] |
/frameworks/base/services/core/java/com/android/server/job/ |
JobSchedulerShellCommand.java | 88 private boolean printError(int errCode, String pkgName, int userId, int jobId) { 90 switch (errCode) {
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
bandwidth_estimator.c | 181 int16_t errCode; 188 errCode = WebRtcIsacfix_UpdateUplinkBwRec(bweStr, Index); 189 if (errCode <0) { 190 return(errCode); [all...] |
/external/webrtc/webrtc/voice_engine/ |
voe_base_impl.cc | 52 int errCode = 0; 54 errCode = VE_RUNTIME_REC_ERROR; 57 errCode = VE_RUNTIME_PLAY_ERROR; 62 voiceEngineObserverPtr_->CallbackOnError(-1, errCode);
|
/external/mesa3d/src/mesa/main/ |
texenv.c | 43 #define TE_ERROR(errCode, msg, value) \ 44 _mesa_error(ctx, errCode, msg, _mesa_lookup_enum_by_nr(value));
|
/external/sqlite/dist/orig/ |
sqlite3.c | [all...] |