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/aecm/
echo_control_mobile.c 77 int lastError;
120 aecm->lastError = 0;
175 aecm->lastError = AECM_BAD_PARAMETER_ERROR;
183 aecm->lastError = AECM_UNSPECIFIED_ERROR;
190 aecm->lastError = AECM_UNSPECIFIED_ERROR;
219 aecm->lastError = AECM_UNSPECIFIED_ERROR;
239 aecm->lastError = AECM_NULL_POINTER_ERROR;
245 aecm->lastError = AECM_UNINITIALIZED_ERROR;
251 aecm->lastError = AECM_BAD_PARAMETER_ERROR;
299 aecm->lastError = AECM_NULL_POINTER_ERROR
    [all...]
  /external/webkit/Source/WebCore/platform/
GeolocationService.h 58 virtual PositionError* lastError() const { return 0; }
  /external/webrtc/src/modules/audio_processing/aec/
echo_cancellation.c 93 int lastError;
138 aecpc->lastError = 0;
209 aecpc->lastError = AEC_BAD_PARAMETER_ERROR;
215 aecpc->lastError = AEC_BAD_PARAMETER_ERROR;
222 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
227 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
232 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
276 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
282 aecpc->lastError = AEC_UNSPECIFIED_ERROR;
310 aecpc->lastError = AEC_NULL_POINTER_ERROR
    [all...]
  /external/ganymed-ssh2/examples/
SwingShell.java 457 String lastError;
459 public InteractiveLogic(String lastError)
461 this.lastError = lastError;
475 String[] content = new String[] { lastError, name, instruction, prompt[i] };
477 if (lastError != null)
479 /* show lastError only once */
480 lastError = null;
554 String lastError = null;
567 new String[] { lastError, "Enter DSA private key password:" }, true)
    [all...]
  /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 56 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 368 String lastError = null;
378 lastError = error;
382 if (lastError != null) {
383 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/
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 506 to = &ctxt->lastError;
903 if (ctxt->lastError.code == XML_ERR_OK)
905 return (&ctxt->lastError);
923 if (ctxt->lastError.code == XML_ERR_OK)
925 xmlResetError(&ctxt->lastError);
  /external/libxml2/include/libxml/
xpath.h 344 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 1488 milliseconds

1 2