/external/chromium_org/remoting/host/ |
ipc_util_win.cc | 21 // Pipe name prefix used by Chrome IPC channels to convert a channel name into 44 // Generate a unique name for the channel. 45 std::string channel_name = IPC::Channel::GenerateUniqueRandomChannelID(); 47 // Create the server end of the channel. 53 // Wrap the pipe into an IPC channel. 56 IPC::Channel::MODE_SERVER, 60 // Convert the channel name to the pipe name. 69 // Create the client end of the channel. This code should match the code in 70 // IPC::Channel. 94 // Create security descriptor for the channel [all...] |
/external/e2fsprogs/lib/ext2fs/ |
undo_io.c | 63 /* The backing io channel */ 73 static errcode_t undo_open(const char *name, int flags, io_channel *channel); 74 static errcode_t undo_close(io_channel channel); 75 static errcode_t undo_set_blksize(io_channel channel, int blksize); 76 static errcode_t undo_read_blk(io_channel channel, unsigned long block, 78 static errcode_t undo_write_blk(io_channel channel, unsigned long block, 80 static errcode_t undo_flush(io_channel channel); 81 static errcode_t undo_write_byte(io_channel channel, unsigned long offset, 83 static errcode_t undo_set_option(io_channel channel, const char *option, 135 io_channel channel; local [all...] |
test_io.c | 59 static errcode_t test_open(const char *name, int flags, io_channel *channel); 60 static errcode_t test_close(io_channel channel); 61 static errcode_t test_set_blksize(io_channel channel, int blksize); 62 static errcode_t test_read_blk(io_channel channel, unsigned long block, 64 static errcode_t test_write_blk(io_channel channel, unsigned long block, 66 static errcode_t test_read_blk64(io_channel channel, unsigned long long block, 68 static errcode_t test_write_blk64(io_channel channel, unsigned long long block, 70 static errcode_t test_flush(io_channel channel); 71 static errcode_t test_write_byte(io_channel channel, unsigned long offset, 73 static errcode_t test_set_option(io_channel channel, const char *option [all...] |
/frameworks/base/tests/RenderScriptTests/ShadersTest/res/raw/ |
vignette_fs.glsl | 23 int channel = int(floor(mod(gl_FragCoord.x, 3.0))); 24 lowp vec4 crt = vec4(r[channel], g[channel], b[channel], 1.0);
|
/external/chromium_org/chrome/browser/resources/gaia_auth/ |
channel.js | 6 * Channel to the background script. 8 function Channel() { 12 Channel.INTERNAL_REQUEST_MESSAGE = 'internal-request-message'; 15 Channel.INTERNAL_REPLY_MESSAGE = 'internal-reply-message'; 17 Channel.prototype = { 31 * Initialize the channel with given port for the background script. 56 * Sends a message to the other side of the channel. 70 name: Channel.INTERNAL_REQUEST_MESSAGE, 94 if (name == Channel.INTERNAL_REQUEST_MESSAGE) { 98 name: Channel.INTERNAL_REPLY_MESSAGE [all...] |
/libcore/luni/src/main/java/java/nio/ |
SelectionKeyImpl.java | 32 private AbstractSelectableChannel channel; field in class:SelectionKeyImpl 40 public SelectionKeyImpl(AbstractSelectableChannel channel, int operations, 42 this.channel = channel; 49 public SelectableChannel channel() { method in class:SelectionKeyImpl 50 return channel; 70 if ((operations & ~(channel().validOps())) != 0) { 106 * Returns true if the channel for this key is connected. If the channel 110 return !(channel instanceof SocketChannel) || ((SocketChannel) channel).isConnected() [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
test_branch_utility.py | 29 return tuple(self.GetChannelInfo(channel) 30 for channel in BranchUtility.GetAllChannelNames()) 32 def GetChannelInfo(self, channel): 33 version = self._channels[channel] 34 return ChannelInfo(channel, self.GetBranchForVersion(version), version) 45 for channel in self._channels.iterkeys(): 46 if self._channels[channel] == version: 47 return channel
|
/external/chromium_org/chrome/installer/linux/debian/ |
changelog.template | 1 @@PACKAGE@@-@@CHANNEL@@ (@@VERSIONFULL@@) @@CHANNEL@@; urgency=low
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t056lexer.py | 26 # this must set channel of A to HIDDEN. $channel is local to rule 34 a returns [foo]: A EOF { $foo = '\%s, channel=\%d' \% ($A.text, $A.channel); } ; 37 WS : (' '|'\n') {$channel=HIDDEN;} ; 45 self.failUnlessEqual("- 34, channel=0", found)
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/ |
addChannel.html | 12 var channelName = $F('channel'); 17 server.channels.forEach(function(channel) { 18 if (channel == channelName) { 52 <input id="channel" type="text" value="#channel"> 57 <input type="button" value="Add New Channel"
|
index.html | 14 // The server & channel configutation data is stored in localStorage.servers. 23 // Channel list is a sorted list of "server#channel" strings. This maps to 24 // channel slides as represented in the UI. 29 server.channels.forEach(function(channel) { 30 channelList.push(server.name + channel); 50 // Setup channel navigation and message entry. 63 // We don't want left & right arrow inside the text entry to move the channel 94 server.channels.forEach(function(channel) { 95 ircConnections[server.name].joinChannel(channel); [all...] |
/external/chromium_org/chrome/common/ |
chrome_version_info_posix.cc | 44 VersionInfo::Channel VersionInfo::GetChannel() { 46 std::string channel = GetVersionStringModifier(); local 47 if (channel.empty()) { 49 } else if (channel == "beta") { 51 } else if (channel == "dev") { 53 } else if (channel == "canary") {
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/ |
addChannel.html | 12 var channelName = $F('channel'); 17 server.channels.forEach(function(channel) { 18 if (channel == channelName) { 52 <input id="channel" type="text" value="#channel"> 57 <input type="button" value="Add New Channel"
|
index.html | 14 // The server & channel configutation data is stored in localStorage.servers. 23 // Channel list is a sorted list of "server#channel" strings. This maps to 24 // channel slides as represented in the UI. 29 server.channels.forEach(function(channel) { 30 channelList.push(server.name + channel); 50 // Setup channel navigation and message entry. 63 // We don't want left & right arrow inside the text entry to move the channel 94 server.channels.forEach(function(channel) { 95 ircConnections[server.name].joinChannel(channel); [all...] |
/external/chromium_org/media/base/ |
fake_audio_render_callback.cc | 31 // Fill first channel with a sine wave. 33 audio_bus->channel(0)[i] = sin(2 * M_PI * (x_ + step_ * i)); 36 // Copy first channel into the rest of the channels. 38 memcpy(audio_bus->channel(i), audio_bus->channel(0), 39 number_of_frames * sizeof(*audio_bus->channel(i)));
|
/external/srec/srec/cfront/ |
ca_cms.c | 52 set_status = swicms_set_cmn ( hWave->data.channel->swicms, param_string ); 64 get_status = swicms_get_cmn ( hWave->data.channel->swicms, param_string, len ); 77 if( swicms_init(hWave->data.channel->swicms) ) 105 hWave->data.channel->channorm = create_channel_normalization(); 106 /* load_channel_parameters (basename, hWave->data.channel->channorm); 108 hWave->data.channel->channorm->dim = MAX_CHAN_DIM; 109 setup_channel_normalization(hWave->data.channel->channorm, 110 hWave->data.channel->spchchan, 117 hWave->data.channel->mel_dim = hFrontArgs->mel_dim; /* TODO: more checks */ 119 hWave->data.channel->swicms = (swicms_norm_info*)CALLOC(1, sizeof(swicms_norm_info), "cfront.swicms") [all...] |
/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...] |
/external/smack/src/org/xbill/DNS/ |
UDPClient.java | 63 DatagramChannel channel = (DatagramChannel) key.channel(); local 75 channel.socket().bind(temp); 96 DatagramChannel channel = (DatagramChannel) key.channel(); local 97 channel.socket().bind(addr); 106 DatagramChannel channel = (DatagramChannel) key.channel(); local 107 channel.connect(addr); 112 DatagramChannel channel = (DatagramChannel) key.channel() local 119 DatagramChannel channel = (DatagramChannel) key.channel(); local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_format_pack.py | 54 for channel in format.channels: 55 if channel.size % 8 or not is_pot(channel.size): 59 for channel in format.channels: 61 if channel.type == VOID: 62 if channel.size: 63 print ' unsigned %s:%u;' % (channel.name, channel.size) 64 elif channel.type == UNSIGNED: 65 print ' unsigned %s:%u;' % (channel.name, channel.size [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_format_pack.py | 54 for channel in format.channels: 55 if channel.size % 8 or not is_pot(channel.size): 59 for channel in format.channels: 61 if channel.type == VOID: 62 if channel.size: 63 print ' unsigned %s:%u;' % (channel.name, channel.size) 64 elif channel.type == UNSIGNED: 65 print ' unsigned %s:%u;' % (channel.name, channel.size [all...] |
/libcore/luni/src/main/java/java/nio/channels/spi/ |
AbstractSelectableChannel.java | 53 * the selector provider that creates this channel. 60 * Returns the selector provider that has created this channel. 63 * @return this channel's selector provider. 71 * Indicates whether this channel is registered with one or more selectors. 73 * @return {@code true} if this channel is registered with a selector, 82 * Gets this channel's selection key for the specified selector. 85 * the selector with which this channel has been registered. 86 * @return the selection key for the channel or {@code null} if this channel 100 * Registers this channel with the specified selector for the specifie [all...] |
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
WiFiDirectBroadcastReceiver.java | 27 import android.net.wifi.p2p.WifiP2pManager.Channel; 37 private Channel channel; field in class:WiFiDirectBroadcastReceiver 42 * @param channel Wifi p2p channel 45 public WiFiDirectBroadcastReceiver(WifiP2pManager manager, Channel channel, 49 this.channel = channel; 77 manager.requestConnectionInfo(channel, [all...] |
/external/chromium_org/tools/ |
omahaproxy.py | 8 Scrapes Chrome channel information and prints out the requested nugget of 29 # Iterate to find out valid values for OS, channel, and field options. 39 if field == 'channel': 40 channels.add(version['channel']) 50 'Print out information about a particular Chrome channel.') 58 parser.add_option('-c', '--channel', 61 help='The channel of interest: %s ' 76 if version['channel'] != opts.channel: 86 opts.field, opts.os, opts.channel) [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...] |
/external/chromium_org/chrome/browser/resources/help/ |
help.js | 28 channelList_: ['dev-channel', 'beta-channel', 'stable-channel'], 37 * Name of the channel the device is currently on. 43 * Name of the channel the device is supposed to be on. 96 'stable-channel': { 100 'beta-channel': { 104 'dev-channel': { 111 var channelChanger = $('channel-changer'); 127 $('change-channel').onclick = function() [all...] |