OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WithCName
(Results
1 - 5
of
5
) sorted by null
/external/webrtc/webrtc/modules/rtp_rtcp/source/
rtcp_packet_unittest.cc
164
EXPECT_TRUE(sdes.
WithCName
(kSenderSsrc, "alice@host"));
177
EXPECT_TRUE(sdes.
WithCName
(kSenderSsrc, "a"));
178
EXPECT_TRUE(sdes.
WithCName
(kSenderSsrc + 1, "ab"));
179
EXPECT_TRUE(sdes.
WithCName
(kSenderSsrc + 2, "abc"));
180
EXPECT_TRUE(sdes.
WithCName
(kSenderSsrc + 3, "abcd"));
181
EXPECT_TRUE(sdes.
WithCName
(kSenderSsrc + 4, "abcde"));
182
EXPECT_TRUE(sdes.
WithCName
(kSenderSsrc + 5, "abcdef"));
200
EXPECT_TRUE(sdes.
WithCName
(ssrc, oss.str()));
202
EXPECT_FALSE(sdes.
WithCName
(kSenderSsrc + kMaxChunks, "foo"));
207
EXPECT_TRUE(sdes.
WithCName
(kSenderSsrc, ""))
[
all
...]
rtcp_packet.h
233
bool
WithCName
(uint32_t ssrc, const std::string& cname);
rtcp_sender.cc
501
sdes->
WithCName
(ssrc_, cname_);
504
sdes->
WithCName
(it.first, it.second);
[
all
...]
rtcp_packet.cc
431
bool Sdes::
WithCName
(uint32_t ssrc, const std::string& cname) {
rtcp_receiver_unittest.cc
449
sdes.
WithCName
(kSenderSsrc, "alice@host");
461
sdes.
WithCName
(kSenderSsrc, "alice@host");
[
all
...]
Completed in 46 milliseconds