OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PCP
(Results
1 - 5
of
5
) sorted by null
/external/clang/test/Sema/
block-call.c
45
char (^
PCP
)(double, double, char);
50
char ch =
PCP
(1.0, 2.0, 'a');
51
return
PCP
(1.0, 2.0); // expected-error {{too few arguments to block}}
/external/clang/test/SemaCXX/
block-call.cpp
45
char (^
PCP
)(double, double, char);
50
char ch =
PCP
(1.0, 2.0, 'a');
51
return
PCP
(1.0, 2.0); // expected-error {{too few arguments to block}}
/external/webrtc/webrtc/test/channel_transport/
udp_transport.h
226
// which then can be mapped to a
PCP
value with vconfig.
227
virtual int32_t SetPCP(const int32_t
PCP
) = 0;
230
virtual int32_t
PCP
(int32_t&
PCP
) const = 0;
udp_transport_impl.h
83
int32_t SetPCP(const int32_t
PCP
) override;
84
int32_t
PCP
(int32_t&
PCP
) const override;
udp_transport_impl.cc
470
"
PCP
already enabled, can't use
PCP
and QoS at the same time");
932
int32_t UdpTransportImpl::SetPCP(int32_t
PCP
)
941
if ((
PCP
< 0) || (
PCP
> 7))
943
WEBRTC_TRACE(kTraceError, kTraceTransport, _id, "Invalid
PCP
");
987
if (rtpSock->SetPCP(
PCP
) != 0)
990
"Could not set
PCP
value on RTP socket");
994
if (rtcpSock->SetPCP(
PCP
) != 0)
997
"Could not set
PCP
value on RTCP socket")
[
all
...]
Completed in 469 milliseconds