/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
SFTPv3Client.java | 412 String errorMessage = tr.readString(); 413 listener.read(errorMessage); 414 throw new SFTPException(errorMessage, errorCode); 451 String errorMessage = tr.readString(); 452 listener.read(errorMessage); 453 throw new SFTPException(errorMessage, errorCode); 534 String errorMessage = tr.readString(); 535 listener.read(errorMessage); 536 throw new SFTPException(errorMessage, errorCode); 565 String errorMessage = tr.readString() [all...] |
/frameworks/base/services/java/com/android/server/content/ |
SyncQueue.java | 157 final String errorMessage = "unable to find pending row for " + operationToRemove; 158 Log.e(TAG, errorMessage, new IllegalStateException(errorMessage)); 201 final String errorMessage = "unable to find pending row for " + syncOperation; 202 Log.e(TAG, errorMessage, new IllegalStateException(errorMessage));
|
/external/webkit/Source/WebCore/dom/ |
ScriptExecutionContext.cpp | 75 PendingException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack) 76 : m_errorMessage(errorMessage) 310 bool ScriptExecutionContext::sanitizeScriptError(String& errorMessage, int& lineNumber, String& sourceURL) 315 errorMessage = "Script error."; 321 void ScriptExecutionContext::reportException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack) 326 m_pendingExceptions->append(adoptPtr(new PendingException(errorMessage, lineNumber, sourceURL, callStack))); 331 if (!dispatchErrorEvent(errorMessage, lineNumber, sourceURL)) 332 logExceptionToConsole(errorMessage, lineNumber, sourceURL, callStack); 344 bool ScriptExecutionContext::dispatchErrorEvent(const String& errorMessage, int lineNumber, const String& sourceURL) 350 String message = errorMessage; [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
WebWorkerClientImpl.cpp | 234 void WebWorkerClientImpl::postExceptionToWorkerObject(const WebString& errorMessage, 241 String(errorMessage), 247 bool unhandled = m_worker->dispatchEvent(ErrorEvent::create(errorMessage, 251 m_scriptExecutionContext->reportException(errorMessage, lineNumber, sourceURL, 0); 375 const String& errorMessage, 381 handled = thisPtr->m_worker->dispatchEvent(ErrorEvent::create(errorMessage, 385 thisPtr->m_scriptExecutionContext->reportException(errorMessage, lineNumber, sourceURL, 0);
|
WebWorkerBase.cpp | 286 void WebWorkerBase::postExceptionToWorkerObject(const String& errorMessage, 291 errorMessage, lineNumber, 297 const String& errorMessage, 303 thisPtr->commonClient()->postExceptionToWorkerObject(errorMessage,
|
/external/webkit/Source/WebCore/bindings/v8/ |
WorkerContextExecutionProxy.cpp | 73 String errorMessage = toWebCoreString(message->Get()); 76 context->reportException(errorMessage, lineNumber, sourceURL, 0); 214 state->errorMessage = toWebCoreString(message->Get()); 217 if (m_workerContext->sanitizeScriptError(state->errorMessage, state->lineNumber, state->sourceURL)) 218 state->exception = V8Proxy::throwError(V8Proxy::GeneralError, state->errorMessage.utf8().data());
|
WorkerContextExecutionProxy.h | 54 String errorMessage;
|
WorkerScriptController.cpp | 80 m_workerContext->reportException(state.errorMessage, state.lineNumber, state.sourceURL, 0);
|
/cts/tools/dex-tools/test/dex/reader/util/ |
JavaSourceToDexUtil.java | 97 StringBuilder errorMessage = new StringBuilder(); 99 errorMessage.append(dia); 101 throw new IllegalStateException(errorMessage.toString());
|
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/ |
Socks5BytestreamRequest.java | 273 String errorMessage = "Could not establish socket with any provided host";
274 XMPPError error = new XMPPError(XMPPError.Condition.item_not_found, errorMessage);
277 throw new XMPPException(errorMessage, error);
|
/external/webkit/Source/WebCore/bindings/js/ |
WorkerScriptController.cpp | 141 String errorMessage; 144 if (m_workerContext->sanitizeScriptError(errorMessage, lineNumber, sourceURL)) 145 *exception = ScriptValue(*m_globalData, throwError(exec, createError(exec, errorMessage.impl())));
|
/external/webkit/Source/WebCore/plugins/gtk/ |
PluginPackageGtk.cpp | 109 gchar errorMessage[64]; 110 XGetErrorText(xdisplay, error->error_code, errorMessage, 63); 115 g_get_prgname(), errorMessage,
|
/external/webkit/Source/WebCore/workers/ |
WorkerMessagingProxy.cpp | 109 static PassOwnPtr<WorkerExceptionTask> create(const String& errorMessage, int lineNumber, const String& sourceURL, WorkerMessagingProxy* messagingProxy) 111 return new WorkerExceptionTask(errorMessage, lineNumber, sourceURL, messagingProxy); 115 WorkerExceptionTask(const String& errorMessage, int lineNumber, const String& sourceURL, WorkerMessagingProxy* messagingProxy) 116 : m_errorMessage(errorMessage.crossThreadString()) 277 void WorkerMessagingProxy::postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL) 279 m_scriptExecutionContext->postTask(WorkerExceptionTask::create(errorMessage, lineNumber, sourceURL, this));
|
WorkerMessagingProxy.h | 65 virtual void postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL);
|
DefaultSharedWorkerRepository.cpp | 82 virtual void postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL); 157 static void postExceptionTask(ScriptExecutionContext* context, const String& errorMessage, int lineNumber, const String& sourceURL) 159 context->reportException(errorMessage, lineNumber, sourceURL, 0); 162 void SharedWorkerProxy::postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL) 166 (*iter)->postTask(createCallbackTask(&postExceptionTask, errorMessage, lineNumber, sourceURL));
|
/frameworks/base/graphics/java/android/graphics/ |
BitmapRegionDecoder.java | 244 private void checkRecycled(String errorMessage) { 246 throw new IllegalStateException(errorMessage);
|
/external/webkit/Source/JavaScriptCore/runtime/ |
RegExp.h | 50 const char* errorMessage() const { return m_constructionError; }
|
/external/webkit/Source/WebCore/inspector/front-end/ |
DebuggerModel.js | 189 _failedToParseScriptSource: function(sourceURL, source, startingLine, errorLine, errorMessage) 191 var script = new WebInspector.Script(null, sourceURL, startingLine, errorLine, errorMessage, undefined); 235 scriptFailedToParse: function(sourceURL, source, startingLine, errorLine, errorMessage) 237 this._debuggerModel._failedToParseScriptSource(sourceURL, source, startingLine, errorLine, errorMessage);
|
/external/webkit/Source/WebKit/chromium/public/ |
WebNotification.h | 89 WEBKIT_API void dispatchErrorEvent(const WebString& errorMessage);
|
/external/webkit/Tools/DumpRenderTree/wx/ |
DumpRenderTreeWx.cpp | 182 const char* errorMessage; 184 errorMessage = "WebFrame::GetInnerText"; 186 errorMessage = "WebFrame::GetExternalRepresentation"; 187 printf("ERROR: NULL result from %s", errorMessage);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/ |
ExportProcessor.java | 221 private String translateComposerError(String errorMessage) { 223 if (VCardComposer.FAILURE_REASON_FAILED_TO_GET_DATABASE_INFO.equals(errorMessage)) { 225 } else if (VCardComposer.FAILURE_REASON_NO_ENTRY.equals(errorMessage)) { 227 } else if (VCardComposer.FAILURE_REASON_NOT_INITIALIZED.equals(errorMessage)) { 230 return errorMessage;
|
/development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/ |
WordWidget.java | 115 CharSequence errorMessage = context.getText(R.string.widget_error); 116 updateViews.setTextViewText(R.id.message, errorMessage);
|
/cts/tests/tests/animation/src/android/animation/cts/ |
ValueAnimatorTest.java | 140 assertTrue(errorMessage(fractions), fractions[j + 1] >= fractions[j]); 151 assertTrue(errorMessage(animatedValues), animatedValues[j + 1] >= animatedValues[j]); 163 assertTrue(errorMessage(animatedValues), animatedValues[j + 1] >= animatedValues[j]); 270 private String errorMessage(float[] values) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
AdapterViewRule.java | 49 dropFeedback.errorMessage = String.format(
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
SipSession.java | 182 * @param errorMessage error message 185 String errorMessage) { 193 * @param errorMessage error message 196 String errorMessage) { 221 * @param errorMessage error message 224 String errorMessage) {
|