HomeSort by relevance Sort by last modified time
    Searched full:errorcode (Results 201 - 225 of 1343) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/icu/icu4c/source/tools/toolutil/
package.cpp 285 UErrorCode errorCode;
290 errorCode=U_ZERO_ERROR;
295 uprv_mkdir(filename, &errorCode);
296 if(U_FAILURE(errorCode)) {
310 UErrorCode errorCode;
355 errorCode=U_ZERO_ERROR;
356 typeEnum=getTypeEnumForInputData(data, length, &errorCode);
357 if(typeEnum<0 || U_FAILURE(errorCode)) {
450 UErrorCode errorCode;
470 errorCode=U_ZERO_ERROR
    [all...]
xmlparser.cpp 152 UXMLParser::createParser(UErrorCode &errorCode) {
153 if (U_FAILURE(errorCode)) {
156 return new UXMLParser(errorCode);
163 UXMLParser::parseFile(const char *filename, UErrorCode &errorCode) {
173 if(U_FAILURE(errorCode)) {
179 errorCode=U_FILE_ACCESS_ERROR;
198 charset=ucnv_detectUnicodeSignature(bytes, bytesLength, NULL, &errorCode);
199 if(U_SUCCESS(errorCode) && charset!=NULL) {
201 cnv=ucnv_open(charset, &errorCode);
204 cnv=ucnv_open("ISO-8859-1", &errorCode);
    [all...]
  /external/icu/icu4c/source/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...]
unistr_titlecase_brkiter.cpp 73 UErrorCode errorCode=U_ZERO_ERROR;
74 bi=BreakIterator::createWordInstance(locale, errorCode);
75 if(U_FAILURE(errorCode)) {
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_DeblockChroma_I.c 82 OMXResult errorCode;
94 errorCode = omxVCM4P10_FilterDeblockingChroma_VerEdge_I(
97 armRetArgErrIf(errorCode != OMX_Sts_NoErr, errorCode)
99 errorCode = omxVCM4P10_FilterDeblockingChroma_HorEdge_I(
102 return errorCode;
omxVCM4P10_DeblockLuma_I.c 85 OMXResult errorCode;
97 errorCode = omxVCM4P10_FilterDeblockingLuma_VerEdge_I(
100 armRetArgErrIf(errorCode != OMX_Sts_NoErr, errorCode)
102 errorCode = omxVCM4P10_FilterDeblockingLuma_HorEdge_I(
105 return errorCode;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_DeblockChroma_I.c 82 OMXResult errorCode;
94 errorCode = omxVCM4P10_FilterDeblockingChroma_VerEdge_I(
97 armRetArgErrIf(errorCode != OMX_Sts_NoErr, errorCode)
99 errorCode = omxVCM4P10_FilterDeblockingChroma_HorEdge_I(
102 return errorCode;
omxVCM4P10_DeblockLuma_I.c 85 OMXResult errorCode;
97 errorCode = omxVCM4P10_FilterDeblockingLuma_VerEdge_I(
100 armRetArgErrIf(errorCode != OMX_Sts_NoErr, errorCode)
102 errorCode = omxVCM4P10_FilterDeblockingLuma_HorEdge_I(
105 return errorCode;
  /frameworks/opt/net/voip/src/java/android/net/sip/
ISipSessionListener.aidl 87 * @param errorCode error code defined in {@link SipErrorCode}
90 void onError(in ISipSession session, int errorCode, String errorMessage);
96 * @param errorCode error code defined in {@link SipErrorCode}
99 void onCallChangeFailed(in ISipSession session, int errorCode,
121 * @param errorCode error code defined in {@link SipErrorCode}
124 void onRegistrationFailed(in ISipSession session, int errorCode,
  /system/core/fastbootd/
network_discovery.c 49 static void reg_reply(DNSServiceRef sdref, const DNSServiceFlags flags, DNSServiceErrorType errorCode,
55 if (errorCode == kDNSServiceErr_ServiceNotRunning) {
56 fprintf(stderr, "Error code %d\n", errorCode);
62 if (errorCode == kDNSServiceErr_NoError)
68 if (errorCode == kDNSServiceErr_NameConflict)
71 printf("Error %d\n", errorCode);
  /external/chromium_org/third_party/icu/source/tools/toolutil/
xmlparser.cpp 152 UXMLParser::createParser(UErrorCode &errorCode) {
153 if (U_FAILURE(errorCode)) {
156 return new UXMLParser(errorCode);
163 UXMLParser::parseFile(const char *filename, UErrorCode &errorCode) {
173 if(U_FAILURE(errorCode)) {
179 errorCode=U_FILE_ACCESS_ERROR;
198 charset=ucnv_detectUnicodeSignature(bytes, bytesLength, NULL, &errorCode);
199 if(U_SUCCESS(errorCode) && charset!=NULL) {
201 cnv=ucnv_open(charset, &errorCode);
204 cnv=ucnv_open("ISO-8859-1", &errorCode);
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwWebContentsObserver.java 34 boolean isMainFrame, int errorCode, String description, String failingUrl) {
39 if (errorCode != NetError.ERR_ABORTED) {
47 ErrorCodeConversionHelper.convertErrorCode(errorCode), description,
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
TestWebContentsObserver.java 68 int errorCode, String description, String failingUrl) {
69 super.didFailLoad(isProvisionalLoad, isMainFrame, errorCode, description, failingUrl);
70 mOnReceivedErrorHelper.notifyCalled(errorCode, description, failingUrl);
  /external/chromium_org/third_party/icu/source/common/
unistr_titlecase_brkiter.cpp 73 UErrorCode errorCode=U_ZERO_ERROR;
74 bi=BreakIterator::createWordInstance(locale, errorCode);
75 if(U_FAILURE(errorCode)) {
uts46.cpp 74 IDNAInfo &info, UErrorCode &errorCode) const {
75 if(U_SUCCESS(errorCode)) {
78 info, errorCode).toUTF8(dest);
84 IDNAInfo &info, UErrorCode &errorCode) const {
85 if(U_SUCCESS(errorCode)) {
88 info, errorCode).toUTF8(dest);
94 IDNAInfo &info, UErrorCode &errorCode) const {
95 if(U_SUCCESS(errorCode)) {
98 info, errorCode).toUTF8(dest);
104 IDNAInfo &info, UErrorCode &errorCode) const
    [all...]
  /external/chromium_org/third_party/icu/source/samples/props/
props.cpp 28 UErrorCode errorCode;
31 errorCode=U_ZERO_ERROR;
32 u_charName(codePoint, U_UNICODE_CHAR_NAME, buffer, sizeof(buffer), &errorCode);
  /external/chromium_org/third_party/icu/source/test/intltest/
ucharstrietest.cpp 85 IcuTestErrorCode errorCode(*this, "UCharsTrieTest()");
86 builder_=new UCharsTrieBuilder(errorCode);
123 IcuTestErrorCode errorCode(*this, "TestBuilder()");
124 delete builder_->build(USTRINGTRIE_BUILD_FAST, errorCode);
125 if(errorCode.reset()!=U_INDEX_OUTOFBOUNDS_ERROR) {
130 builder_->add("=", 0, errorCode).add("=", 1, errorCode).build(USTRINGTRIE_BUILD_FAST, errorCode);
131 if(errorCode.reset()!=U_ILLEGAL_ARGUMENT_ERROR) {
369 IcuTestErrorCode errorCode(*this, "buildLargeTrie()")
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gentest/
gentest.c 65 UErrorCode errorCode = U_ZERO_ERROR;
96 createData(options[2].value, &errorCode);
98 return U_FAILURE(errorCode);
103 createData(const char* outputDirectory, UErrorCode *errorCode) {
112 U_COPYRIGHT_STRING, errorCode);
113 if(U_FAILURE(*errorCode)) {
114 fprintf(stderr, "gentest: unable to create data memory, %s\n", u_errorName(*errorCode));
115 exit(*errorCode);
124 dataLength=udata_finish(pData, errorCode);
125 if(U_FAILURE(*errorCode)) {
    [all...]
  /external/icu/icu4c/source/i18n/
ucol_imp.h 65 UErrorCode &errorCode);
67 UErrorCode &errorCode);
71 static void loadRootRules(UErrorCode &errorCode);
  /external/icu/icu4c/source/samples/props/
props.cpp 28 UErrorCode errorCode;
31 errorCode=U_ZERO_ERROR;
32 u_charName(codePoint, U_UNICODE_CHAR_NAME, buffer, sizeof(buffer), &errorCode);
  /external/icu/icu4c/source/test/intltest/
ucharstrietest.cpp 85 IcuTestErrorCode errorCode(*this, "UCharsTrieTest()");
86 builder_=new UCharsTrieBuilder(errorCode);
123 IcuTestErrorCode errorCode(*this, "TestBuilder()");
124 delete builder_->build(USTRINGTRIE_BUILD_FAST, errorCode);
125 if(errorCode.reset()!=U_INDEX_OUTOFBOUNDS_ERROR) {
130 builder_->add("=", 0, errorCode).add("=", 1, errorCode).build(USTRINGTRIE_BUILD_FAST, errorCode);
131 if(errorCode.reset()!=U_ILLEGAL_ARGUMENT_ERROR) {
369 IcuTestErrorCode errorCode(*this, "buildLargeTrie()")
    [all...]
  /external/icu/icu4c/source/tools/gentest/
gentest.c 65 UErrorCode errorCode = U_ZERO_ERROR;
96 createData(options[2].value, &errorCode);
98 return U_FAILURE(errorCode);
103 createData(const char* outputDirectory, UErrorCode *errorCode) {
112 U_COPYRIGHT_STRING, errorCode);
113 if(U_FAILURE(*errorCode)) {
114 fprintf(stderr, "gentest: unable to create data memory, %s\n", u_errorName(*errorCode));
115 exit(*errorCode);
124 dataLength=udata_finish(pData, errorCode);
125 if(U_FAILURE(*errorCode)) {
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
sandbox_bpf.cc 35 #include "sandbox/linux/seccomp-bpf/errorcode.h"
97 virtual ErrorCode EvaluateSyscall(SandboxBPF*, int sysnum) const OVERRIDE {
101 return ErrorCode(EPERM);
104 return ErrorCode(ErrorCode::ERR_ALLOWED);
107 return ErrorCode(EINVAL);
124 virtual ErrorCode EvaluateSyscall(SandboxBPF*, int sysnum) const OVERRIDE {
126 return ErrorCode(ErrorCode::ERR_ALLOWED);
163 bool IsDenied(const ErrorCode& code)
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
errorcodes.js 27 * errorCode: ErrorCodes,
  /external/chromium_org/remoting/protocol/
errors.h 15 enum ErrorCode {

Completed in 1524 milliseconds

1 2 3 4 5 6 7 891011>>