Home
last modified time | relevance | path

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

/external/webrtc/api/transport/
Dstun_unittest.cc1415 auto attr = StunAttribute::CreateByteString(STUN_ATTR_USERNAME); in TEST_F()
1555 auto bytes2 = StunAttribute::CreateByteString(STUN_ATTR_USERNAME); in TEST_F()
1573 bytes2 = StunAttribute::CreateByteString(STUN_ATTR_MAGIC_COOKIE); in TEST_F()
1613 bytes2 = StunAttribute::CreateByteString(STUN_ATTR_DATA); in TEST_F()
1644 auto attr = StunAttribute::CreateByteString(STUN_ATTR_USERNAME); in TEST_F()
1661 auto attr = StunAttribute::CreateByteString(STUN_ATTR_USERNAME); in TEST_F()
1667 auto attr = StunAttribute::CreateByteString(STUN_ATTR_USERNAME); in TEST_F()
1698 auto attr = StunAttribute::CreateByteString(STUN_ATTR_USERNAME); in TEST_F()
1715 auto attr = StunAttribute::CreateByteString(STUN_ATTR_USERNAME); in TEST_F()
1764 auto bytes2 = StunAttribute::CreateByteString(STUN_ATTR_USERNAME); in TEST_F()
[all …]
Dstun.h307 static std::unique_ptr<StunByteStringAttribute> CreateByteString(
Dstun.cc697 std::unique_ptr<StunByteStringAttribute> StunAttribute::CreateByteString( 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.go745 b.CreateByteString([]byte("foo"))
747 b.CreateByteString([]byte("moop"))
1414 b.CreateByteString([]byte("foo"))
/external/flatbuffers/tests/MyGame/Example/
DMonster.go65 inventoryOffset = builder.CreateByteString(t.Inventory)
107 testnestedflatbufferOffset = builder.CreateByteString(t.Testnestedflatbuffer)
143 flexOffset = builder.CreateByteString(t.Flex)
/external/flatbuffers/go/
Dbuilder.go342 func (b *Builder) CreateByteString(s []byte) UOffsetT { func