Home | History | Annotate | Download | only in Plugins

Lines Matching full:error

91 NPReason WebNetscapePluginStream::reasonForError(NSError *error)
93 if (!error)
96 if ([[error domain] isEqualToString:NSURLErrorDomain] && [error code] == NSURLErrorCancelled)
249 LOG(Plugins, "NPP_NewStream URL=%@ MIME=%@ error=%d", m_responseURL.get(), m_mimeType.get(), npErr);
252 LOG_ERROR("NPP_NewStream failed with error: %d responseURL: %@", npErr, m_responseURL.get());
367 NPError error;
371 error = m_pluginFuncs->getvalue(m_plugin, NPPVpluginWantsAllNetworkStreams, &value);
373 if (error != NPERR_NO_ERROR)
427 LOG(Plugins, "NPP_DestroyStream responseURL=%@ error=%d", m_responseURL.get(), npErr);
468 void WebNetscapePluginStream::cancelLoadWithError(NSError *error)
477 documentLoader->cancelMainResourceLoad(error);
482 m_loader->cancel(error);
485 void WebNetscapePluginStream::destroyStreamWithError(NSError *error)
487 destroyStreamWithReason(reasonForError(error));
490 void WebNetscapePluginStream::didFail(WebCore::NetscapePlugInStreamLoader*, const WebCore::ResourceError& error)
492 destroyStreamWithError(error);
495 void WebNetscapePluginStream::cancelLoadAndDestroyStreamWithError(NSError *error)
498 cancelLoadWithError(error);
499 destroyStreamWithError(error);
570 // This is not a network error, but the only error codes are "network error" and "user break".
586 // This happens only rarely, when we are out of disk space or have a disk I/O error.
587 LOG_ERROR("error writing to temporary file, errno %d", errno);
591 // This is not a network error, but the only error codes are "network error" and "user break".