Home
last modified time | relevance | path

Searched refs:channel (Results 1 – 22 of 22) sorted by relevance

/development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
DWiFiDirectBroadcastReceiver.java35 private Channel channel; field in WiFiDirectBroadcastReceiver
43 public WiFiDirectBroadcastReceiver(WifiP2pManager manager, Channel channel, in WiFiDirectBroadcastReceiver() argument
47 this.channel = channel; in WiFiDirectBroadcastReceiver()
78 manager.requestPeers(channel, (PeerListListener) activity.getFragmentManager() in onReceive()
98 manager.requestConnectionInfo(channel, fragment); in onReceive()
DWiFiDirectActivity.java63 private Channel channel; field in WiFiDirectActivity
111 channel = manager.initialize(this, getMainLooper(), null); in initP2p()
112 if (channel == null) { in initP2p()
150 receiver = new WiFiDirectBroadcastReceiver(manager, channel, this); in onResume()
192 if (manager != null && channel != null) { in onOptionsItemSelected()
213 manager.discoverPeers(channel, new WifiP2pManager.ActionListener() { in onOptionsItemSelected()
243 manager.connect(channel, config, new ActionListener() { in connect()
263 manager.removeGroup(channel, new ActionListener() { in disconnect()
311 manager.cancelConnect(channel, new ActionListener() { in cancelDisconnect()
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
DWiFiDirectBroadcastReceiver.java37 private Channel channel; field in WiFiDirectBroadcastReceiver
45 public WiFiDirectBroadcastReceiver(WifiP2pManager manager, Channel channel, in WiFiDirectBroadcastReceiver() argument
49 this.channel = channel; in WiFiDirectBroadcastReceiver()
77 manager.requestConnectionInfo(channel, in onReceive()
DWiFiServiceDiscoveryActivity.java72 private Channel channel; field in WiFiServiceDiscoveryActivity
130 channel = manager.initialize(this, getMainLooper(), null); in initP2p()
131 if (channel == null) { in initP2p()
185 if (manager != null && channel != null) { in onStop()
186 manager.removeGroup(channel, new ActionListener() { in onStop()
211 manager.addLocalService(channel, service, new ActionListener() { in startRegistrationAndDiscovery()
235 manager.setDnsSdResponseListeners(channel, in discoverService()
284 manager.addServiceRequest(channel, serviceRequest, in discoverService()
297 manager.discoverServices(channel, new ActionListener() { in discoverService()
318 manager.removeServiceRequest(channel, serviceRequest, in connectP2p()
[all …]
/development/samples/browseable/MidiSynth/src/com.example.android.common.midi/synth/
DSynthEngine.java85 int channel = (byte) (data[0] & MidiConstants.STATUS_CHANNEL_MASK); in onSend() local
88 noteOff(channel, data[1], data[2]); in onSend()
91 noteOn(channel, data[1], data[2]); in onSend()
95 pitchBend(channel, bend); in onSend()
197 public void noteOff(int channel, int noteIndex, int velocity) { in noteOff() argument
230 public void noteOn(int channel, int noteIndex, int velocity) { in noteOn() argument
232 noteOff(channel, noteIndex, velocity); in noteOn()
247 public void pitchBend(int channel, int bend) { in pitchBend() argument
/development/samples/browseable/MidiScope/src/com.example.android.common.midi/synth/
DSynthEngine.java85 int channel = (byte) (data[0] & MidiConstants.STATUS_CHANNEL_MASK); in onSend() local
88 noteOff(channel, data[1], data[2]); in onSend()
91 noteOn(channel, data[1], data[2]); in onSend()
95 pitchBend(channel, bend); in onSend()
197 public void noteOff(int channel, int noteIndex, int velocity) { in noteOff() argument
230 public void noteOn(int channel, int noteIndex, int velocity) { in noteOn() argument
232 noteOff(channel, noteIndex, velocity); in noteOn()
247 public void pitchBend(int channel, int bend) { in pitchBend() argument
/development/tools/winscope/src/trace_processor/
Dwasm_engine_proxy.ts29 const channel = new MessageChannel(); constant
30 const port = channel.port1;
43 return channel.port2;
/development/tools/winscope/src/test/fixtures/traces/
Deventlog_timestamps_not_monotonically_increasing.winscope5 …6209 I input_cancel: [[Gesture Monitor] edge-swipe (server),reason=input channel stole pointer str…
6 …/com.google.android.gm.welcome.WelcomeTourActivity (server),reason=input channel stole pointer str…
Deventlog.winscope5 …/com.google.android.gm.welcome.WelcomeTourActivity (server),reason=input channel stole pointer str…
6 …6209 I input_cancel: [[Gesture Monitor] edge-swipe (server),reason=input channel stole pointer str…
99 …s/com.google.android.apps.photos.home.HomeActivity (server),reason=input channel stole pointer str…
100 …2023 I input_cancel: [[Gesture Monitor] edge-swipe (server),reason=input channel stole pointer str…
/development/samples/browseable/MidiScope/src/com.example.android.midiscope/
DMidiPrinter.java77 int channel = status & 0x0F; in formatMessage() local
79 sb.append((channel + 1)).append(", "); in formatMessage()
/development/tools/external_crates/crate_health/src/
Dandroid_bp.rs21 sync::mpsc::channel,
33 let (tx, rx) = channel(); in generate_android_bps()
/development/samples/JetBoy/src/com/example/android/jetboy/
DJetBoyView.java105 public JetGameEvent(JetPlayer player, short segment, byte track, byte channel, in JetGameEvent() argument
110 this.channel = channel; in JetGameEvent()
118 public byte channel; field in JetBoyView.JetGameEvent
734 jetEvent.channel, jetEvent.controller, jetEvent.value); in updateGameState()
901 protected void processJetEvent(JetPlayer player, short segment, byte track, byte channel, in processJetEvent() argument
1265 public void onJetEvent(JetPlayer player, short segment, byte track, byte channel, in onJetEvent() argument
1272 mEventQueue.add(new JetGameEvent(player, segment, track, channel, controller, value)); in onJetEvent()
/development/tools/ota_analysis/src/services/
Dupdate_metadata_pb.js990 ImageInfo.prototype.channel = ""; method in ImageInfo
1044 if (message.channel != null && Object.hasOwnProperty.call(message, "channel"))
1045 writer.uint32(/* id 3, wireType 2 =*/26).string(message.channel);
1093 message.channel = reader.string();
1145 if (message.channel != null && message.hasOwnProperty("channel"))
1146 if (!$util.isString(message.channel))
1176 if (object.channel != null)
1177 message.channel = String(object.channel);
1203 object.channel = "";
1212 if (message.channel != null && message.hasOwnProperty("channel"))
[all …]
/development/tools/cargo_embargo/testdata/async-trait/
Dcargo.metadata513 "name": "futures-channel",
665 "futures-channel/alloc",
704 "futures-util/channel"
713 "futures-channel/unstable",
1629 "id": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.30",
1634 …me/mgeisler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/futures-channel-0.3.30/Cargo.toml…
1646 "name": "futures-channel",
1663 "name": "futures-channel",
1664 …me/mgeisler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/futures-channel-0.3.30/src/lib.rs…
1678 …me/mgeisler/.cargo/registry/src/index.crates.io-6f17d22bba15001f/futures-channel-0.3.30/tests/mpsc…
[all …]
/development/samples/training/testingfun/gradle/wrapper/
Dgradle-wrapper.jar ... .RandomAccessFile randomAccessFile java.nio.channels.FileChannel channel private static void maybeCloseQuietly (java.io.Closeable ...
/development/samples/devbytes/telephony/SmsSampleProject/gradle/wrapper/
Dgradle-wrapper.jar ... .RandomAccessFile randomAccessFile java.nio.channels.FileChannel channel private static void maybeCloseQuietly (java.io.Closeable ...
/development/tools/checkcolor/gradle/wrapper/
Dgradle-wrapper.jar ... .RandomAccessFile randomAccessFile java.nio.channels.FileChannel channel private static void maybeCloseQuietly (java.io.Closeable ...
/development/samples/NsdManagerSample/gradle/wrapper/
Dgradle-wrapper.jar ... .RandomAccessFile randomAccessFile java.nio.channels.FileChannel channel private long getTimeMillis () private static void maybeCloseQuietly ( ...
/development/apps/ShareTest/gradle/wrapper/
Dgradle-wrapper.jar ... .RandomAccessFile randomAccessFile java.nio.channels.FileChannel channel private long getTimeMillis () private static void maybeCloseQuietly ( ...
/development/samples/PictureInPicture/ComposePip/gradle/wrapper/
Dgradle-wrapper.jar ... .RandomAccessFile randomAccessFile java.nio.channels.FileChannel channel private long getTimeMillis () private static void maybeCloseQuietly ( ...
/development/tools/external_crates/
DCargo.lock446 name = "crossbeam-channel"
999 "crossbeam-channel",
/development/tools/cargo_embargo/testdata/plotters/
Dcargo.metadata22692 "name": "futures-channel-preview",