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

1 2 3 4 5 6 7 8 91011>>

  /external/dropbear/
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...]
  /external/chromium_org/chrome/common/extensions/api/
_manifest_features.json 10 "channel": "stable",
19 "channel": "stable",
31 "channel": "stable",
36 "channel": "stable",
42 "channel": "stable",
46 "channel": "stable",
50 "channel": "stable",
57 "channel": "stable",
64 "channel": "stable",
71 "channel": "stable"
    [all...]
_permission_features.json 19 "channel": "stable",
24 "channel": "stable",
33 "channel": "dev",
37 "channel": "stable",
43 "channel": "dev",
47 "channel": "stable",
56 "channel": "stable",
60 "channel": "stable",
65 "channel": "dev",
69 "channel": "stable"
    [all...]
cast_channel.idl 6 // channel.
7 namespace cast.channel {
9 // The state of the channel.
11 // The channel is connecting.
13 // The channel is open and available for messaging.
15 // The channel is closing.
17 // The channel is closed.
21 // Error conditions that the channel may encounter. All error conditions
23 // (1) Transition the channel to readyState == 'closed'.
28 // cast.channel.send() was called when ChannelInfo.readyState != 'open'
    [all...]
  /external/e2fsprogs/lib/ext2fs/
io_manager.c 22 errcode_t io_channel_set_options(io_channel channel, const char *opts)
27 EXT2_CHECK_MAGIC(channel, EXT2_ET_MAGIC_IO_CHANNEL);
32 if (!channel->manager->set_option)
50 retval = (channel->manager->set_option)(channel, ptr, arg);
59 errcode_t io_channel_write_byte(io_channel channel, unsigned long offset,
62 EXT2_CHECK_MAGIC(channel, EXT2_ET_MAGIC_IO_CHANNEL);
64 if (channel->manager->write_byte)
65 return channel->manager->write_byte(channel, offset
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/templates/private/intro_tables/
dev_message.html 1 <a href="http://www.chromium.org/getting-involved/dev-channel">Dev</a> channel only.
  /external/chromium_org/chrome/browser/resources/help/
channel_change_page.css 6 #channel-change-page {
11 .channel-change-page-channel label {
15 .channel-change-page-channel {
20 .show-when-selected-channel-requires-powerwash,
21 .show-when-selected-channel-requires-delayed-update,
22 .show-when-selected-channel-good,
23 .show-when-selected-channel-unstable {
27 .selected-channel-requires-powerwas
    [all...]
channel_change_page.html 1 <div id="channel-change-page" class="page">
5 <div class="channel-change-page-channel">
6 <input id="channel-change-page-stable-option"
7 type="radio" name="channel" value="stable-channel">
8 <label for="channel-change-page-stable-option" i18n-content="stable">
11 <div class="channel-change-page-channel">
12 <input id="channel-change-page-beta-option
    [all...]
channel_change_page.js 7 * Encapsulated handling of the channel change overlay.
17 * Name of the channel the device is currently on.
23 * Name of the channel the device is supposed to be on.
38 channelList_: ['dev-channel', 'beta-channel', 'stable-channel'],
44 uiClassTable_: ['selected-channel-requires-powerwash',
45 'selected-channel-requires-delayed-update',
46 'selected-channel-good',
47 'selected-channel-unstable']
    [all...]
  /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/chromium_org/chrome/common/extensions/docs/templates/json/
api_availabilities.json 7 "channel": "stable",
11 "channel": "stable",
15 "channel": "stable",
19 "channel": "stable",
23 "channel": "stable",
27 "channel": "stable",
31 "channel": "stable",
35 "channel": "stable",
40 "channel": "stable",
44 "channel": "stable"
    [all...]
  /external/chromium_org/remoting/tools/mac/
chromoting-set-channel.sh 16 echo "Usage: ${ME} <channel>" >&2
17 echo "where <channel> is 'beta' or 'stable'" >&2
34 local channel="$1"
36 if [[ "${channel}" != "beta" && "${channel}" != "stable" ]]; then
41 local channeltag="${channel}"
42 if [[ "${channel}" == "stable" ]]; then
46 log "Switching Chrome Remote Desktop channel to ${channel}"
50 if [[ "${channel}" == "stable" ]]; the
    [all...]
  /external/chromium_org/chrome/common/
chrome_version_info_mac.mm 21 NSString* channel = [bundle objectForInfoDictionaryKey:@"KSChannelID"];
26 // This build is not Keystone-enabled, it can't have a channel.
27 channel = @"unknown";
28 } else if (!channel) {
29 // For the stable channel, KSChannelID is not set.
30 channel = @"";
31 } else if ([channel isEqual:@"beta"] ||
32 [channel isEqual:@"dev"] ||
33 [channel isEqual:@"canary"]) {
36 channel = @"unknown"
    [all...]
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_win.cc 21 base::string16 channel; local
27 &channel);
31 channel += L" SyzyASan";
33 return UTF16ToASCII(channel);
40 VersionInfo::Channel VersionInfo::GetChannel() {
42 std::wstring channel(L"unknown");
48 channel = GoogleUpdateSettings::GetChromeChannel(is_system_install);
51 if (channel.empty()) {
53 } else if (channel == L"beta") {
55 } else if (channel == L"dev")
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/templates/private/
warning_dev.html 3 <a href="http://www.chromium.org/getting-involved/dev-channel">dev channel</a>.
warning_beta.html 3 <a href="https://www.google.com/landing/chrome/beta/">beta channel</a> and
4 <a href="http://www.chromium.org/getting-involved/dev-channel">dev channel</a>.
  /external/clang/test/CodeGen/
2003-11-19-BitFieldArray.c 9 void g_io_channel_init (struct _GIOChannel *channel) {
10 channel->partial_write_buf[0];
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
fakewebrtcvideoengine.h 64 // WebRtc channel id and capture id share the same number space.
66 // renderer for a channel or it is adding a renderer for a capturer.
271 struct Channel {
272 Channel()
319 bool remb_contribute_; // This channel contributes to the remb report.
320 bool remb_bw_partition_; // This channel is allocated part of total bw.
396 for (std::map<int, Channel*>::const_iterator iter = channels_.begin();
406 bool IsChannel(int channel) const {
407 return (channels_.find(channel) != channels_.end());
430 int GetCaptureId(int channel) const
    [all...]
fakewebrtcvoiceengine.h 80 struct Channel {
81 explicit Channel(bool use_experimental_acm)
166 for (std::map<int, Channel*>::const_iterator i = channels_.begin();
178 for (std::map<int, Channel*>::const_iterator iter = channels_.begin();
186 bool GetPlayout(int channel) {
187 return channels_[channel]->playout;
189 bool GetSend(int channel) {
190 return channels_[channel]->send;
195 bool GetVAD(int channel) {
196 return channels_[channel]->vad
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t056lexer3.g 3 a : A EOF {this.xlog($A.text+", channel="+$A.channel);} ;
6 WS : (' '|'\n') {$channel=HIDDEN;} ;
  /external/chromium_org/tools/json_schema_compiler/test/
test_features.json 7 "channel": "stable",
13 "channel": "dev",
17 "channel": "stable",
  /external/qemu/telephony/
sysdeps_qemu.c 181 SysChannel channel = _s_free_channels; local
182 if (channel != NULL) {
183 _s_free_channels = channel->next;
184 channel->next = NULL;
185 channel->fd = -1;
186 channel->callback = NULL;
187 channel->opaque = NULL;
189 return channel;
193 sys_channel_free( SysChannel channel )
195 if (channel->fd >= 0)
207 SysChannel channel = _channel; local
216 SysChannel channel = _channel; local
319 SysChannel channel = sys_channel_alloc(); local
339 SysChannel channel = sys_channel_alloc(); local
364 SysChannel channel = sys_channel_alloc(); local
    [all...]
  /external/kernel-headers/original/asm-arm/
dma.h 47 #define clear_dma_ff(channel)
54 extern void set_dma_page(dmach_t channel, char pagenr);
56 /* Request a DMA channel
60 extern int request_dma(dmach_t channel, const char * device_id);
62 /* Free a DMA channel
66 extern void free_dma(dmach_t channel);
68 /* Enable DMA for this channel
73 extern void enable_dma(dmach_t channel);
75 /* Disable DMA for this channel
80 extern void disable_dma(dmach_t channel);
    [all...]

Completed in 1128 milliseconds

1 2 3 4 5 6 7 8 91011>>