Searched defs:Channel (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dservice.h56 class Channel : public std::enable_shared_from_this<Channel> { class in namespace:android::pdx
58 Channel() {} function in class:android::pdx::Channel
59 virtual ~Channel() {}
64 static std::shared_ptr<Channel> GetFromMessageInfo(const MessageInfo& info);
196 int flags, const std::shared_ptr<Channel>& channel, int* channel_id);
203 Service* service, int flags, const std::shared_ptr<Channel>& channel,
208 * If the channel reference in question is valid, the Channel object is
224 std::shared_ptr<Channel>* channel) const;
231 std::shared_ptr<Channel>* channe
[all...]
/frameworks/support/tv-provider/src/android/support/media/tv/
H A DChannel.java44 * Channel channel = new Channel.Builder()
45 * .setDisplayName("Channel Name")
46 * .setDescription("Channel description")
55 * Channel channel;
59 * channel = Channel.fromCursor(cursor);
66 * Channel updatedChannel = new Channel.Builder(channel)
80 public final class Channel { class
97 private Channel(Builde method in class:Channel
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pManager.java670 * Most p2p operations require a Channel as an argument. An instance of Channel is obtained
673 public static class Channel implements AutoCloseable { class in class:WifiP2pManager
675 public Channel(Context context, Looper looper, ChannelListener l, Binder binder, method in class:WifiP2pManager.Channel
705 Log.w(TAG, "Channel.close(): Null mP2pManager!?");
910 private static void checkChannel(Channel c) {
911 if (c == null) throw new IllegalArgumentException("Channel needs to be initialized");
936 * @return Channel instance that is necessary for performing any further p2p operations
938 public Channel initialize(Context srcContext, Looper srcLooper, ChannelListener listener) {
940 Channel channe
[all...]

Completed in 161 milliseconds