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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/features/
feature_channel.cc 11 const VersionInfo::Channel kDefaultChannel = VersionInfo::CHANNEL_STABLE;
12 VersionInfo::Channel g_current_channel = kDefaultChannel;
18 VersionInfo::Channel GetCurrentChannel() {
22 void SetCurrentChannel(VersionInfo::Channel channel) {
23 g_current_channel = channel;
26 VersionInfo::Channel GetDefaultChannel() {
feature_channel.h 12 // Gets the current channel as seen by the Feature system.
13 chrome::VersionInfo::Channel GetCurrentChannel();
15 // Sets the current channel as seen by the Feature system. In the browser
18 void SetCurrentChannel(chrome::VersionInfo::Channel channel);
20 // Gets the default channel as seen by the Feature system.
21 chrome::VersionInfo::Channel GetDefaultChannel();
23 // Scoped channel setter. Use for tests.
26 explicit ScopedCurrentChannel(chrome::VersionInfo::Channel channel)
    [all...]
  /external/openssh/openbsd-compat/
port-tun.h 20 struct Channel;
29 int sys_tun_infilter(struct Channel *, char *, int);
30 u_char *sys_tun_outfilter(struct Channel *, u_char **, u_int *);
  /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.
  /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...]
  /external/openssh/
channels.h 41 /* Definitions for channel types. */
45 #define SSH_CHANNEL_OPEN 4 /* normal open two-way channel */
60 struct Channel;
61 typedef struct Channel Channel;
65 typedef int channel_infilter_fn(struct Channel *, char *, int);
67 typedef u_char *channel_outfilter_fn(struct Channel *, u_char **, u_int *);
69 /* Channel success/failure callbacks */
70 typedef void channel_confirm_cb(int, struct Channel *, void *);
71 typedef void channel_confirm_abandon_cb(struct Channel *, void *)
    [all...]
clientloop.h 53 int client_simple_escape_filter(Channel *, char *, int);
59 /* Channel request confirmation callbacks */
76 void mux_exit_message(Channel *, int);
77 void mux_tty_alloc_failed(Channel *);
nchan.c 45 * SSH Protocol 1.5 aka New Channel Protocol
61 * i.e. both sides have to close the channel
70 /* functions manipulating channel states */
72 * EVENTS update channel input/output states execute ACTIONS
75 * ACTIONS: should never update the channel states
77 static void chan_send_ieof1(Channel *);
78 static void chan_send_oclose1(Channel *);
79 static void chan_send_close2(Channel *);
80 static void chan_send_eof2(Channel *);
81 static void chan_send_eow2(Channel *);
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
ChannelSystem.java 24 private FixedSizeArray<Channel> mChannels;
25 private Channel mSearchDummy;
30 mChannels = new FixedSizeArray<Channel>(CHANNEL_COUNT);
32 mSearchDummy = new Channel();
35 mChannels.add(new Channel());
51 public Channel registerChannel(String name) {
52 Channel result = null;
56 // Add a new channel.
57 assert mRegisteredChannelCount < CHANNEL_COUNT : "Channel pool exhausted!";
72 public class Channel {
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_in_process_router.h 22 // This class fakes an IPC channel so that we can take the new resources with
45 // To keep things consistent, we provide an IPC::Sender for the browser channel
46 // in the connection object supplied to resources. This dummy browser channel
59 // emulated channel.
80 class Channel;
81 scoped_ptr<Channel> browser_channel_;
83 // Renderer -> plugin channel.
84 scoped_ptr<Channel> host_to_plugin_router_;
86 // Plugin -> renderer channel.
87 scoped_ptr<Channel> plugin_to_host_router_
    [all...]
  /external/chromium_org/chrome/common/
chrome_version_info_chromeos.cc 9 static VersionInfo::Channel chromeos_channel = VersionInfo::CHANNEL_UNKNOWN;
31 VersionInfo::Channel VersionInfo::GetChannel() {
36 void VersionInfo::SetChannel(const std::string& channel) {
38 if (channel == "stable-channel") {
40 } else if (channel == "beta-channel") {
42 } else if (channel == "dev-channel") {
44 } else if (channel == "canary-channel")
    [all...]
chrome_version_info.h 22 enum Channel {
60 // build, this modifier is the channel ("canary", "dev", or "beta", but ""
63 // "dev-m", "beta-m", and for a stable channel multi-user installation, "m".
64 // In branded builds, when the channel cannot be determined, "unknown" will
68 // To simply test the channel, use GetChannel().
71 // Returns the channel for the installation. In branded builds, this will be
73 // builds, or in branded builds when the channel cannot be determined, this
75 static Channel GetChannel();
78 // Sets channel before use.
79 static void SetChannel(const std::string& channel);
    [all...]
  /external/chromium_org/cloud_print/service/win/
service_listener.h 18 class Channel;
36 scoped_ptr<IPC::Channel> channel_;
  /external/chromium_org/content/common/
font_cache_dispatcher_win.h 30 virtual void OnFilterAdded(IPC::Channel* channel) OVERRIDE;
38 IPC::Channel* channel_;
  /external/chromium_org/ipc/
ipc_channel_posix_unittest.cc 100 IPC::Channel::Mode mode);
141 IPC::Channel::Mode mode) {
156 if (mode == IPC::Channel::MODE_NAMED_SERVER) {
171 } else if (mode == IPC::Channel::MODE_NAMED_CLIENT) {
188 // current run loop on any channel activity.
199 SetUpSocket(&handle, IPC::Channel::MODE_NAMED_SERVER);
201 IPC::Channel channel(handle, IPC::Channel::MODE_NAMED_SERVER, NULL);
202 ASSERT_TRUE(channel.Connect())
    [all...]
ipc_channel_nacl.cc 38 contents->data.resize(Channel::kReadBufferSize);
64 class Channel::ChannelImpl::ReaderThreadRunner
93 Channel::ChannelImpl::ReaderThreadRunner::ReaderThreadRunner(
104 void Channel::ChannelImpl::ReaderThreadRunner::Run() {
120 Channel::ChannelImpl::ChannelImpl(const IPC::ChannelHandle& channel_handle,
137 Channel::ChannelImpl::~ChannelImpl() {
141 bool Channel::ChannelImpl::Connect() {
143 DLOG(INFO) << "Channel creation failed: " << pipe_name_;
147 // Note that Connect is called on the "Channel" thread (i.e., the same thread
148 // where Channel::Send will be called, and the same thread that should receiv
    [all...]
ipc_channel_posix.cc 48 // channel ids as the pipe names. Channels on POSIX use sockets as
52 // the fork arranges it such that the initial control channel ends up on the
57 // A POSIX IPC channel can also be set up as a server for a bound UNIX domain
102 // Lookup a given channel id. Return -1 if not found.
112 // Remove the mapping for the given channel id. No error is signaled if the
165 int Channel::ChannelImpl::global_pid_ = 0;
168 Channel::ChannelImpl::ChannelImpl(const IPC::ChannelHandle& channel_handle,
194 Channel::ChannelImpl::~ChannelImpl() {
222 bool Channel::ChannelImpl::CreatePipe(
227 // 1) It's a channel wrapping a pipe that is given to us
    [all...]
ipc_channel_win.cc 26 Channel::ChannelImpl::State::State(ChannelImpl* channel) : is_pending(false) {
28 context.handler = channel;
31 Channel::ChannelImpl::State::~State() {
32 COMPILE_ASSERT(!offsetof(Channel::ChannelImpl::State, context),
36 Channel::ChannelImpl::ChannelImpl(const IPC::ChannelHandle &channel_handle,
51 Channel::ChannelImpl::~ChannelImpl() {
55 void Channel::ChannelImpl::Close() {
83 bool Channel::ChannelImpl::Send(Message* message) {
85 DVLOG(2) << "sending message @" << message << " on channel @" << thi
    [all...]
  /external/chromium_org/content/renderer/
render_thread_impl_browsertest.cc 43 std::string channel_id = IPC::Channel::GenerateVerifiedChannelID(
46 IPC::Channel channel(channel_id, IPC::Channel::MODE_SERVER, &dummy_listener);
47 ASSERT_TRUE(channel.Connect());
  /external/chromium_org/components/nacl/broker/
nacl_broker_listener.h 15 class Channel;
45 scoped_ptr<IPC::Channel> channel_;
  /external/chromium_org/ppapi/proxy/
plugin_message_filter.h 21 // There is one instance of this class for each renderer channel (same as for
34 virtual void OnFilterAdded(IPC::Channel* channel) OVERRIDE;
49 // The IPC channel to the renderer. May be NULL if we're not currently
51 IPC::Channel* channel_;

Completed in 632 milliseconds

1 2 3 4 5 6 7 8 91011>>