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

  /external/chromium_org/mojo/system/
transport_data.h 30 // - Before reaching |TransportData|: Turn |DispatcherTransport|s into
35 // - Serialize these dispatchers into the |TransportData|: First, for each
36 // attached dispatcher, there's an entry in the |TransportData|'s "handle
39 // detached from the dispatchers and attached to the |TransportData|.
41 // |TransportData|'s buffer, the |Channel| sends any |PlatformHandle|s (in a
43 // so, it appends a "platform handle table" to the |TransportData|
47 // the |TransportData|, consisting of the "handle table" (one entry for each
70 // |TransportData| can be discarded.
76 class MOJO_SYSTEM_IMPL_EXPORT TransportData {
92 TransportData(scoped_ptr<DispatcherVector> dispatchers, Channel* channel)
    [all...]
transport_data.cc 21 // |TransportData::kMaxBufferSize|. This value should be a multiple of the
30 TransportData::kMaxSerializedDispatcherSize;
32 TransportData::kMaxSerializedDispatcherPlatformHandles;
35 const size_t TransportData::kMaxPlatformHandles =
43 const size_t TransportData::kMaxBufferSize =
49 struct TransportData::PrivateStructForCompileAsserts {
63 TransportData::TransportData(scoped_ptr<DispatcherVector> dispatchers,
197 TransportData::TransportData(
    [all...]
message_in_transit.h 24 class TransportData;
41 // See |TransportData| for a description of the (serialized) transport data
92 // transport data -- see |TransportData::ValidateBuffer()|).
167 // Sets the |TransportData| for this message. This should only be done when
168 // there are no dispatchers and no existing |TransportData|.
169 void SetTransportData(scoped_ptr<TransportData> transport_data);
182 const TransportData* transport_data() const { return transport_data_.get(); }
183 TransportData* transport_data() { return transport_data_.get(); }
253 scoped_ptr<TransportData> transport_data_; // May be null.
message_in_transit.cc 76 TransportData::ValidateBuffer(serialized_platform_handle_size,
176 scoped_ptr<TransportData> transport_data) {
191 transport_data_.reset(new TransportData(dispatchers_.Pass(), channel));
dispatcher.h 42 class TransportData;
177 // A |TransportData| may serialize dispatchers that are given to it (and which
189 friend class TransportData;
326 // |TransportData| (via |TransportData|). They may only be called on a
333 // |TransportData::kMaxSerializedDispatcherSize|) and the maximum number of
335 // |TransportData::kMaxSerializedDispatcherPlatformHandles|). If this
raw_channel.cc 54 const TransportData* transport_data =
79 TransportData* transport_data = message_queue_.front()->transport_data();
343 TransportData::GetPlatformHandleTable(
raw_channel_posix.cc 148 make_scoped_ptr(new TransportData(fds.Pass())));
419 // We should never accumulate more than |TransportData::kMaxPlatformHandles
425 (TransportData::kMaxPlatformHandles +
channel.cc 370 message->SetDispatchers(TransportData::DeserializeDispatchers(

Completed in 61 milliseconds