HomeSort by relevance Sort by last modified time
    Searched refs:Channel (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/chromium/chrome/common/extensions/docs/server/
chromeextensionsdocs.py 20 class Channel():
33 Channel.DEV = Channel("dev", "2.0-dev")
34 Channel.BETA = Channel("beta", "1.1-beta")
35 Channel.STABLE = Channel("stable", "")
36 Channel.CHANNELS = [Channel.DEV, Channel.BETA, Channel.STABLE
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
InterruptibleChannel.java 25 * A channel that can be asynchronously closed permits that a thread blocked on
27 * the channel's {@link #close()} method. The I/O thread will throw an
28 * {@link AsynchronousCloseException} and the channel will be closed.
30 * A channel that is interruptible permits a thread blocked on an I/O operation
34 * its interrupted status set and the channel will be closed. If the I/O thread
38 public interface InterruptibleChannel extends Channel {
41 * Closes the channel.
43 * Any threads that are blocked on I/O operations on this channel will be
45 * method behaves the same as defined in the {@code Channel} interface.
48 * if an I/O error occurs while closing the channel
    [all...]
Channel.java 23 * A channel is a conduit to I/O services covering such items as files, sockets,
26 * Channels are open upon creation, and can be closed explicitly. Once a channel
28 * on the closed channel result in a <code>ClosedChannelException</code>.
30 * Particular implementations or sub-interfaces of {@code Channel} dictate
33 public interface Channel extends Closeable {
36 * Returns true if this channel is open.
41 * Closes an open channel. If the channel is already closed then this method
42 * has no effect. If there is a problem with closing the channel then the
46 * If an attempt is made to perform an operation on a closed channel then
    [all...]
ReadableByteChannel.java 23 * A {@code ReadableByteChannel} is a type of {@link Channel} that can read
27 * if a read is already in progress on the channel then subsequent reads will
31 public interface ReadableByteChannel extends Channel {
34 * Reads bytes from the channel into the given buffer.
43 * same channel.
53 * if another thread closes the channel during the read.
57 * thread is set and the channel is closed.
59 * if the channel is closed.
63 * if the channel was not opened for reading.
WritableByteChannel.java 23 * A {@code WritableByteChannel} is a type of {@link Channel} that can write
27 * if a write is already in progress on the channel then subsequent writes will
31 public interface WritableByteChannel extends Channel {
34 * Writes bytes from the given buffer to the channel.
42 * same channel.
52 * if the channel was not opened for writing.
54 * if the channel was already closed.
56 * if another thread closes the channel during the write.
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/dropbear/
channel.h 32 /* channel->type values */
60 struct Channel {
62 unsigned int index; /* the local channel index */
80 int initconn; /* used for TCP forwarding, whether the channel has been
84 for this channel (and are awaiting a confirmation
95 int sepfds; /* Whether this channel has seperate pipes for in/out or not */
97 int (*inithandler)(struct Channel*);
98 int (*check_close)(struct Channel*);
99 void (*reqhandler)(struct Channel*);
100 void (*closehandler)(struct Channel*);
    [all...]
cli-channel.c 26 #include "channel.h"
33 /* We receive channel data - only used by the client chansession code*/
36 struct Channel *channel; local
41 channel = getchannel();
43 if (channel->type != &clichansess) {
56 common_recv_msg_channel_data(channel, channel->errfd, channel->extrabuf);
cli-chansession.c 31 #include "channel.h"
37 static void cli_closechansess(struct Channel *channel);
38 static int cli_initchansess(struct Channel *channel);
39 static void cli_chansessreq(struct Channel *channel);
41 static void start_channel_request(struct Channel *channel, unsigned char *type);
43 static void send_chansess_pty_req(struct Channel *channel)
267 struct Channel *channel = NULL; local
    [all...]
common-channel.c 34 #include "channel.h"
40 static void send_msg_channel_open_confirmation(struct Channel* channel,
43 static void writechannel(struct Channel* channel, int fd, circbuffer *cbuf);
44 static void send_msg_channel_window_adjust(struct Channel *channel,
46 static void send_msg_channel_data(struct Channel *channel, int isextended);
47 static void send_msg_channel_eof(struct Channel *channel)
193 struct Channel *channel; local
437 struct Channel * channel; local
482 struct Channel * channel; local
498 struct Channel * channel; local
557 struct Channel *channel; local
654 struct Channel *channel; local
723 struct Channel * channel; local
758 struct Channel *channel; local
984 struct Channel * channel; local
1019 struct Channel * channel; local
    [all...]
svr-chansession.c 30 #include "channel.h"
43 static int sessioncommand(struct Channel *channel, struct ChanSess *chansess,
47 static int noptycommand(struct Channel *channel, struct ChanSess *chansess);
48 static int ptycommand(struct Channel *channel, struct ChanSess *chansess);
53 static void closechansess(struct Channel *channel);
54 static int newchansess(struct Channel *channel)
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pManager.java 296 /** Interface for callback invocation when framework channel is lost */
299 * The channel to the framework has been disconnected.
345 * A channel that connects the application to the Wifi p2p framework.
346 * Most p2p operations require a Channel as an argument. An instance of Channel is obtained
349 public static class Channel {
350 Channel(Looper looper, ChannelListener l) {
446 * @return Channel instance that is necessary for performing any further p2p operations
448 public Channel initialize(Context srcContext, Looper srcLooper, ChannelListener listener) {
452 Channel c = new Channel(srcLooper, listener)
    [all...]
  /external/chromium/chrome/browser/importer/
firefox_importer_unittest_utils.h 16 class Channel;
53 scoped_ptr<IPC::Channel> channel_;
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...]
  /libcore/luni/src/main/java/java/nio/channels/spi/
AbstractInterruptibleChannel.java 22 import java.nio.channels.Channel;
30 * The basic usage pattern for an interruptible channel is to invoke
36 public abstract class AbstractInterruptibleChannel implements Channel, InterruptibleChannel {
60 * Closes an open channel. If the channel is already closed then this method
64 * If an attempt is made to perform an operation on a closed channel then a
67 * If multiple threads attempt to simultaneously close a channel, then only
72 * if a problem occurs while closing this channel.
73 * @see java.nio.channels.Channel#close()
103 * if this channel is closed by another thread while this metho
    [all...]
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 {
  /external/chromium/chrome/browser/
gpu_process_host_ui_shim.h 53 : public IPC::Channel::Listener,
54 public IPC::Channel::Sender,
71 // IPC::Channel::Sender implementation.
74 // IPC::Channel::Listener implementation.
123 IPC::Channel::Sender* ui_thread_sender_;
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/chromium/chrome/browser/sync/syncable/
directory_manager.h 49 typedef EventChannel<DirectoryManagerEvent> Channel;
74 Channel* channel() const { return channel_; } function in class:syncable::DirectoryManager
102 Channel* const channel_;
  /external/opencv/otherlibs/highgui/
grfmt_exr.h 80 const Channel *m_red;
81 const Channel *m_green;
82 const Channel *m_blue;
  /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...]
  /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/common/deprecated/
event_sys_unittest.cc 39 typedef EventChannel<TestEventTraits> Channel;
42 event_channel_ = new Channel(shutdown);
60 Channel* event_channel() const { return event_channel_; }
66 Channel* event_channel_;
77 void Hookup(const std::string name, Pair::Channel* channel) {
78 hookups_.push_back(NewEventListenerHookup(channel, this,
  /development/tools/a3dconvert/
SimpleMesh.h 28 struct Channel {
36 std::vector<Channel> mChannels;
51 // Adds another data channel (position, normal, etc.)
53 mChannels.push_back(Channel());
77 // Generate the element that describes our channel layout

Completed in 3804 milliseconds

1 2 3