HomeSort by relevance Sort by last modified time
    Searched defs:errorCode (Results 201 - 225 of 302) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SFTPv3Client.java 411 int errorCode = tr.readUINT32();
414 throw new SFTPException(errorMessage, errorCode);
450 int errorCode = tr.readUINT32();
453 throw new SFTPException(errorMessage, errorCode);
533 int errorCode = tr.readUINT32();
536 throw new SFTPException(errorMessage, errorCode);
559 int errorCode = tr.readUINT32();
561 if (errorCode == ErrorCodes.SSH_FX_OK)
567 throw new SFTPException(errorMessage, errorCode);
695 int errorCode = tr.readUINT32()
    [all...]
  /external/icu4c/common/
normalizer2impl.cpp 38 UBool ReorderingBuffer::init(int32_t destCapacity, UErrorCode &errorCode) {
43 errorCode=U_MEMORY_ALLOCATION_ERROR;
70 UBool ReorderingBuffer::appendSupplementary(UChar32 c, uint8_t cc, UErrorCode &errorCode) {
71 if(remainingCapacity<2 && !resize(2, errorCode)) {
91 UErrorCode &errorCode) {
95 if(remainingCapacity<length && !resize(length, errorCode)) {
121 append(c, leadCC, errorCode);
127 UBool ReorderingBuffer::appendZeroCC(UChar32 c, UErrorCode &errorCode) {
129 if(remainingCapacity<cpLength && !resize(cpLength, errorCode)) {
145 UBool ReorderingBuffer::appendZeroCC(const UChar *s, const UChar *sLimit, UErrorCode &errorCode) {
    [all...]
ubidiimp.h 185 UErrorCode errorCode; /* for eventual memory shortage */
ucnv.c 323 UErrorCode errorCode = U_ZERO_ERROR;
334 ucnv_getName(converter, &errorCode), converter, converter->isCopyLocal);
353 errorCode = U_ZERO_ERROR;
354 converter->fromCharErrorBehaviour(converter->toUContext, &toUArgs, NULL, 0, UCNV_CLOSE, &errorCode);
368 errorCode = U_ZERO_ERROR;
369 converter->fromUCharErrorBehaviour(converter->fromUContext, &fromUArgs, NULL, 0, 0, UCNV_CLOSE, &errorCode);
571 UErrorCode errorCode;
585 errorCode = U_ZERO_ERROR;
586 converter->fromCharErrorBehaviour(converter->toUContext, &toUArgs, NULL, 0, UCNV_RESET, &errorCode);
600 errorCode = U_ZERO_ERROR
    [all...]
unistr.cpp 431 UErrorCode errorCode = U_ZERO_ERROR;
436 &errorCode);
438 if(errorCode == U_BUFFER_OVERFLOW_ERROR) {
441 } else if(U_FAILURE(errorCode)) {
790 UErrorCode &errorCode) const {
792 if(U_SUCCESS(errorCode)) {
794 errorCode=U_ILLEGAL_ARGUMENT_ERROR;
800 return u_terminateUChars(dest, destCapacity, len, &errorCode);
845 UErrorCode errorCode = U_ZERO_ERROR;
850 &errorCode);
    [all...]
  /external/icu4c/i18n/
alphaindex.cpp 65 UErrorCode &errorCode) {
66 if (U_FAILURE(errorCode)) { return NULL; }
72 errorCode = U_MEMORY_ALLOCATION_ERROR;
102 UErrorCode errorCode = U_ZERO_ERROR;
103 UCollationResult cmp = coll.compare(s, *si, errorCode);
144 UErrorCode &errorCode) {
152 collatorPrimaryOnly.compare(name, bucket->lowerBoundary_, errorCode);
191 const UnicodeString &name, UErrorCode &errorCode) const {
192 return buckets_->getBucketIndex(name, *collatorPrimaryOnly_, errorCode);
254 AlphabeticIndex::ImmutableIndex *AlphabeticIndex::buildImmutableIndex(UErrorCode &errorCode) {
    [all...]
  /external/icu4c/test/cintltst/
callcoll.c 150 UErrorCode errorCode = U_ZERO_ERROR;
165 if(ucol_getAttribute(coll, UCOL_CASE_LEVEL, &errorCode) == UCOL_ON && strength == UCOL_SECONDARY && doneCase == FALSE) {
167 } else if(ucol_getAttribute(coll, UCOL_CASE_LEVEL, &errorCode) == UCOL_OFF || doneCase == TRUE || strength != UCOL_SECONDARY) {
173 if(strength == UCOL_QUATERNARY && ucol_getAttribute(coll, UCOL_ALTERNATE_HANDLING, &errorCode) == UCOL_NON_IGNORABLE) {
    [all...]
cldrtest.c 75 UErrorCode errorCode = U_ZERO_ERROR;
84 errorCode = U_ZERO_ERROR;
86 subBundle = ures_getNextResource(currentBundle, NULL, &errorCode);
87 if (U_FAILURE(errorCode)) {
88 log_err("Can't open a resource for lnocale %s. Error: %s\n", locale, u_errorName(errorCode));
94 subRootBundle = ures_getByKey(root, subBundleKey, NULL, &errorCode);
95 if (U_FAILURE(errorCode)) {
120 const int32_t *subRootBundleArr = ures_getIntVector(subRootBundle, &minSize, &errorCode);
121 const int32_t *subBundleArr = ures_getIntVector(subBundle, &subBundleSize, &errorCode);
156 UResourceBundle *subSubBundle = ures_getByIndex(subBundle, 0, NULL, &errorCode);
    [all...]
cnormtst.c 549 UErrorCode errorCode;
554 errorCode=U_ZERO_ERROR;
555 if(!unorm_isNormalized(notNFC[0]+2, 1, UNORM_NFC, &errorCode) || U_FAILURE(errorCode)) {
556 log_data_err("error: !isNormalized(<U+0300>, NFC) (%s) - (Are you missing data?)\n", u_errorName(errorCode));
560 errorCode=U_TRUNCATED_CHAR_FOUND;
561 (void)unorm_isNormalized(notNFC[0]+2, 1, UNORM_NFC, &errorCode);
562 if(errorCode!=U_TRUNCATED_CHAR_FOUND) {
563 log_err("error: isNormalized(U_TRUNCATED_CHAR_FOUND) changed the error code to %s\n", u_errorName(errorCode));
567 errorCode=U_ZERO_ERROR
    [all...]
custrtst.c     [all...]
ncnvtst.c     [all...]
  /external/icu4c/test/intltest/
tmsgfmt.cpp 630 UErrorCode errorCode = U_ZERO_ERROR;
634 errorCode);
635 if (U_FAILURE(errorCode)) {
636 errln("MessageFormat constructor failed - %s\n", u_errorName(errorCode));
657 dataerrln( "%serror while formatting with ErrorCode as %s" ,errMsg, u_errorName(status) );
673 dataerrln( "%serror while constructing with ErrorCode as %s" ,errMsg, u_errorName(status) );
    [all...]
tstnorm.cpp 12 #include "unicode/errorcode.h"
802 UErrorCode errorCode;
821 errorCode=U_ZERO_ERROR;
823 r=Normalizer::concatenate(left, right, result, mode, 0, errorCode);
824 if(U_FAILURE(errorCode) || /*result!=r ||*/ result!=expect) {
826 UnicodeString(u_errorName(errorCode))+", result==expect: expected: "+
835 errorCode=U_UNEXPECTED_TOKEN;
836 r=Normalizer::concatenate(left, right, result, mode, 0, errorCode);
837 if(errorCode!=U_UNEXPECTED_TOKEN || result!=r || !result.isBogus()) {
842 errorCode=U_ZERO_ERROR
    [all...]
ustrtest.cpp 229 UErrorCode errorCode=U_ZERO_ERROR;
231 cnv=ucnv_open("ISO-8859-1", &errorCode);
232 UnicodeString v(cs, -1, cnv, errorCode);
235 errln("UnicodeString(const char *, length, cnv, errorCode) does not work with length==-1");
542 UErrorCode errorCode;
545 errorCode=U_ZERO_ERROR;
546 length=s.extract((UChar *)NULL, 0, errorCode);
547 if(errorCode!=U_BUFFER_OVERFLOW_ERROR || length!=s.length()) {
548 errln("UnicodeString.extract(NULL, 0)==%d (%s) expected %d (U_BUFFER_OVERFLOW_ERROR)", length, s.length(), u_errorName(errorCode));
551 errorCode=U_ZERO_ERROR
    [all...]
  /external/icu4c/tools/ctestfw/
ctest.c 946 UErrorCode errorCode = U_ZERO_ERROR;
968 u_setMemoryFunctions(NULL, ctest_libMalloc, ctest_libRealloc, ctest_libFree, &errorCode);
969 if (U_FAILURE(errorCode)) {
970 printf("u_setMemoryFunctions returned %s\n", u_errorName(errorCode));
    [all...]
  /external/icu4c/tools/gencnval/
gencnval.c 224 UErrorCode errorCode=U_ZERO_ERROR;
293 options[COPYRIGHT].doesOccur ? U_COPYRIGHT_STRING : NULL, &errorCode);
294 if(U_FAILURE(errorCode)) {
295 fprintf(stderr, "gencnval: unable to open output file - error %s\n", u_errorName(errorCode));
296 exit(errorCode);
303 udata_finish(out, &errorCode);
304 if(U_FAILURE(errorCode)) {
305 fprintf(stderr, "gencnval: error finishing output file - %s\n", u_errorName(errorCode));
306 exit(errorCode);
    [all...]
  /external/icu4c/tools/gennorm2/
n2builder.cpp 29 #include "unicode/errorcode.h"
172 Normalizer2DataBuilder::Normalizer2DataBuilder(UErrorCode &errorCode) :
175 normTrie=utrie2_open(0, 0, &errorCode);
241 IcuToolErrorCode errorCode("gennorm2/createNorm()");
242 utrie2_set32(normTrie, c, (uint32_t)(p-norms), errorCode);
281 UErrorCode errorCode=U_ZERO_ERROR;
282 u_strToUTF8(NULL, 0, NULL, s.getBuffer(), s.length(), &errorCode);
283 return U_SUCCESS(errorCode) || errorCode==U_BUFFER_OVERFLOW_ERROR;
378 IcuToolErrorCode errorCode("gennorm2/addComposition()")
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/
PacketParserUtils.java 725 String errorCode = "-1";
734 errorCode = parser.getAttributeValue("", "code");
777 return new XMPPError(Integer.parseInt(errorCode), errorType, condition, message, extensions);
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
MessageUtils.java 382 int errorCode = cursor.getInt(MessageListAdapter.COLUMN_SMS_ERROR_CODE);
383 if (errorCode != 0) {
386 .append(errorCode);
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSettingsForSetupWizardXL.java 680 final int errorCode = intent.getIntExtra(WifiManager.EXTRA_SUPPLICANT_ERROR, -1);
681 if (errorCode == WifiManager.ERROR_AUTHENTICATING) {
  /external/chromium_org/chrome/browser/ui/webui/print_preview/
print_preview_handler.cc 792 UErrorCode errorCode = U_ZERO_ERROR;
794 UMeasurementSystem system = ulocdata_getMeasurementSystem(locale, &errorCode);
795 if (errorCode > U_ZERO_ERROR || system == UMS_LIMIT)
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ubidi.c 121 UErrorCode errorCode=U_ZERO_ERROR;
122 return ubidi_openSized(0, 0, &errorCode);
    [all...]
unames.c     [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
citertst.c 1035 UErrorCode errorCode = U_ZERO_ERROR;
    [all...]
creststn.c     [all...]

Completed in 939 milliseconds

1 2 3 4 5 6 7 891011>>