HomeSort by relevance Sort by last modified time
    Searched full:channel (Results 426 - 450 of 5269) sorted by null

<<11121314151617181920>>

  /external/chromium_org/net/quic/congestion_control/
channel_estimator.h 6 // those packets where sent we can estimate the max capacity of the channel.
8 // channel capacity.
37 // receive times, and may use that to update the channel bandwidth estimate.
43 // Get the current estimated state and channel capacity.
  /external/chromium_org/remoting/host/
ipc_util.h 31 // Creates an already connected IPC channel. The server end of the channel
32 // is wrapped into a channel proxy that will invoke methods of |listener|
44 // Creates the server end of the IPC channel and applies the security
  /external/chromium_org/remoting/protocol/
channel_authenticator.h 20 // Interface for channel authentications that perform channel-level
21 // authentication. Depending on implementation channel authenticators
23 // should be used only once for one channel.
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
IChannelWorkerThread.java 5 package ch.ethz.ssh2.channel;
RemoteForwardingData.java 5 package ch.ethz.ssh2.channel;
  /external/libxml2/
error.c 174 xmlGenericErrorFunc channel, void *data ) {
206 channel(data ,"%s\n", content);
218 channel(data ,"%s\n", content);
244 xmlGenericErrorFunc channel, void *data)
259 if (channel == NULL) {
260 channel = xmlGenericError;
288 channel(data, "%s:%d: ", input->filename, input->line);
290 channel(data, "Entity: line %d: ", input->line);
294 channel(data, "%s:%d: ", file, line);
296 channel(data, "Entity: line %d: ", line)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/macrom/
SDL_romaudio.h 36 /* Sound manager audio channel */
37 SndChannelPtr channel; member in struct:SDL_PrivateAudioData
47 #define channel (this->hidden->channel) macro
  /external/skia/gm/tests/outputs/pipe-playback-failure/output-expected/
stderr 2 GM: ---- comparison/selftest1-pipe.png: 60000 (of 60000) differing pixels, max per-channel mismatch R=135 G=246 B=135 A=0
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
filterbank_tables.c 21 /* The upper channel all-pass filter factors */
25 /* The lower channel all-pass filter factors */
29 /* The matrix for transforming the backward composite state to upper channel state */
34 /* The matrix for transforming the backward composite state to lower channel state */
  /hardware/ti/wpan/tools/FM/
presets.db 2 SQLite format 3@ ??-? ???P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)??tablepresetspresetsCREATE TABLE presets (_id integer primary key autoincrement, id text not null, channel text not null, name text not null)W--ctableandroid_metadataandroid_metadataCREATE TABLE andro (…)
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
LegacyCommonTokenStream.java 33 * and tokens are prefiltered for a certain channel (the parser will only
34 * see these tokens and cannot change the filter channel number during the
47 /** Map<tokentype, channel> to override some Tokens' channel numbers */
53 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
54 protected int channel = Token.DEFAULT_CHANNEL; field in class:LegacyCommonTokenStream
78 public LegacyCommonTokenStream(TokenSource tokenSource, int channel) {
80 this.channel = channel;
88 channel = Token.DEFAULT_CHANNEL
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
path_canonicalizer_test.py 63 def assert_channel_redirect(channel, path):
64 self._AssertPermanentRedirect(path, '%s/%s' % (channel, path))
65 for channel in ('stable', 'beta', 'dev', 'trunk'):
66 assert_channel_redirect(channel, 'extensions/browserAction.html')
67 assert_channel_redirect(channel, 'extensions/storage.html')
68 assert_channel_redirect(channel, 'apps/bluetooth.html')
69 assert_channel_redirect(channel, 'apps/storage.html')
  /external/chromium_org/ipc/
ipc_channel_handle.h 18 // On Windows, any process can create an IPC channel and others can fetch
19 // it by name. We pass around the channel names over IPC.
24 // On POSIX, we instead pass around handles to channel endpoints via IPC.
25 // When it's time to IPC a new channel endpoint around, we send both the
26 // channel name as well as a base::FileDescriptor, which is itself a special
29 // In sum, this data structure can be used to pass channel information by name
30 // in both Windows and Posix. When passing a handle to a channel over IPC,
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/media/base/
multi_channel_resampler.h 18 // MultiChannelResampler is a multi channel wrapper for SincResampler; allowing
52 // each channel (in channel order) as SincResampler needs more data.
53 void ProvideInput(int channel, int frames, float* destination);
58 // Each channel has its own high quality resampler.
64 // To avoid a memcpy() on the first channel we create a wrapped AudioBus where
65 // the first channel points to the |destination| provided to ProvideInput().
  /external/chromium_org/mojo/system/
proxy_message_pipe_endpoint.h 23 class Channel;
26 // |Channel|, over which it transmits and receives data (to/from another
35 // to any |Channel|. When *attached*, it gets a reference to a |Channel| and
55 virtual void Attach(scoped_refptr<Channel> channel,
75 scoped_refptr<Channel> channel_;
  /external/chromium_org/sync/notifier/
push_client_channel_unittest.cc 57 // Make sure the channel subscribes to the correct notifications
58 // channel on construction.
61 expected_subscription.channel = "tango_raw";
67 // Call UpdateCredentials on the channel. It should propagate it to
80 // propagate to the channel.
93 // Call SendMessage on the channel. It should propagate it to the
102 // by the channel.
  /external/e2fsprogs/lib/ext2fs/
dosio.c 54 static errcode_t dos_open(const char *dev, int flags, io_channel *channel);
55 static errcode_t dos_close(io_channel channel);
56 static errcode_t dos_set_blksize(io_channel channel, int blksize);
57 static errcode_t dos_read_blk(io_channel channel, unsigned long block,
59 static errcode_t dos_write_blk(io_channel channel, unsigned long block,
61 static errcode_t dos_flush(io_channel channel);
179 static errcode_t dos_open(const char *dev, int flags, io_channel *channel)
224 *channel = alloc_io_channel(active);
225 if (!*channel)
349 *channel = alloc_io_channel(active)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimEventListener.java 49 * @param channel The channel being altered
52 public void onAnimCycleDone(AnimControl control, AnimChannel channel, String animName);
55 * Invoked when a animation is set to play by the user on the given channel.
58 * @param channel The channel being altered
61 public void onAnimChange(AnimControl control, AnimChannel channel, String animName);
  /external/chromium_org/chrome/common/
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/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/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_phyuv.c 47 int grab_ptrs2(PgVideoChannel_t* channel, FRAMEDATA* Frame0, FRAMEDATA* Frame1)
52 Frame0->Y = (unsigned char *)PdGetOffscreenContextPtr(channel->yplane1);
53 Frame1->Y = (unsigned char *)PdGetOffscreenContextPtr(channel->yplane2);
54 Frame0->U = (unsigned char *)PdGetOffscreenContextPtr(channel->vplane1);
55 Frame1->U = (unsigned char *)PdGetOffscreenContextPtr(channel->vplane2);
56 Frame0->V = (unsigned char *)PdGetOffscreenContextPtr(channel->uplane1);
57 Frame1->V = (unsigned char *)PdGetOffscreenContextPtr(channel->uplane2);
112 if (overlay->hwdata->channel == NULL)
114 if ((overlay->hwdata->channel = PgCreateVideoChannel(Pg_VIDEO_CHANNEL_SCALER, 0)) == NULL)
116 SDL_SetError("ph_CreateYUVOverlay(): Create channel failed: %s\n", strerror(errno))
    [all...]
  /hardware/libhardware_legacy/
qemu.h 29 * QEMU communication channel, either through a qemud socket or
44 /* try to open a qemu communication channel.
48 * 'channel' must be a QemuChannel structure that is empty
50 * time to re-open the channel using the same 'channel'
53 extern int qemu_channel_open( QemuChannel* channel,
70 /* directly sends a command through the 'hw-control' channel.
71 * this will open the channel, send the formatted command, then
72 * close the channel automatically.
77 /* sends a question to the hw-control channel, then receive an answer i
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
GatheringByteChannel.java 30 * Writes bytes from all the given buffers to a channel.
38 * if the channel is closed by another thread during this write
43 * thread is set and the channel is closed.
45 * if the channel is closed.
53 * if the channel has not been opened in a mode that permits
68 * to the channel.
76 * if the channel is closed by another thread during this write
81 * thread is set and the channel is closed.
83 * if the channel is closed.
91 * if the channel was not opened for writing
    [all...]
  /external/chromium_org/cc/test/
pixel_comparator.h 30 // in the alpha channel are ignored.
35 // Exclude alpha channel from comparison?
40 // computes average and maximum absolute errors per color channel.
53 // LOG(ERROR). Differences in the alpha channel are ignored.
58 // Exclude alpha channel from comparison?

Completed in 2239 milliseconds

<<11121314151617181920>>