Lines Matching defs:data
40 bool GetUint8(const void* data, size_t offset, int* value) { in GetUint8()
48 bool GetUint16(const void* data, size_t offset, int* value) { in GetUint16()
57 bool GetUint32(const void* data, size_t offset, uint32_t* value) { in GetUint32()
65 bool SetUint8(void* data, size_t offset, uint8_t value) { in SetUint8()
73 bool SetUint16(void* data, size_t offset, uint16_t value) { in SetUint16()
81 bool SetUint32(void* data, size_t offset, uint32_t value) { in SetUint32()
89 bool GetRtpFlags(const void* data, size_t len, int* value) { in GetRtpFlags()
96 bool GetRtpPayloadType(const void* data, size_t len, int* value) { in GetRtpPayloadType()
107 bool GetRtpSeqNum(const void* data, size_t len, int* value) { in GetRtpSeqNum()
114 bool GetRtpTimestamp(const void* data, size_t len, uint32_t* value) { in GetRtpTimestamp()
121 bool GetRtpSsrc(const void* data, size_t len, uint32_t* value) { in GetRtpSsrc()
128 bool GetRtpHeaderLen(const void* data, size_t len, size_t* value) { in GetRtpHeaderLen()
146 bool GetRtpHeader(const void* data, size_t len, RtpHeader* header) { in GetRtpHeader()
153 bool GetRtcpType(const void* data, size_t len, int* value) { in GetRtcpType()
163 bool GetRtcpSsrc(const void* data, size_t len, uint32_t* value) { in GetRtcpSsrc()
174 bool SetRtpSsrc(void* data, size_t len, uint32_t value) { in SetRtpSsrc()
179 bool SetRtpHeader(void* data, size_t len, const RtpHeader& header) { in SetRtpHeader()
192 bool IsRtpPacket(const void* data, size_t len) { in IsRtpPacket()