Searched refs:lastError (Results 1 - 25 of 25) sorted by relevance

/external/webkit/WebCore/platform/
H A DGeolocationService.h62 virtual PositionError* lastError() const { return 0; } function in class:WebCore::GeolocationService
/external/webkit/WebCore/platform/gtk/
H A DGeolocationServiceGtk.h44 PositionError* lastError() const;
H A DGeolocationServiceGtk.cpp154 PositionError* GeolocationServiceGtk::lastError() const function in class:WebCore::GeolocationServiceGtk
/external/webkit/WebCore/platform/mac/
H A DGeolocationServiceMac.h58 virtual PositionError* lastError() const { return m_lastError.get(); } function in class:WebCore::GeolocationServiceMac
/external/webkit/WebCore/platform/mock/
H A DGeolocationServiceMock.h61 virtual PositionError* lastError() const { return s_lastError->get(); } function in class:WebCore::GeolocationServiceMock
/external/chromium/third_party/icu/source/test/intltest/
H A Dwinnmtst.cpp190 DWORD lastError = GetLastError(); local
192 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
204 DWORD lastError = GetLastError(); local
206 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
/external/icu4c/test/intltest/
H A Dwinnmtst.cpp190 DWORD lastError = GetLastError(); local
192 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
204 DWORD lastError = GetLastError(); local
206 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
/external/webkit/WebCore/platform/android/
H A DGeolocationServiceAndroid.h54 virtual PositionError* lastError() const { return m_lastError.get(); } function in class:WebCore::GeolocationServiceAndroid
/external/webkit/WebCore/platform/sql/
H A DSQLiteDatabase.h96 int lastError();
H A DSQLiteStatement.cpp380 if (m_database.lastError() != SQLITE_DONE) {
400 if (m_database.lastError() != SQLITE_DONE) {
420 if (m_database.lastError() != SQLITE_DONE) {
440 if (m_database.lastError() != SQLITE_DONE) {
H A DSQLiteDatabase.cpp245 int SQLiteDatabase::lastError() function in class:WebCore::SQLiteDatabase
/external/chromium/net/third_party/nss/ssl/
H A Dsslmutex.c483 DWORD lastError; local
523 lastError = GetLastError(); /* for debugging */
524 nss_MD_win32_map_default_error(lastError);
/external/chromium/third_party/icu/source/i18n/
H A Dwinnmfmt.cpp305 DWORD lastError = GetLastError(); local
307 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
/external/icu4c/i18n/
H A Dwinnmfmt.cpp305 DWORD lastError = GetLastError(); local
307 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
/external/libxml2/
H A DparserInternals.c1745 if (ctxt->lastError.message != NULL)
1746 xmlFree(ctxt->lastError.message);
1747 if (ctxt->lastError.file != NULL)
1748 xmlFree(ctxt->lastError.file);
1749 if (ctxt->lastError.str1 != NULL)
1750 xmlFree(ctxt->lastError.str1);
1751 if (ctxt->lastError.str2 != NULL)
1752 xmlFree(ctxt->lastError.str2);
1753 if (ctxt->lastError.str3 != NULL)
1754 xmlFree(ctxt->lastError
[all...]
H A Derror.c511 to = &ctxt->lastError;
911 if (ctxt->lastError.code == XML_ERR_OK)
913 return (&ctxt->lastError);
930 if (ctxt->lastError.code == XML_ERR_OK)
932 xmlResetError(&ctxt->lastError);
H A Dxpointer.c102 ctxt->context->lastError.domain = XML_FROM_XPOINTER;
103 ctxt->context->lastError.code = error;
104 ctxt->context->lastError.level = XML_ERR_ERROR;
105 ctxt->context->lastError.str1 = (char *) xmlStrdup(ctxt->base);
106 ctxt->context->lastError.int1 = ctxt->cur - ctxt->base;
107 ctxt->context->lastError.node = ctxt->context->debugNode;
110 &ctxt->context->lastError);
H A Dxpath.c276 ctxt->lastError.message = (char *) xmlStrdup(buf);
278 ctxt->lastError.message = (char *)
281 ctxt->lastError.domain = XML_FROM_XPATH;
282 ctxt->lastError.code = XML_ERR_NO_MEMORY;
284 ctxt->error(ctxt->userData, &ctxt->lastError);
353 xmlResetError(&ctxt->context->lastError);
355 ctxt->context->lastError.domain = XML_FROM_XPATH;
356 ctxt->context->lastError.code = error + XML_XPATH_EXPRESSION_OK -
358 ctxt->context->lastError.level = XML_ERR_ERROR;
359 ctxt->context->lastError
[all...]
H A Dparser.c120 if (ctxt->lastError.code == XML_ERR_ENTITY_LOOP)
2531 if ((ctxt->lastError.code == XML_ERR_ENTITY_LOOP) ||
2532 (ctxt->lastError.code == XML_ERR_INTERNAL_ERROR))
2584 if (ctxt->lastError.code == XML_ERR_ENTITY_LOOP)
12415 if (ctxt->lastError.code != XML_ERR_OK)
12416 xmlCopyError(&ctxt->lastError, &oldctxt->lastError);
12659 if (ctxt->lastError.code != XML_ERR_OK)
12660 xmlCopyError(&ctxt->lastError, &oldctxt->lastError);
[all...]
/external/webkit/WebCore/loader/icon/
H A DIconDatabase.cpp1069 LOG_ERROR("Could not create PageURL table in database (%i) - %s", db.lastError(), db.lastErrorMsg());
1074 LOG_ERROR("Could not create PageURL index in database (%i) - %s", db.lastError(), db.lastErrorMsg());
1079 LOG_ERROR("Could not create IconInfo table in database (%i) - %s", db.lastError(), db.lastErrorMsg());
1084 LOG_ERROR("Could not create PageURL index in database (%i) - %s", db.lastError(), db.lastErrorMsg());
1089 LOG_ERROR("Could not create IconData table in database (%i) - %s", db.lastError(), db.lastErrorMsg());
1094 LOG_ERROR("Could not create PageURL index in database (%i) - %s", db.lastError(), db.lastErrorMsg());
1099 LOG_ERROR("Could not create IconDatabaseInfo table in database (%i) - %s", db.lastError(), db.lastErrorMsg());
1104 LOG_ERROR("Could not insert icon database version into IconDatabaseInfo table (%i) - %s", db.lastError(), db.lastErrorMsg());
/external/libxml2/include/libxml/
H A Dxpath.h343 xmlError lastError; /* the last error */ member in struct:_xmlXPathContext
H A Dparser.h299 xmlError lastError; member in struct:_xmlParserCtxt
/external/webkit/WebCore/page/
H A DGeolocation.cpp633 ASSERT(service->lastError());
638 handleError(service->lastError());
/external/icu4c/common/
H A Dputil.c2104 DWORD lastError = GetLastError(); local
2105 if(lastError == ERROR_PROC_NOT_FOUND) {
/external/webkit/WebCore/loader/appcache/
H A DApplicationCacheStorage.cpp1119 if (m_database.lastError() == SQLResultFull)

Completed in 258 milliseconds