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

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/resources/gaia_auth/
manifest_saml.json 8 "scripts": ["background.js", "channel.js"]
15 "js": ["channel.js", "saml_injected.js"],
  /external/chromium_org/native_client_sdk/src/resources/
manifest.json.template 20 [[if channel == 'Dev':]]
22 [[elif channel == 'Beta':]]
  /external/wpa_supplicant_8/src/ap/
acs.h 2 * ACS - Automatic Channel Selection module
22 wpa_printf(MSG_ERROR, "ACS was disabled on your build, rebuild hostapd with CONFIG_ACS=y or set channel");
  /libcore/luni/src/main/java/java/nio/channels/
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.
SocketChannel.java 28 * A {@code SocketChannel} is a selectable channel that provides a partial
32 * A socket channel is open but not connected when created by {@code open()}.
41 * The input and output sides of a channel can be shut down independently and
42 * asynchronously without closing the channel. The {@code shutdownInput} method
43 * is used for the input side of a channel and subsequent read operations return
47 * output side of the channel; subsequent write operations throw a
71 * Creates an open and unconnected socket channel.
73 * This channel is created by calling {@code openSocketChannel()} of the
76 * @return the new channel which is open but unconnected.
85 * Creates a socket channel and connects it to a socket address
    [all...]
FileChannel.java 25 * An abstract channel type for interaction with a platform file.
56 * <li>transfer data directly to another channel in a manner that has the
75 * Therefore, modifications performed via a channel will be visible to the
129 * Requests that all updates to this channel are committed to the storage
133 * underlying this channel have been committed if the file resides on a
146 * such as last access time), even if the channel is opened read-only.
152 * if this channel is already closed.
167 * the file channel is closed.
169 * this channel was not opened for writing.
178 * the channel was closed while the calling thread was waitin
    [all...]
SelectionKey.java 20 * A {@code SelectionKey} represents the relationship between a channel and a
21 * selector for which the channel is registered.
24 * set represent categories of operations for a key's channel: Accepting socket
29 * {@link SelectableChannel channel} is interested in performing.
32 * {@code channel} is ready to execute.
106 * Gets the channel of this key.
108 * @return the channel of this key.
110 public abstract SelectableChannel channel(); method in class:SelectionKey
114 * only those bits set that are valid for this key's channel.
131 * key's channel
    [all...]
  /external/chromium_org/media/base/
audio_bus_unittest.cc 41 // Verify values for each channel in |result| are within |epsilon| of
51 ASSERT_FLOAT_EQ(expected->channel(ch)[i], result->channel(ch)[i]);
53 ASSERT_NEAR(expected->channel(ch)[i], result->channel(ch)[i],
60 // Verify values for each channel in |result| against |expected|.
65 // Read and write to the full extent of the allocated channel data. Also test
71 bus->channel(i)) & (AudioBus::kChannelAlignment - 1));
72 std::fill(bus->channel(i), bus->channel(i) + bus->frames(), i)
    [all...]
  /external/dropbear/
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...]
  /external/srec/srec/cfront/
frontobj.c 146 front_channel *channel; local
148 channel = (front_channel *) CALLOC_CLR(1,
149 sizeof(front_channel), "cfront.channel");
150 return channel;
154 void delete_channel_object(front_channel *channel)
156 ASSERT(channel);
157 FREE((char *) channel);
162 front_channel *channel, front_wave *waveobj,
165 ASSERT(channel);
170 channel->prebuff = (fftdata *) CALLOC(freqobj->window_length + 1
    [all...]
chelmel4.c 60 front_channel *channel);
67 void cepstrum_params(front_channel *channel, front_wave *waveobj,
73 mel_spectrum_correction(freqobj->filterbank, cepobj->mel_loop, channel->num_freq);
76 mel_loglookup_with_offset(cepobj, channel);
79 write_scaled_frames(freqobj->nf, 1, channel->filterbank, D_FIXED, 1 / (float)LOG_SCALE);
83 icostrans(cepobj->cs, channel->filterbank, channel->cep,
84 channel->num_freq, cepobj->mel_dim);
88 write_scaled_frames((cepobj->mel_dim + 1), 1, channel->cep, D_FIXED, (float)1 / (0x01 << (LOG_SCALE_SHIFT + COSINE_TABLE_SHIFT)));
126 front_channel *channel)
    [all...]
  /external/chromium_org/ipc/
ipc_channel.h 38 // the channel with the mode set to one of the NAMED modes. NAMED modes are
41 class IPC_EXPORT Channel : public Sender {
82 // The Hello message is sent by the peer when the channel is connected.
97 // size or bigger results in a channel error.
103 // Initialize a Channel.
105 // |channel_handle| identifies the communication Channel. For POSIX, if
106 // the file descriptor in the channel handle is != -1, the channel takes
109 // |mode| specifies whether this Channel is to operate in server mode or
110 // client mode. In server mode, the Channel is responsible for setting up th
    [all...]
ipc_channel_reader.h 15 // platform-specific IPC channel implementations.
22 // writing to the channel is much simpler and has very little common
34 // them. Returns false on channel error. True indicates that everything
46 // like the "hello" message sent on channel set-up.
50 // sent on channel set-up.
62 // buffer size). On READ_FAILED, the channel will be closed.
73 // on success. False means a fatal channel error.
83 // Handles internal messages, like the hello message sent on channel startup.
87 // Takes the given data received from the IPC channel and dispatches any
90 // Returns true on success. False means channel error
    [all...]
  /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...]
  /device/samsung/manta/libsensors/iio/
events.h 48 * @chan_type: Type of the channel. Should be one of enum iio_chan_type.
49 * @diff: Whether the event is for an differential channel or not.
50 * @modifier: Modifier for the channel. Should be one of enum iio_modifier.
53 * @chan: Channel number for non-differential channels.
54 * @chan1: First channel number for differential channels.
55 * @chan2: Second channel number for differential channels.
72 * @chan_type: Type of the channel. Should be one of enum iio_chan_type.
73 * @number: Channel number.
74 * @modifier: Modifier for the channel. Should be one of enum iio_modifier.
85 * @chan_type: Type of the channel. Should be one of enum iio_chan_type
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
CommonToken.js 5 this.channel = 0; // org.antlr.runtime.CommonToken.DEFAULT_CHANNEL
18 this.channel = oldToken.getChannel();
27 this.channel = 0; // org.antlr.runtime.CommonToken.DEFAULT_CHANNEL
31 this.channel = arguments[2];
81 return this.channel;
84 setChannel: function(channel) {
85 this.channel = channel;
126 if ( this.channel>0 ) {
127 channelStr=",channel="+this.channel
    [all...]
  /external/bluetooth/bluedroid/stack/avdt/
avdt_ad.c 40 ** Description Derives the TCID from the channel type and SCB.
68 ** Description Derives the channel type from the TCID.
71 ** Returns Channel type value.
85 ** only media channel : tcid=1,2,3,4,5,6... type=1,1,1,1,1,1...
124 ** Description Find adaption layer transport channel table entry matching
128 ** Returns Pointer to matching entry. For control channel it returns
160 /* if control channel, tcid always zero */
170 /* if other channel, tcid is always > zero */
195 ** Description Find adaption layer transport channel table entry by LCID.
222 ** Description This function retrieves the transport channel table entr
    [all...]
  /external/chromium_org/mojo/system/
platform_channel.h 26 // Returns the channel's handle, passing ownership.
44 // A server channel has an "implicit" client channel created with it. This may
45 // be a real channel (in the case of POSIX, in which case there's an actual FD
47 // - That client channel may then be used in-process (e.g., for single process
53 // - In both these cases, "ownership" of the client channel is transferred (to
62 // For in-process use, from a server channel you can make a corresponding
63 // client channel.
66 // Prepares to pass the client channel to a new child process, to be launched
92 // Creates a client channel if you already have the underlying handle for it
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloAnimation.java 54 private AnimChannel channel; field in class:HelloAnimation
80 channel = control.createChannel();
81 channel.setAnim("stand");
85 public void onAnimCycleDone(AnimControl control, AnimChannel channel, String animName) {
88 channel.setAnim("stand", 0.50f);
89 channel.setLoopMode(LoopMode.DontLoop);
90 channel.setSpeed(1f);
95 public void onAnimChange(AnimControl control, AnimChannel channel, String animName) {
109 if (!channel.getAnimationName().equals("Walk")) {
111 channel.setAnim("Walk", 0.50f)
    [all...]
  /device/asus/flo/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_rdi.c 85 mm_camera_channel_t *channel,
98 stream = mm_app_add_stream(test_obj, channel);
144 rc = mm_app_config_stream(test_obj, channel, stream, &stream->s_config);
160 mm_camera_channel_t *channel,
170 stream = mm_app_add_stream(test_obj, channel);
200 rc = mm_app_config_stream(test_obj, channel, stream, &stream->s_config);
211 mm_camera_channel_t *channel = NULL; local
214 channel = mm_app_add_channel(test_obj,
219 if (NULL == channel) {
220 CDBG_ERROR("%s: add channel failed", __func__)
271 mm_camera_channel_t *channel = NULL; local
293 mm_camera_channel_t *channel = local
    [all...]
  /hardware/qcom/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_rdi.c 85 mm_camera_channel_t *channel,
98 stream = mm_app_add_stream(test_obj, channel);
144 rc = mm_app_config_stream(test_obj, channel, stream, &stream->s_config);
160 mm_camera_channel_t *channel,
170 stream = mm_app_add_stream(test_obj, channel);
200 rc = mm_app_config_stream(test_obj, channel, stream, &stream->s_config);
211 mm_camera_channel_t *channel = NULL; local
214 channel = mm_app_add_channel(test_obj,
219 if (NULL == channel) {
220 CDBG_ERROR("%s: add channel failed", __func__)
271 mm_camera_channel_t *channel = NULL; local
293 mm_camera_channel_t *channel = local
    [all...]
  /external/bluetooth/bluedroid/stack/include/
mca_api.h 21 * This interface file contains the interface to the Multi-Channel
33 #define MCA_NUM_CCBS ((MCA_NUM_REGS)*(MCA_NUM_LINKS)) /* Number of control channel control blocks */
34 #define MCA_NUM_DCBS ((MCA_NUM_REGS)*(MCA_NUM_LINKS)*(MCA_NUM_MDLS)) /* Number of data channel control blocks */
71 #define MCA_CONNECT_IND_EVT 0x20 /* Control channel connected */
72 #define MCA_DISCONNECT_IND_EVT 0x21 /* Control channel disconnected */
73 #define MCA_OPEN_IND_EVT 0x22 /* Data channel open indication */
74 #define MCA_OPEN_CFM_EVT 0x23 /* Data channel open confirm */
75 #define MCA_CLOSE_IND_EVT 0x24 /* Data channel close indication */
76 #define MCA_CLOSE_CFM_EVT 0x25 /* Data channel close confirm */
78 #define MCA_RSP_TOUT_IND_EVT 0x27 /* Control channel message response timeout *
    [all...]
  /external/chromium_org/third_party/libxml/src/
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/antlr/antlr-3.4/runtime/Python/antlr3/
tokens.py 109 """@brief Get the channel of the token
111 Using setter/getter methods is deprecated. Use o.channel instead."""
115 def setChannel(self, channel):
116 """@brief Set the channel of the token
118 Using setter/getter methods is deprecated. Use o.channel instead."""
177 def __init__(self, type=None, channel=DEFAULT_CHANNEL, text=None,
185 self.channel = oldToken.channel
198 self.channel = channel
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/macrom/
SDL_romaudio.c 265 /* Create the sound manager channel */
266 channel = (SndChannelPtr)SDL_malloc(sizeof(*channel));
267 if ( channel == NULL ) {
276 channel->userInfo = (long)this;
277 channel->qLength = 128;
278 if ( SndNewChannel(&channel, sampledSynth, initOptions, callback) != noErr ) {
279 SDL_SetError("Unable to create audio channel");
280 SDL_free(channel);
281 channel = NULL
    [all...]

Completed in 1485 milliseconds

<<11121314151617181920>>