HomeSort by relevance Sort by last modified time
    Searched refs:Channel (Results 26 - 50 of 144) sorted by null

12 3 4 5 6

  /external/opencv/otherlibs/highgui/
grfmt_exr.h 80 const Channel *m_red;
81 const Channel *m_green;
82 const Channel *m_blue;
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pManager.java 486 /** Interface for callback invocation when framework channel is lost */
489 * The channel to the framework has been disconnected.
661 * A channel that connects the application to the Wifi p2p framework.
662 * Most p2p operations require a Channel as an argument. An instance of Channel is obtained
665 public static class Channel {
666 Channel(Context context, Looper looper, ChannelListener l) {
    [all...]
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
WiFiDirectBroadcastReceiver.java 25 import android.net.wifi.p2p.WifiP2pManager.Channel;
35 private Channel channel; field in class:WiFiDirectBroadcastReceiver
40 * @param channel Wifi p2p channel
43 public WiFiDirectBroadcastReceiver(WifiP2pManager manager, Channel channel,
47 this.channel = channel;
78 manager.requestPeers(channel, (PeerListListener) activity.getFragmentManager(
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonTokenStream.cs 42 * and tokens are prefiltered for a certain channel (the parser will only
43 * see these tokens and cannot change the filter channel number during the
52 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
64 public CommonTokenStream(ITokenSource tokenSource, int channel)
67 this._channel = channel;
70 public int Channel
92 /** Always leave p on an on-channel token. */
111 // skip off-channel tokens
133 // skip off-channel tokens
144 /** Given a starting index, return the index of the first on-channel
    [all...]
ClassicToken.cs 51 int channel = TokenChannels.Default; field in class:Antlr.Runtime.ClassicToken
67 channel = oldToken.Channel;
76 public ClassicToken( int type, string text, int channel )
80 this.channel = channel;
132 public int Channel
136 return channel;
140 channel = value;
194 if ( channel > 0
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
SelectableChannel.java 24 * A channel that can be used with a {@link Selector}. The channel must be
26 * which return a {@link SelectionKey} object. In order to deregister a channel
29 * done implicitly when the channel or the selector is closed.
31 * A channel may be registered with several selectors at the same time but only
35 implements Channel {
52 * Sets the blocking mode of this channel. A call to this method blocks if
60 * {@code true} for setting this channel's mode to blocking,
62 * @return this channel.
64 * if this channel is closed
    [all...]
  /external/chromium/chrome/browser/
plugin_data_remover.h 22 public IPC::Channel::Listener {
54 // IPC::Channel::Listener methods.
66 // Connects the client side of a newly opened plug-in channel.
81 // We own the channel, but it's used on the IO thread, so it needs to be
84 IPC::Channel* channel_;
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
Channel.java 5 package ch.ethz.ssh2.channel;
8 * Channel.
11 * @version $Id: Channel.java 14 2011-05-27 14:28:21Z dkocher@sudo.ch $
13 public class Channel
37 * ====> Always keep that in mind when modifying the Channel/ChannelManger
59 // These two fields will only be written while the Channel is in state
63 // Therefore, if you know that the Channel is in state STATE_OPEN, then you
64 // can read these two fields without synchronizing on the Channel. However, make
66 // object). However, to be on the safe side, you can lock the channel.
76 * we cannot keep a lock on the Channel during the send operation (thi
    [all...]
ChannelInputStream.java 5 package ch.ethz.ssh2.channel;
18 Channel c;
24 ChannelInputStream(Channel c, boolean isExtended)
ChannelOutputStream.java 5 package ch.ethz.ssh2.channel;
18 Channel c;
22 ChannelOutputStream(Channel c)
RemoteAcceptThread.java 5 package ch.ethz.ssh2.channel;
22 Channel c;
33 public RemoteAcceptThread(Channel c, String remoteConnectedAddress, int remoteConnectedPort,
79 /* If the channel is already closed, then this is a no-op */
  /external/replicaisland/src/com/replica/replicaisland/
ButtonAnimationComponent.java 27 private ChannelSystem.Channel mChannel;
78 public void setChannel(ChannelSystem.Channel channel) {
79 mChannel = channel;
  /libcore/luni/src/main/java/java/nio/channels/spi/
SelectorProvider.java 22 import java.nio.channels.Channel;
88 * @return the new channel.
115 * @return the new channel.
125 * @return the new channel.
132 * Returns the channel inherited from the process that created this VM.
136 * @return the channel.
140 public Channel inheritedChannel() throws IOException {
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
PsdFile.java 292 final Channel[] mChannelInfo = new Channel[mChannelCount];
321 mChannelInfo[0] = new Channel(Channel.ID_ALPHA, length);
322 mChannelInfo[1] = new Channel(Channel.ID_RED, length);
323 mChannelInfo[2] = new Channel(Channel.ID_GREEN, length);
324 mChannelInfo[3] = new Channel(Channel.ID_BLUE, length)
    [all...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/util/
PsdFile.java 343 final Channel[] mChannelInfo = new Channel[mChannelCount];
380 mChannelInfo[0] = new Channel(Channel.ID_ALPHA, length);
381 mChannelInfo[1] = new Channel(Channel.ID_RED, length);
382 mChannelInfo[2] = new Channel(Channel.ID_GREEN, length);
383 mChannelInfo[3] = new Channel(Channel.ID_BLUE, length)
    [all...]
  /external/chromium/chrome/browser/importer/
firefox_importer_unittest_utils_mac.cc 24 // Name of IPC Channel to use for Server<-> Child Communications.
29 // |channel| - IPC Channel to use for communication.
33 const IPC::Channel& channel, base::ProcessHandle* handle) {
47 const int ipcfd = channel.GetClientFileDescriptor();
63 // Class to communicate on the server side of the IPC Channel.
67 class FFDecryptorServerChannelListener : public IPC::Channel::Listener {
130 channel_.reset(new IPC::Channel(kTestChannelID,
131 IPC::Channel::MODE_SERVER
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
TestCase.java 20 import android.net.wifi.p2p.WifiP2pManager.Channel;
29 * 3) initialize the fixture state by overriding setUp if needed. At default, p2p channel
52 protected Channel mChannel;
54 protected Channel mSubChannel;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimToken.cs 100 public int Channel
  /external/openssh/
session.h 70 int session_input_channel_req(Channel *, const char *);
channels.c 81 /* -- channel core */
87 static Channel **channels = NULL;
90 * Size of the channel array. All slots of the array must always be
167 static void port_open_helper(Channel *c, char *rtype);
173 /* -- channel core */
175 Channel *
178 Channel *c;
186 logit("channel_by_id: %d: bad id: channel free", id);
193 * Returns the channel if it is allowed to receive protocol messages.
196 Channel *
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ClassicToken.cs 49 int channel = TokenChannels.Default; field in class:Antlr.Runtime.ClassicToken
63 channel = oldToken.Channel;
71 public ClassicToken(int type, string text, int channel) {
74 this.channel = channel;
114 public int Channel {
116 return channel;
119 channel = value;
160 if (channel > 0)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTokenStream.h 38 NSInteger channel; variable
42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel; variable
47 Channel:(NSInteger)aChannel;
51 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSInteger)aChannel;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTokenStream.h 38 NSInteger channel; variable
42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel; variable
47 Channel:(NSInteger)aChannel;
51 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSInteger)aChannel;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTokenStream.h 38 NSInteger channel; variable
42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel; variable
47 Channel:(NSInteger)aChannel;
51 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSInteger)aChannel;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTokenStream.h 39 NSUInteger channel; variable
43 @property (assign, getter=channel,setter=setChannel:) NSUInteger channel; variable
48 Channel:(NSUInteger)aChannel;
52 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSUInteger)aChannel;
68 - (NSUInteger)channel;

Completed in 2841 milliseconds

12 3 4 5 6