HomeSort by relevance Sort by last modified time
    Searched refs:errorCode (Results 451 - 475 of 973) sorted by null

<<11121314151617181920>>

  /external/icu/icu4c/source/common/
ucnv_bld.cpp     [all...]
uresimp.h 231 icu::ResourceSink &sink, UErrorCode &errorCode);
ucnv.c 328 UErrorCode errorCode = U_ZERO_ERROR;
339 ucnv_getName(converter, &errorCode), converter, converter->isCopyLocal);
358 errorCode = U_ZERO_ERROR;
359 converter->fromCharErrorBehaviour(converter->toUContext, &toUArgs, NULL, 0, UCNV_CLOSE, &errorCode);
373 errorCode = U_ZERO_ERROR;
374 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...]
  /external/icu/icu4c/source/i18n/unicode/
measunit.h 109 * @param errorCode ICU error code.
116 UErrorCode &errorCode);
126 * @param errorCode ICU error code.
134 UErrorCode &errorCode);
140 * @param errorCode ICU error code.
144 static StringEnumeration* getAvailableTypes(UErrorCode &errorCode);
    [all...]
choicfmt.h 500 UErrorCode &errorCode);
coleitr.h 356 static UHashtable *computeMaxExpansions(const CollationData *data, UErrorCode &errorCode);
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreRSACipherSpi.java 417 int errorCode = getKeyStore().getKeyCharacteristics(
419 if (errorCode != KeyStore.NO_ERROR) {
421 keystoreKey.getAlias(), keystoreKey.getUid(), errorCode);
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecMessageValidator.java 38 * @return errorCode errorCode can be {@link #OK}, {@link #ERROR_PARAMETER} or
221 int errorCode = info.parameterValidator.isValid(message.getParams());
222 if (errorCode != OK) {
224 return errorCode;
HdmiCecController.java 599 int errorCode = SendMessageResult.SUCCESS;
601 errorCode = nativeSendCecCommand(mNativePtr, cecMessage.getSource(),
603 if (errorCode == SendMessageResult.SUCCESS) {
608 final int finalError = errorCode;
610 Slog.w(TAG, "Failed to send " + cecMessage + " with errorCode=" + finalError);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
PlaybackBaseControlGlue.java 135 public void onError(PlayerAdapter wrapper, int errorCode, String errorMessage) {
137 mErrorCode = errorCode;
140 mPlayerCallback.onError(errorCode, errorMessage);
  /external/icu/icu4c/source/tools/gencnval/
gencnval.c 229 UErrorCode errorCode=U_ZERO_ERROR;
303 options[COPYRIGHT].doesOccur ? U_COPYRIGHT_STRING : NULL, &errorCode);
304 if(U_FAILURE(errorCode)) {
305 fprintf(stderr, "gencnval: unable to open output file - error %s\n", u_errorName(errorCode));
306 exit(errorCode);
313 udata_finish(out, &errorCode);
314 if(U_FAILURE(errorCode)) {
315 fprintf(stderr, "gencnval: error finishing output file - %s\n", u_errorName(errorCode));
316 exit(errorCode);
    [all...]
  /external/icu/icu4c/source/common/unicode/
ucurr.h 325 * @param errorCode
336 UErrorCode* errorCode);
  /external/icu/icu4c/source/i18n/
collationkeys.h 115 UBool preflight, UErrorCode &errorCode);
  /external/icu/icu4c/source/test/intltest/
caltest.h 172 UErrorCode& errorCode);
intltest.cpp 1209 UErrorCode errorCode = U_ZERO_ERROR;
    [all...]
uobjtest.cpp 587 UErrorCode errorCode = U_ZERO_ERROR;
588 NumberFormat *nf = NumberFormat::createInstance("de", errorCode);
589 if (U_FAILURE(errorCode)) {
590 dataerrln("NumberFormat::createInstance(de) failed - %s", u_errorName(errorCode));
  /external/icu/icu4c/source/tools/gennorm2/
n2builder.h 26 #include "unicode/errorcode.h"
43 Normalizer2DataBuilder(UErrorCode &errorCode);
  /external/icu/icu4c/source/tools/genrb/
parse.cpp 686 const char *&errorReason, UErrorCode &errorCode);
699 const char *& /*errorReason*/, UErrorCode &errorCode) {
700 CharString filename(localeID, errorCode);
706 filename.append(".txt", errorCode);
707 if (U_FAILURE(errorCode)) {
724 inputDirBuf.append(dir, errorCode);
742 openFileName.append(inputDir, dirlen, errorCode);
744 openFileName.append(U_FILE_SEP_CHAR, errorCode);
748 openFileName.append(filename, errorCode);
749 if(U_FAILURE(errorCode)) {
    [all...]
  /frameworks/base/core/java/android/speech/tts/
AudioPlaybackQueueItem.java 126 void stop(int errorCode) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
UiccSmsController.java 423 private void sendErrorInPendingIntent(@Nullable PendingIntent intent, int errorCode) {
426 intent.send(errorCode);
432 private void sendErrorInPendingIntents(List<PendingIntent> intents, int errorCode) {
434 sendErrorInPendingIntent(intent, errorCode);
  /packages/apps/Messaging/src/com/android/messaging/receiver/
SmsReceiver.java 177 private static final String EXTRA_ERROR_CODE = "errorCode";
189 final int errorCode = intent.getIntExtra(EXTRA_ERROR_CODE, 0);
193 deliverSmsMessages(context, subId, errorCode, messages);
201 final int errorCode, final android.telephony.SmsMessage[] messages) {
203 MmsUtils.parseReceivedSmsMessage(context, messages, errorCode);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEvent.java 279 public int errorCode;
  /system/chre/chre_api/include/chre_api/chre/
wwan.h 395 uint8_t errorCode;
  /system/vold/
Keymaster.h 32 using ::keystore::ErrorCode;
49 explicit operator bool() { return mError == ErrorCode::OK; }
50 ErrorCode errorCode() { return mError; }
65 mError {ErrorCode::UNKNOWN_ERROR} {}
71 rhs.mError = ErrorCode::UNKNOWN_ERROR;
78 : mDevice{d}, mOpHandle{h}, mError {ErrorCode::OK} {}
79 KeymasterOperation(ErrorCode error)
84 ErrorCode mError;
  /external/icu/icu4c/source/test/cintltst/
custrtst.c     [all...]

Completed in 1109 milliseconds

<<11121314151617181920>>