Home
last modified time | relevance | path

Searched refs:CreateByteString (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/webrtc/p2p/base/
Drelayserver.cc63 StunAttribute::CreateByteString(cricket::STUN_ATTR_MAGIC_COOKIE); in SendStunError()
422 StunAttribute::CreateByteString(cricket::STUN_ATTR_MAGIC_COOKIE); in HandleStunAllocate()
495 StunAttribute::CreateByteString(cricket::STUN_ATTR_MAGIC_COOKIE); in HandleStunSend()
605 StunAttribute::CreateByteString(cricket::STUN_ATTR_MAGIC_COOKIE); in Send()
617 StunAttribute::CreateByteString(STUN_ATTR_DATA); in Send()
Drelayserver_unittest.cc150 StunAttribute::CreateByteString(STUN_ATTR_MAGIC_COOKIE); in AddMagicCookieAttr()
156 StunAttribute::CreateByteString(STUN_ATTR_USERNAME); in AddUsernameAttr()
467 StunAttribute::CreateByteString(STUN_ATTR_DATA); in TEST_F()
510 StunAttribute::CreateByteString(STUN_ATTR_DATA); in TEST_F()
Drelayport.cc578 StunAttribute::CreateByteString(STUN_ATTR_MAGIC_COOKIE); in SendTo()
584 StunAttribute::CreateByteString(STUN_ATTR_USERNAME); in SendTo()
604 StunAttribute::CreateByteString(STUN_ATTR_DATA); in SendTo()
789 StunAttribute::CreateByteString(STUN_ATTR_USERNAME); in Prepare()
Dstun_unittest.cc1366 StunAttribute::CreateByteString(STUN_ATTR_USERNAME); in TEST_F()
1386 bytes2 = StunAttribute::CreateByteString(STUN_ATTR_MAGIC_COOKIE); in TEST_F()
1426 bytes2 = StunAttribute::CreateByteString(STUN_ATTR_DATA); in TEST_F()
Dstun.h241 static StunByteStringAttribute* CreateByteString(uint16_t type);
Dstun.cc475 StunByteStringAttribute* StunAttribute::CreateByteString(uint16_t type) { in CreateByteString() function in cricket::StunAttribute
/external/flatbuffers/docs/source/
DGoApi_generated.txt46 func (b *Builder) CreateByteString(s []byte) UOffsetT
47 CreateByteString writes a byte slice as a string (null-terminated).
/external/flatbuffers/tests/
Dgo_test.go698 b.CreateByteString([]byte("foo"))
700 b.CreateByteString([]byte("moop"))
1344 b.CreateByteString([]byte("foo"))
/external/flatbuffers/go/
Dbuilder.go327 func (b *Builder) CreateByteString(s []byte) UOffsetT { func