OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PacketType
(Results
1 - 5
of
5
) sorted by null
/external/dropbear/
packet.h
38
typedef struct
PacketType
{
41
}
packettype
;
typedef in typeref:struct:PacketType
/external/llvm/lib/Analysis/
ProfileDataLoader.cpp
129
unsigned
PacketType
;
130
while (fread(&
PacketType
, sizeof(unsigned), 1, F) == 1) {
135
bool ShouldByteSwap = (char)
PacketType
== 0;
136
PacketType
= ShouldByteSwap ? ByteSwap_32(
PacketType
) :
PacketType
;
138
switch (
PacketType
) {
ProfileInfoLoader.cpp
96
unsigned
PacketType
;
97
while (fread(&
PacketType
, sizeof(unsigned), 1, F) == 1) {
101
bool ShouldByteSwap = (char)
PacketType
== 0;
102
PacketType
= ByteSwap(
PacketType
, ShouldByteSwap);
104
switch (
PacketType
) {
148
errs() << ToolName << ": Unknown packet type #" <<
PacketType
<< "!\n";
/external/chromium/third_party/libjingle/source/talk/session/phone/
channel.cc
64
static const char*
PacketType
(bool rtcp) {
278
<<
PacketType
(rtcp) << " packet: wrong size="
333
<<
PacketType
(rtcp) << " packet: wrong size="
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
channel.cc
353
static const char*
PacketType
(bool rtcp) {
658
<<
PacketType
(rtcp) << " packet: wrong size="
704
LOG(LS_ERROR) << "Can't send outgoing " <<
PacketType
(rtcp)
734
<<
PacketType
(rtcp) << " packet: wrong size="
805
LOG(LS_WARNING) << "Can't process incoming " <<
PacketType
(rtcp)
971
<<
PacketType
(rtcp_channel);
[
all
...]
Completed in 1062 milliseconds