HomeSort by relevance Sort by last modified time
    Searched refs:lastError (Results 1 - 25 of 31) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/win/
SharedBufferWin.cpp 55 DWORD lastError = GetLastError();
57 if (bytesToRead != INVALID_FILE_SIZE || lastError == NO_ERROR) {
65 LOG_ERROR("Failed to get filesize of file %s, GetLastError() = %u", filePath.ascii().data(), lastError);
  /external/webkit/Source/WebCore/platform/efl/
GeolocationServiceEfl.h 44 virtual PositionError* lastError() const;
GeolocationServiceEfl.cpp 74 PositionError* GeolocationServiceEfl::lastError() const
  /external/webrtc/src/modules/audio_processing/aec/main/source/
echo_cancellation.c 89 int lastError;
133 aecpc->lastError = 0;
190 aecpc->lastError = AEC_BAD_PARAMETER_ERROR;
196 aecpc->lastError = AEC_BAD_PARAMETER_ERROR;
203 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
209 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
214 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
259 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
281 aecpc->lastError = AEC_NULL_POINTER_ERROR;
286 aecpc->lastError = AEC_UNINITIALIZED_ERROR
    [all...]
  /external/webkit/Source/WebCore/platform/
GeolocationService.h 63 virtual PositionError* lastError() const { return 0; }
  /external/webrtc/src/modules/audio_processing/aecm/main/source/
echo_control_mobile.c 77 int lastError;
119 aecm->lastError = 0;
174 aecm->lastError = AECM_BAD_PARAMETER_ERROR;
181 aecm->lastError = AECM_BAD_PARAMETER_ERROR;
189 aecm->lastError = AECM_UNSPECIFIED_ERROR;
196 aecm->lastError = AECM_UNSPECIFIED_ERROR;
225 aecm->lastError = AECM_UNSPECIFIED_ERROR;
245 aecm->lastError = AECM_NULL_POINTER_ERROR;
251 aecm->lastError = AECM_UNINITIALIZED_ERROR;
257 aecm->lastError = AECM_BAD_PARAMETER_ERROR
    [all...]
  /external/webkit/Source/WebCore/platform/android/
GeolocationServiceAndroid.h 54 virtual PositionError* lastError() const { return m_lastError.get(); }
  /external/webkit/Source/WebCore/platform/gtk/
GeolocationServiceGtk.h 45 PositionError* lastError() const;
GeolocationServiceGtk.cpp 157 PositionError* GeolocationServiceGtk::lastError() const
  /external/webkit/Source/WebCore/platform/mock/
GeolocationServiceMock.h 61 virtual PositionError* lastError() const { return s_lastError->get(); }
  /external/icu4c/test/intltest/
winnmtst.cpp 190 DWORD lastError = GetLastError();
192 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
204 DWORD lastError = GetLastError();
206 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
  /external/webkit/Source/WebCore/platform/sql/
SQLiteDatabase.h 102 int lastError();
SQLiteDatabase.cpp 318 int SQLiteDatabase::lastError()
448 int error = lastError();
469 error = lastError();
SQLiteStatement.cpp 463 if (m_database.lastError() != SQLITE_DONE) {
483 if (m_database.lastError() != SQLITE_DONE) {
503 if (m_database.lastError() != SQLITE_DONE) {
523 if (m_database.lastError() != SQLITE_DONE) {
  /libcore/luni/src/main/java/java/lang/
Runtime.java 377 String lastError = null;
386 lastError = error;
390 if (lastError != null) {
391 throw new UnsatisfiedLinkError(lastError);
  /external/chromium/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js 66 if (chrome.extension.lastError) {
67 console.log("Got expected error: " + chrome.extension.lastError.message);
  /external/webrtc/src/modules/audio_processing/agc/main/source/
analog_agc.h 59 WebRtc_Word16 lastError;
analog_agc.c     [all...]
  /external/icu4c/i18n/
winnmfmt.cpp 305 DWORD lastError = GetLastError();
307 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
  /external/libxml2/
parserInternals.c     [all...]
error.c 511 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);
  /external/libxml2/include/libxml/
xpath.h 343 xmlError lastError; /* the last error */
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
proxy_form_controller.js 514 * for `lastError`, and then sets incognito settings (if they exist).
519 if (chrome.extension.lastError) {
535 * for `lastError` and sets a success message.
540 if (chrome.extension.lastError) {
  /external/webkit/Source/WebCore/loader/icon/
IconDatabase.cpp     [all...]
  /external/webkit/Source/WebCore/page/
Geolocation.cpp 691 ASSERT(service->lastError());
696 handleError(service->lastError());

Completed in 3493 milliseconds

1 2