Searched defs:errorCode (Results 1 - 25 of 202) sorted by relevance

123456789

/external/webkit/Source/WebCore/platform/network/brew/
H A DSocketStreamError.h41 explicit SocketStreamError(int errorCode) argument
42 : SocketStreamErrorBase(errorCode)
/external/webkit/Source/WebCore/platform/network/chromium/
H A DSocketStreamError.h41 explicit SocketStreamError(int errorCode) argument
42 : SocketStreamErrorBase(errorCode) { }
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/curl/
H A DSocketStreamError.h41 explicit SocketStreamError(int errorCode) argument
42 : SocketStreamErrorBase(errorCode)
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/qt/
H A DSocketStreamError.h41 explicit SocketStreamError(int errorCode) argument
42 : SocketStreamErrorBase(errorCode)
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/soup/
H A DSocketStreamError.h41 explicit SocketStreamError(int errorCode) argument
42 : SocketStreamErrorBase(errorCode)
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/win/
H A DSocketStreamError.h41 explicit SocketStreamError(int errorCode) argument
42 : SocketStreamErrorBase(errorCode)
H A DResourceError.h38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/android/
H A DResourceError.h38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) { }
/external/webkit/Source/WebCore/platform/network/cf/
H A DSocketStreamError.h41 explicit SocketStreamError(int errorCode) argument
42 : SocketStreamErrorBase(errorCode)
45 SocketStreamError(int errorCode, const String& failingURL, const String& localizedDescription) argument
46 : SocketStreamErrorBase(errorCode, failingURL, localizedDescription)
H A DResourceError.h52 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
53 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
65 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef certificate);
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DXResourceBundleBase.java36 * @param errorCode Error code
40 abstract public String getMessageKey(int errorCode); argument
45 * @param errorCode Error code
49 abstract public String getWarningKey(int errorCode); argument
/external/icu4c/common/
H A Dcpputils.h89 uprv_checkCanGetBuffer(const U_NAMESPACE_QUALIFIER UnicodeString &s, UErrorCode &errorCode) { argument
90 if(U_SUCCESS(errorCode) && s.isBogus()) {
91 errorCode=U_ILLEGAL_ARGUMENT_ERROR;
H A Dmutex.cpp22 UErrorCode &errorCode) {
24 if(U_FAILURE(errorCode)) {
39 instance=instantiator(context, errorCode);
42 if(fInstance==NULL && U_SUCCESS(errorCode)) {
72 UErrorCode &errorCode) {
74 if(U_FAILURE(errorCode)) {
93 errorCode=localErrorCode;
100 instance=instantiator(context, errorCode);
103 if(fInstance==NULL && U_SUCCESS(errorCode)) {
111 fErrorCode=errorCode;
20 getInstance(InstantiatorFn *instantiator, const void *context, void *&duplicate, UErrorCode &errorCode) argument
70 getInstance(InstantiatorFn *instantiator, const void *context, void *&duplicate, UErrorCode &errorCode) argument
[all...]
H A Dcharstr.cpp22 CharString &CharString::copyFrom(const CharString &s, UErrorCode &errorCode) { argument
23 if(U_SUCCESS(errorCode) && this!=&s && ensureCapacity(s.len+1, 0, errorCode)) {
40 CharString &CharString::append(char c, UErrorCode &errorCode) { argument
41 if(ensureCapacity(len+2, 0, errorCode)) {
48 CharString &CharString::append(const char *s, int32_t sLength, UErrorCode &errorCode) { argument
49 if(U_FAILURE(errorCode)) {
53 errorCode=U_ILLEGAL_ARGUMENT_ERROR;
64 errorCode=U_INTERNAL_PROGRAM_ERROR;
73 return append(CharString(s, sLength, errorCode), errorCod
82 getAppendBuffer(int32_t minCapacity, int32_t desiredCapacityHint, int32_t &resultCapacity, UErrorCode &errorCode) argument
103 appendInvariantChars(const UnicodeString &s, UErrorCode &errorCode) argument
110 ensureCapacity(int32_t capacity, int32_t desiredCapacityHint, UErrorCode &errorCode) argument
[all...]
/external/icu4c/samples/props/
H A Dprops.cpp28 UErrorCode errorCode; local
31 errorCode=U_ZERO_ERROR;
32 u_charName(codePoint, U_UNICODE_CHAR_NAME, buffer, sizeof(buffer), &errorCode);
/external/icu4c/test/cintltst/
H A Dsorttest.c34 UErrorCode errorCode; local
37 errorCode=U_ZERO_ERROR;
38 uprv_sortArray(small, LENGTHOF(small), sizeof(small[0]), uprv_uint16Comparator, NULL, TRUE, &errorCode);
39 if(U_FAILURE(errorCode)) {
40 log_err("uprv_sortArray(small) failed - %s\n", u_errorName(errorCode));
56 uprv_sortArray(medium, LENGTHOF(medium), sizeof(medium[0]), uprv_int32Comparator, NULL, TRUE, &errorCode);
57 if(U_FAILURE(errorCode)) {
58 log_err("uprv_sortArray(medium) failed - %s\n", u_errorName(errorCode));
69 errorCode=U_ZERO_ERROR;
70 uprv_sortArray(large, LENGTHOF(large), sizeof(large[0]), uprv_uint32Comparator, NULL, FALSE, &errorCode);
[all...]
/external/icu4c/test/intltest/
H A Dtstnrapi.cpp61 UErrorCode errorCode=U_ZERO_ERROR; local
62 Normalizer::compose(tel, TRUE, 0, nfkc, errorCode);
63 Normalizer::decompose(tel, TRUE, 0, nfkd, errorCode);
64 if(U_FAILURE(errorCode)) {
65 dataerrln("error in Normalizer::(de)compose(): %s", u_errorName(errorCode));
81 errorCode=U_ZERO_ERROR;
82 copy.setText(iter, errorCode);
83 if(U_FAILURE(errorCode)) {
84 errln("error Normalizer::setText() failed: %s", u_errorName(errorCode));
97 errorCode
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A Dmain.h37 void error(GLenum errorCode);
40 const T &error(GLenum errorCode, const T &returnValue) argument
42 error(errorCode);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPException.java19 /** the errorCode of the XMP toolkit */
20 private int errorCode; field in class:XMPException
26 * @param errorCode the error code
28 public XMPException(String message, int errorCode) argument
31 this.errorCode = errorCode;
38 * @param errorCode the error code
41 public XMPException(String message, int errorCode, Throwable t) argument
44 this.errorCode = errorCode;
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSFTPException.java26 private static String constructMessage(String s, int errorCode) argument
28 String[] detail = ErrorCodes.getDescription(errorCode);
36 SFTPException(String msg, int errorCode) argument
38 super(constructMessage(msg, errorCode));
40 sftpErrorCode = errorCode;
/external/icu4c/common/unicode/
H A Derrorcode.h66 * log_failure(u_errorName(errorCode));
67 * exit(errorCode);
85 ErrorCode() : errorCode(U_ZERO_ERROR) {}
89 operator UErrorCode & () { return errorCode; }
91 operator UErrorCode * () { return &errorCode; }
93 UBool isSuccess() const { return U_SUCCESS(errorCode); }
95 UBool isFailure() const { return U_FAILURE(errorCode); }
97 UErrorCode get() const { return errorCode; }
99 void set(UErrorCode value) { errorCode=value; }
125 UErrorCode errorCode; member in class:ErrorCode
[all...]

Completed in 521 milliseconds

123456789