Searched refs:payload (Results 301 - 325 of 665) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dportproxy.cc101 bool payload) {
103 return impl_->SendTo(data, size, addr, options, payload);
97 SendTo(const void* data, size_t size, const rtc::SocketAddress& addr, const rtc::PacketOptions& options, bool payload) argument
H A Dportinterface.h102 const rtc::PacketOptions& options, bool payload) = 0;
H A Dportproxy.h73 bool payload);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dpubsubclient.cc54 const std::string& itemid, XmlElement* payload, std::string* task_id_out) {
56 children.push_back(payload);
53 PublishItem( const std::string& itemid, XmlElement* payload, std::string* task_id_out) argument
H A Dpubsubclient.h92 // Publish an item. Takes ownership of payload.
94 XmlElement* payload,
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_format_vp8.cc26 const uint8_t* data; // Start address of parsed payload data.
27 int data_length; // Length of parsed payload data.
104 // Advance data and decrease remaining payload size.
136 // Included in payload header for I-frames.
166 // Payload header (considered part of the actual payload, sent to decoder)
176 ParsedPayload* payload) {
178 // Parse mandatory first byte of payload descriptor.
202 // Advance data and decrease remaining payload size.
216 LOG(LS_ERROR) << "Error parsing VP8 payload descriptor!";
220 // Read P bit from payload heade
173 ParseVP8(WebRtcRTPHeader* rtp_header, const uint8_t* data, int data_length, ParsedPayload* payload) argument
[all...]
H A Drtp_sender_audio.h34 RtpUtility::Payload*& payload);
61 // Set payload type for Redundant Audio Data RFC 2198
64 // Get payload type for Redundant Audio Data RFC 2198
H A Drtp_sender_video.h43 RtpUtility::Payload*& payload);
125 // Bitrate used for FEC payload, RED headers, RTP headers for FEC packets
128 // Bitrate used for video payload and RTP headers
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/testAPI/
H A Dtest_api_video.cc104 // Correct seq num, timestamp and payload type.
177 const uint8_t* payload = padding_packet + header.headerLength; local
179 EXPECT_TRUE(rtp_receiver_->IncomingRtpPacket(header, payload,
/external/deqp/framework/delibs/decpp/
H A DdeThreadSafeRingBuffer.cpp42 Message (deUint16 threadId, deUint16 payload) argument
43 : data((threadId << 16) | payload)
163 // Verify payload sums.
/external/fio/
H A Dserver.h25 * These must be immediately before the payload, anything before
29 uint16_t pdu_crc16; /* payload checksum */
30 uint8_t payload[]; /* payload */ member in struct:fio_net_cmd
210 memcpy(&cmd->payload, pdu, pdu_len);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeAdaptor`1.cs41 * then the token just becomes the payload. This is the most
49 T Create(IToken payload); argument
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeAdaptor.java47 * then the token just becomes the payload. This is the most
52 public Object create(Token payload); argument
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCommonTreeAdaptor.h42 - (ANTLRCommonTree *) create:(id<ANTLRToken>) payload;
/external/chromium_org/chrome/browser/chromeos/attestation/
H A Dattestation_policy_browsertest.cc62 return device_policy()->payload().mutable_attestation_settings();
/external/chromium_org/chrome/renderer/media/
H A Dcast_rtp_stream.h36 // Defines the basic properties of a payload supported by cast transport.
55 // Update frequency of payload sample.
95 CastRtpPayloadParams payload; member in struct:CastRtpParams
/external/chromium_org/components/copresence/rpc/
H A Drpc_handler_unittest.cc270 messages_by_subscription_["Subscription 1"][0].payload());
272 messages_by_subscription_["Subscription 2"][0].payload());
274 messages_by_subscription_["Subscription 1"][1].payload());
276 messages_by_subscription_["Subscription 2"][1].payload());
/external/chromium_org/content/public/browser/
H A Dresource_dispatcher_host_delegate.h92 // If the stream will be rendered in a BrowserPlugin, |payload| will contain
98 std::string* payload);
/external/chromium_org/media/cast/net/rtcp/
H A Dtest_rtcp_packet_builder.h90 void AddRtcpHeader(int payload, int format_or_count);
/external/chromium_org/mojo/public/cpp/bindings/
H A Dmessage.h18 // followed by payload.
58 // Access the payload.
59 const uint8_t* payload() const { function in class:mojo::Message
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Djspipe_event_emitter.h59 Error SendMessageToJS(PP_Var operation, PP_Var payload);
/external/chromium_org/third_party/hwcplus/include/log/
H A Dlog.h533 #define android_bWriteLog(tag, payload, len) \
534 __android_log_bwrite(tag, payload, len)
535 #define android_btWriteLog(tag, type, payload, len) \
536 __android_log_btwrite(tag, type, payload, len)
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/interface/
H A Daudio_decoder.h97 virtual int IncomingPacket(const uint8_t* payload,
106 // Returns the duration in samples of the payload in |encoded| which is
111 // Returns the duration in samples of the redandant payload in |encoded| which
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
H A Dneteq_quality_test.h78 // 2. save the bit stream to |payload| of |max_bytes| bytes in size,
79 // 3. returns the length of the payload (in bytes),
81 uint8_t* payload, int max_bytes) = 0;
87 // DecodeBlock() decodes a block of audio using the payload stored in
/external/chromium_org/ui/login/
H A Dscreen.js115 * C++ with "action" property's value as payload.
150 var payload = Array.prototype.slice.call(arguments, 1);
151 chrome.send(fullMessageName, payload);

Completed in 2593 milliseconds

<<11121314151617181920>>