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

/frameworks/base/core/java/android/se/omapi/
H A DChannel.java42 public final class Channel implements java.nio.channels.Channel { class in inherits:java.nio.channels.Channel
44 private static final String TAG = "OMAPI.Channel";
50 Channel(@NonNull SEService service, @NonNull Session session, method in class:Channel
233 * The select response stored in the Channel object shall be updated with the APDU
/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/main/java/androidx/tvprovider/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)
79 public final class Channel { class
96 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...]
/frameworks/base/media/java/android/media/audiofx/
H A DDynamicsProcessing.java41 * Channel 0 Channel 1 .... Channel N-1
259 Channel channel = queryEngineByChannelIndex(ch);
1024 * Class for Channel configuration parameters. It is composed of multiple stages, which can be
1028 public final static class Channel { class in class:DynamicsProcessing
1036 * Class constructor for Channel configuration.
1051 public Channel (float inputGain, method in class:DynamicsProcessing.Channel
1068 * Class constructor for Channel configuration
1071 public Channel(Channe method in class:DynamicsProcessing.Channel
[all...]

Completed in 272 milliseconds