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

1 2

  /external/chromium_org/chrome/renderer/resources/extensions/
automation_custom_bindings.js 14 var lastError = require('lastError');
46 if (lastError.hasError(chrome)) {
77 if (lastError.hasError(chrome)) {
file_entry_binding_util.js 8 var lastError = require('lastError');
42 lastError.run(
95 lastError.run(apiName + '.' + functionName,
notifications_custom_bindings.js 11 var lastError = require('lastError');
124 lastError.run(name,
  /frameworks/av/media/libmediaplayerservice/
SharedLibrary.cpp 50 const char *SharedLibrary::lastError() const {
  /external/chromium_org/extensions/renderer/resources/
send_request.js 6 var lastError = require('lastError');
29 // The chrome objects we will set lastError on. Really we should only be
38 // lastError needs to be set on the caller's chrome object no matter what,
44 lastError.clear(chrome);
46 lastError.clear(callerChrome);
51 lastError.set(name, error, request.stack, chrome);
53 lastError.set(name, error, request.stack, callerChrome);
77 !lastError.hasAccessed(chrome) &&
78 !lastError.hasAccessed(callerChrome))
    [all...]
messaging.js 10 var lastError = require('lastError');
138 lastError.set(eventName, errorMsg.join(" ") + ").", null, chrome);
288 lastError.set('Port', errorMessage, null, chrome);
293 lastError.clear(chrome);
334 if (chrome.runtime && chrome.runtime.lastError)
binding.js 9 var lastError = require('lastError');
81 lastError.run(name, message, stack, callback);
459 // Special case: runtime.lastError is only occasionally set, so
462 GetAvailability('runtime.lastError').is_available) {
  /external/chromium_org/third_party/freetype/src/cff/
cf2font.c 326 FT_Error lastError = FT_Err_Ok;
395 cf2_setError( &font->error, lastError );
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
cf2font.c 328 FT_Error lastError = FT_Err_Ok;
398 cf2_setError( &font->error, lastError );
  /external/chromium_org/net/third_party/nss/ssl/
sslmutex.c 455 DWORD lastError;
495 lastError = GetLastError(); /* for debugging */
496 nss_MD_win32_map_default_error(lastError);
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
echo_cancellation_internal.h 60 int lastError;
  /external/freetype/src/cff/
cf2font.c 426 FT_Error lastError = FT_Err_Ok;
495 cf2_setError( &font->error, lastError );
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/
chrome_stubs.js 21 chrome.runtime.lastError = {'message': 'Invalid pattern'};
25 chrome.runtime.lastError = undefined;
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteDatabase.cpp 219 return lastError();
231 return lastError();
257 int SQLiteDatabase::lastError()
377 int error = lastError();
398 error = lastError();
  /external/chromium_org/third_party/icu/source/i18n/
winnmfmt.cpp 312 DWORD lastError = GetLastError();
314 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
  /external/chromium_org/third_party/icu/source/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/chromium_org/third_party/webrtc/modules/audio_processing/aecm/
echo_control_mobile.c 71 int lastError;
117 aecm->lastError = 0;
172 aecm->lastError = AECM_BAD_PARAMETER_ERROR;
180 aecm->lastError = AECM_UNSPECIFIED_ERROR;
187 aecm->lastError = AECM_UNSPECIFIED_ERROR;
216 aecm->lastError = AECM_UNSPECIFIED_ERROR;
236 aecm->lastError = AECM_NULL_POINTER_ERROR;
242 aecm->lastError = AECM_UNINITIALIZED_ERROR;
248 aecm->lastError = AECM_BAD_PARAMETER_ERROR;
284 aecm->lastError = AECM_NULL_POINTER_ERROR
    [all...]
  /external/icu/icu4c/source/i18n/
winnmfmt.cpp 312 DWORD lastError = GetLastError();
314 if (lastError == ERROR_INSUFFICIENT_BUFFER) {
  /external/icu/icu4c/source/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/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusStringFormat.h 32 lastError = DllExports::GdipCreateStringFormat(
49 lastError = DllExports::GdipCloneStringFormat(
59 lastError = DllExports::GdipCloneStringFormat(
64 if (lastError == Ok)
65 return new StringFormat(clonedStringFormat, lastError);
280 Status lastStatus = lastError;
281 lastError = Ok;
296 return lastError = newStatus;
305 lastError = DllExports::GdipCloneStringFormat(
314 lastError = DllExports::GdipCloneStringFormat(
    [all...]
  /libcore/luni/src/main/java/java/lang/
Runtime.java 378 String lastError = null;
388 lastError = error;
392 if (lastError != null) {
393 throw new UnsatisfiedLinkError(lastError);
  /external/chromium_org/chrome/renderer/resources/extensions/automation/
automation_node.js 11 var lastError = require('lastError');
308 lastError.set('automation',
318 lastError.set('automation',
344 lastError.set('automation',
431 lastError.set('automation',
475 lastError.set('automation',
554 lastError.set('automation',
  /external/chromium_org/third_party/webrtc/modules/audio_processing/agc/
analog_agc.h 58 int16_t lastError;
  /external/deqp/framework/delibs/deutil/
deProcess.c 53 char* lastError;
173 deFree(process->lastError);
179 return process->lastError ? process->lastError : "No error";
189 if (process->lastError)
191 deFree(process->lastError);
192 process->lastError = DE_NULL;
195 process->lastError = deStrdup(error);
196 return process->lastError != DE_NULL;
519 char* lastError;
    [all...]
  /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...]

Completed in 737 milliseconds

1 2