HomeSort by relevance Sort by last modified time
    Searched refs:PluginStream (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/content/child/npapi/
plugin_stream_posix.cc 16 void PluginStream::ResetTempFileHandle() {
20 void PluginStream::ResetTempFileName() {
24 void PluginStream::WriteAsFile() {
29 size_t PluginStream::WriteBytes(const char* buf, size_t length) {
33 bool PluginStream::OpenTempFile() {
47 void PluginStream::CloseTempFile() {
55 bool PluginStream::TempFileIsValid() const {
plugin_stream_win.cc 12 void PluginStream::ResetTempFileHandle() {
16 void PluginStream::ResetTempFileName() {
20 void PluginStream::WriteAsFile() {
25 size_t PluginStream::WriteBytes(const char *buf, size_t length) {
34 bool PluginStream::OpenTempFile() {
67 void PluginStream::CloseTempFile() {
75 bool PluginStream::TempFileIsValid() const {
plugin_stream.h 23 class PluginStream : public base::RefCounted<PluginStream> {
25 // Create a new PluginStream object. If needNotify is true, then the
27 PluginStream(PluginInstance* instance,
77 friend class base::RefCounted<PluginStream>;
79 virtual ~PluginStream();
143 DISALLOW_COPY_AND_ASSIGN(PluginStream);
plugin_string_stream.h 17 class PluginStringStream : public PluginStream {
plugin_stream.cc 23 PluginStream::PluginStream(
42 PluginStream::~PluginStream() {
48 bool PluginStream::Open(const std::string& mime_type,
110 int PluginStream::Write(const char* buffer, const int length,
128 bool PluginStream::WriteToFile(const char* buf, size_t length) {
146 bool PluginStream::WriteToPlugin(const char* buf, const int length,
167 FROM_HERE, base::Bind(&PluginStream::OnDelayDelivery, this));
173 void PluginStream::OnDelayDelivery()
    [all...]
plugin_string_stream.cc 16 : PluginStream(instance, url.spec().c_str(), notify_needed, notify_data) {
plugin_stream_url.cc 26 : PluginStream(instance, url.spec().c_str(), notify_needed, notify_data),
60 scoped_refptr<PluginStream> protect(this);
62 bool result = PluginStream::Close(reason);
114 scoped_refptr<PluginStream> protect(this);
136 scoped_refptr<PluginStream> protect(this);
plugin_instance.h 34 class PluginStream;
139 void AddStream(PluginStream* stream);
143 void RemoveStream(PluginStream* stream);
292 std::vector<scoped_refptr<PluginStream> > open_streams_;
345 typedef std::map<int, scoped_refptr<PluginStream> > PendingRangeRequestMap;
plugin_stream_url.h 20 class PluginStreamUrl : public PluginStream,
plugin_instance.cc 101 void PluginInstance::AddStream(PluginStream* stream) {
105 void PluginInstance::RemoveStream(PluginStream* stream) {
109 std::vector<scoped_refptr<PluginStream> >::iterator stream_index;
120 std::vector<scoped_refptr<PluginStream> >::iterator stream_index;
548 // The lifetime of a NPStream instance depends on the PluginStream instance
551 // received. We send over a cookie which represents the PluginStream
554 std::vector<scoped_refptr<PluginStream> >::iterator stream_index;
557 PluginStream* plugin_stream = stream_index->get();
684 std::vector<scoped_refptr<PluginStream> >::iterator stream_index;
687 PluginStream* plugin_stream = stream_index->get()
    [all...]

Completed in 1408 milliseconds