HomeSort by relevance Sort by last modified time
    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/chromium_org/third_party/webrtc/test/channel_transport/
udp_transport.h 225 // which then can be mapped to a PCP value with vconfig.
226 virtual int32_t SetPCP(const int32_t PCP) = 0;
229 virtual int32_t PCP(int32_t& PCP) const = 0;
udp_transport_impl.h 88 virtual int32_t SetPCP(const int32_t PCP) OVERRIDE;
89 virtual 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 2832 milliseconds