| /external/icu4c/test/cintltst/ |
| sprpdata.c | 44 doStringPrepTest(const char* binFileName, const char* txtFileName, int32_t options, UErrorCode* errorCode); 273 doStringPrepTest(const char* binFileName, const char* txtFileName, int32_t options, UErrorCode* errorCode){ 275 const char *testdatapath = loadTestData(errorCode); 289 profile = usprep_open(testdatapath, binFileName, errorCode); 291 if(*errorCode == U_FILE_ACCESS_ERROR) { 292 log_data_err("Failed to load %s data file. Error: %s \n", binFileName, u_errorName(*errorCode)); 294 } else if(U_FAILURE(*errorCode)){ 295 log_err("Failed to load %s data file. Error: %s \n", binFileName, u_errorName(*errorCode)); 304 parseMappings(filename,profile, TRUE,errorCode);
|
| cstrtest.c | 237 UErrorCode errorCode; 239 errorCode=U_ZERO_ERROR; 240 cnv=ucnv_open(NULL, &errorCode); 241 if(U_FAILURE(errorCode)) { 244 length=ucnv_fromUChars(cnv, cs, sizeof(cs), invariantUChars, -1, &errorCode); 245 if(U_FAILURE(errorCode)) { 246 log_err("ucnv_fromUChars(invariantUChars) failed - %s\n", u_errorName(errorCode)); 251 errorCode=U_ZERO_ERROR; 252 length=ucnv_toUChars(cnv, us, LENGTHOF(us), invariantChars, -1, &errorCode); 253 if(U_FAILURE(errorCode)) { [all...] |
| utransts.c | 184 UErrorCode errorCode; 186 errorCode=U_ZERO_ERROR; 187 uenum=utrans_openIDs(&errorCode); 188 if(U_FAILURE(errorCode)) { 189 log_err("utrans_openIDs() failed - %s\n", u_errorName(errorCode)); 193 count=uenum_count(uenum, &errorCode); 194 if(U_FAILURE(errorCode) || count<1) { 195 log_err("uenum_count(transliterator IDs)=%d - %s\n", count, u_errorName(errorCode)); 200 id=uenum_unext(uenum, &idLength, &errorCode); 201 if(U_FAILURE(errorCode)) { [all...] |
| /frameworks/opt/net/voip/src/java/android/net/sip/ |
| SipSession.java | 181 * @param errorCode error code defined in {@link SipErrorCode} 184 public void onError(SipSession session, int errorCode, 192 * @param errorCode error code defined in {@link SipErrorCode} 195 public void onCallChangeFailed(SipSession session, int errorCode, 220 * @param errorCode error code defined in {@link SipErrorCode} 223 public void onRegistrationFailed(SipSession session, int errorCode, 524 public void onCallChangeFailed(ISipSession session, int errorCode, 527 mListener.onCallChangeFailed(SipSession.this, errorCode, 533 public void onError(ISipSession session, int errorCode, String message) { 535 mListener.onError(SipSession.this, errorCode, message) [all...] |
| /external/icu4c/common/ |
| ucnv_ct.c | 169 _CompoundTextOpen(UConverter *cnv, UConverterLoadArgs *pArgs, UErrorCode *errorCode); 261 _CompoundTextOpen(UConverter *cnv, UConverterLoadArgs *pArgs, UErrorCode *errorCode){ 270 myConverterData->myConverterArray[COMPOUND_TEXT_SINGLE_1] = ucnv_loadSharedData("icu-internal-compound-s1", &stackPieces, &stackArgs, errorCode); 271 myConverterData->myConverterArray[COMPOUND_TEXT_SINGLE_2] = ucnv_loadSharedData("icu-internal-compound-s2", &stackPieces, &stackArgs, errorCode); 272 myConverterData->myConverterArray[COMPOUND_TEXT_SINGLE_3] = ucnv_loadSharedData("icu-internal-compound-s3", &stackPieces, &stackArgs, errorCode); 273 myConverterData->myConverterArray[COMPOUND_TEXT_DOUBLE_1] = ucnv_loadSharedData("icu-internal-compound-d1", &stackPieces, &stackArgs, errorCode); 274 myConverterData->myConverterArray[COMPOUND_TEXT_DOUBLE_2] = ucnv_loadSharedData("icu-internal-compound-d2", &stackPieces, &stackArgs, errorCode); 275 myConverterData->myConverterArray[COMPOUND_TEXT_DOUBLE_3] = ucnv_loadSharedData("icu-internal-compound-d3", &stackPieces, &stackArgs, errorCode); 276 myConverterData->myConverterArray[COMPOUND_TEXT_DOUBLE_4] = ucnv_loadSharedData("icu-internal-compound-d4", &stackPieces, &stackArgs, errorCode); 277 myConverterData->myConverterArray[COMPOUND_TEXT_DOUBLE_5] = ucnv_loadSharedData("icu-internal-compound-d5", &stackPieces, &stackArgs, errorCode); [all...] |
| uprops.cpp | 84 UErrorCode errorCode=U_ZERO_ERROR; 85 const Normalizer2Impl *impl=Normalizer2Factory::getNFCImpl(errorCode); 86 return U_SUCCESS(errorCode) && impl->isCompNo(impl->getNorm16(c)); 97 UErrorCode errorCode=U_ZERO_ERROR; 99 (UNormalizationMode)(which-UCHAR_NFD_INERT+UNORM_NFD), errorCode); 100 return U_SUCCESS(errorCode) && norm2->isInert(c); 111 UErrorCode errorCode=U_ZERO_ERROR; 112 const Normalizer2 *nfcNorm2=Normalizer2Factory::getNFCInstance(errorCode); 113 if(U_FAILURE(errorCode)) { 141 U_FOLD_CASE_DEFAULT, &errorCode); [all...] |
| unorm_it.c | 196 UErrorCode errorCode; 209 errorCode=U_ZERO_ERROR; 211 uiter_setState(iter, uni->states[limit], &errorCode); 212 if(U_FAILURE(errorCode)) { 219 room=unorm_next(iter, uni->chars+limit, capacity-limit, uni->mode, 0, TRUE, NULL, &errorCode); 220 if(errorCode==U_BUFFER_OVERFLOW_ERROR) { 236 errorCode=U_ZERO_ERROR; 237 uiter_setState(iter, uni->states[limit], &errorCode); 238 room=unorm_next(iter, uni->chars+limit, capacity-limit, uni->mode, 0, TRUE, NULL, &errorCode); 240 if(U_FAILURE(errorCode) || room==0) [all...] |
| /external/mdnsresponder/Clients/ |
| dns-sd.c | 341 DNSServiceErrorType errorCode, const char *replyDomain, void *context) 351 EXIT_IF_LIBDISPATCH_FATAL_ERROR(errorCode); 356 if (errorCode) 357 printf("Error code %d\n", errorCode); 417 static void DNSSD_API zonedata_resolve(DNSServiceRef sdref, const DNSServiceFlags flags, uint32_t ifIndex, DNSServiceErrorType errorCode, 434 if (errorCode) { printf("Error code %d\n", errorCode); return; } 477 static void DNSSD_API zonedata_browse(DNSServiceRef sdref, const DNSServiceFlags flags, uint32_t ifIndex, DNSServiceErrorType errorCode, 484 EXIT_IF_LIBDISPATCH_FATAL_ERROR(errorCode); 487 if (errorCode) { printf("Error code %d\n", errorCode); return; [all...] |
| /cts/tests/tests/net/src/android/net/wifi/cts/ |
| NsdManagerTest.java | 54 public void onRegistrationFailed(NsdServiceInfo serviceInfo, int errorCode) { 55 setEvent("onRegistrationFailed", errorCode); 59 public void onUnregistrationFailed(NsdServiceInfo serviceInfo, int errorCode) { 60 setEvent("onUnregistrationFailed", errorCode); 78 public void onStartDiscoveryFailed(String serviceType, int errorCode) { 79 setEvent("onStartDiscoveryFailed", errorCode); 83 public void onStopDiscoveryFailed(String serviceType, int errorCode) { 84 setEvent("onStopDiscoveryFailed", errorCode); 116 public void onResolveFailed(NsdServiceInfo serviceInfo, int errorCode) { 117 setEvent("onResolveFailed", errorCode); [all...] |
| /external/chromium_org/third_party/icu/source/test/cintltst/ |
| cstrtest.c | 237 UErrorCode errorCode; 239 errorCode=U_ZERO_ERROR; 240 cnv=ucnv_open(NULL, &errorCode); 241 if(U_FAILURE(errorCode)) { 244 length=ucnv_fromUChars(cnv, cs, sizeof(cs), invariantUChars, -1, &errorCode); 245 if(U_FAILURE(errorCode)) { 246 log_err("ucnv_fromUChars(invariantUChars) failed - %s\n", u_errorName(errorCode)); 251 errorCode=U_ZERO_ERROR; 252 length=ucnv_toUChars(cnv, us, LENGTHOF(us), invariantChars, -1, &errorCode); 253 if(U_FAILURE(errorCode)) { [all...] |
| utransts.c | 184 UErrorCode errorCode; 186 errorCode=U_ZERO_ERROR; 187 uenum=utrans_openIDs(&errorCode); 188 if(U_FAILURE(errorCode)) { 189 log_err("utrans_openIDs() failed - %s\n", u_errorName(errorCode)); 193 count=uenum_count(uenum, &errorCode); 194 if(U_FAILURE(errorCode) || count<1) { 195 log_err("uenum_count(transliterator IDs)=%d - %s\n", count, u_errorName(errorCode)); 200 id=uenum_unext(uenum, &idLength, &errorCode); 201 if(U_FAILURE(errorCode)) { [all...] |
| /external/chromium_org/third_party/icu/source/test/perf/utfperf/ |
| utfperf.cpp | 125 errorCode(U_ZERO_ERROR) { 126 cnv=ucnv_open(testcase.charset, &errorCode); 127 if (U_FAILURE(errorCode)) { 128 fprintf(stderr, "error opening converter for \"%s\" - %s\n", testcase.charset, u_errorName(errorCode)); 130 ucnv_setFromUCallBack(cnv, fromUCallback, NULL, NULL, NULL, &errorCode); 134 if(U_SUCCESS(errorCode)) { 146 UErrorCode errorCode; 157 if (U_SUCCESS(t->errorCode)){ 224 if (U_SUCCESS(t->errorCode)){ 269 utf8Cnv=ucnv_open("UTF-8", &errorCode); [all...] |
| /external/icu4c/test/perf/utfperf/ |
| utfperf.cpp | 125 errorCode(U_ZERO_ERROR) { 126 cnv=ucnv_open(testcase.charset, &errorCode); 127 if (U_FAILURE(errorCode)) { 128 fprintf(stderr, "error opening converter for \"%s\" - %s\n", testcase.charset, u_errorName(errorCode)); 130 ucnv_setFromUCallBack(cnv, fromUCallback, NULL, NULL, NULL, &errorCode); 134 if(U_SUCCESS(errorCode)) { 146 UErrorCode errorCode; 157 if (U_SUCCESS(t->errorCode)){ 224 if (U_SUCCESS(t->errorCode)){ 269 utf8Cnv=ucnv_open("UTF-8", &errorCode); [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/html/ |
| MediaKeyEvent.h | 42 RefPtr<MediaKeyError> errorCode; 67 MediaKeyError* errorCode() const { return m_errorCode.get(); }
|
| MediaKeyEvent.idl | 35 [InitializedByEventConstructor] readonly attribute MediaKeyError errorCode;
|
| /external/chromium_org/third_party/WebKit/Source/core/platform/network/ |
| ResourceError.cpp | 68 if (a.errorCode() != b.errorCode())
|
| /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/ |
| renderer9_utils.h | 58 inline bool isDeviceLostError(HRESULT errorCode) 60 switch (errorCode)
|
| /external/lzma/CPP/7zip/Common/ |
| InBuffer.h | 13 CInBufferException(HRESULT errorCode): CSystemException(errorCode) {}
32 HRESULT ErrorCode;
|
| OutBuffer.h | 13 COutBufferException(HRESULT errorCode): CSystemException(errorCode) {}
33 HRESULT ErrorCode;
|
| /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/ |
| TokenMgrError.java | 49 int errorCode; 142 errorCode = reason;
|
| /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/ |
| TokenMgrError.java | 49 int errorCode; 142 errorCode = reason;
|
| /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/ |
| TokenMgrError.java | 49 int errorCode; 142 errorCode = reason;
|
| /external/chromium_org/third_party/icu/source/test/intltest/ |
| bidiconf.cpp | 24 #include "unicode/errorcode.h" 82 IcuTestErrorCode errorCode(*this, "getUnidataPath"); 100 strcpy(path, loadTestData(errorCode)); 277 IcuTestErrorCode errorCode(*this, "TestBidiTest"); 278 const char *sourceTestDataPath=getSourceTestData(errorCode); 279 if(errorCode.logIfFailureAndReset("unable to find the source/test/testdata " 293 NULL, NULL, errorCode); 294 if(errorCode.logIfFailureAndReset("ubidi_setClassCallback()")) { 347 paraLevels[i], NULL, errorCode); 348 const UBiDiLevel *actualLevels=ubidi_getLevels(ubidi.getAlias(), errorCode); [all...] |
| /external/icu4c/test/intltest/ |
| bidiconf.cpp | 24 #include "unicode/errorcode.h" 82 IcuTestErrorCode errorCode(*this, "getUnidataPath"); 100 strcpy(path, loadTestData(errorCode)); 277 IcuTestErrorCode errorCode(*this, "TestBidiTest"); 278 const char *sourceTestDataPath=getSourceTestData(errorCode); 279 if(errorCode.logIfFailureAndReset("unable to find the source/test/testdata " 293 NULL, NULL, errorCode); 294 if(errorCode.logIfFailureAndReset("ubidi_setClassCallback()")) { 347 paraLevels[i], NULL, errorCode); 348 const UBiDiLevel *actualLevels=ubidi_getLevels(ubidi.getAlias(), errorCode); [all...] |
| /external/chromium_org/third_party/icu/source/common/ |
| unorm_it.c | 195 UErrorCode errorCode; 208 errorCode=U_ZERO_ERROR; 210 uiter_setState(iter, uni->states[limit], &errorCode); 211 if(U_FAILURE(errorCode)) { 218 room=unorm_next(iter, uni->chars+limit, capacity-limit, uni->mode, 0, TRUE, NULL, &errorCode); 219 if(errorCode==U_BUFFER_OVERFLOW_ERROR) { 235 errorCode=U_ZERO_ERROR; 236 uiter_setState(iter, uni->states[limit], &errorCode); 237 room=unorm_next(iter, uni->chars+limit, capacity-limit, uni->mode, 0, TRUE, NULL, &errorCode); 239 if(U_FAILURE(errorCode) || room==0) [all...] |