Home
last modified time | relevance | path

Searched refs:internal_connection_ref (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/floss/pandora/floss/
Dutils.py417 internal_connection_ref = os_pb2.InternalConnectionRef(address=address_to(connection.address),
419 cookie = any_pb2.Any(value=internal_connection_ref.SerializeToString())
425 internal_connection_ref = os_pb2.InternalConnectionRef()
426 internal_connection_ref.ParseFromString(connection.cookie.value)
427 return Connection(address=address_from(internal_connection_ref.address),
428 transport=internal_connection_ref.transport)
/packages/modules/Bluetooth/android/pandora/server/src/
DUtils.kt350 val internal_connection_ref = in Intent() constant
355 val cookie = Any.newBuilder().setValue(internal_connection_ref.toByteString()).build() in Intent()