Searched refs:port (Results 26 - 50 of 123) sorted by path

12345

/frameworks/av/media/libstagefright/rtsp/
H A DUDPPusher.cpp32 UDPPusher::UDPPusher(const char *filename, unsigned port) argument
51 mRemoteAddr.sin_port = htons(port);
H A DUDPPusher.h29 UDPPusher(const char *filename, unsigned port);
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp147 unsigned long port; local
153 port = strtoul(s, &end, 10);
155 if (end == s || *end != '\0' || port > 65535) {
161 port = kWifiDisplayDefaultPort;
169 mInterfaceAddr, port, notify, &mSessionID);
243 "server-port", &mClientInfo.mLocalPort));
952 value.c_str() + 8, "port", &hdcpPort)
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h234 /* Get attributes for a given audio port */
235 virtual status_t getAudioPort(struct audio_port *port);
248 /* Set audio port configuration */
H A DPatchPanel.cpp58 /* Get supported attributes for a given audio port */
59 status_t AudioFlinger::getAudioPort(struct audio_port *port) argument
63 return mPatchPanel->getAudioPort(port);
102 /* Set audio port configuration */
130 /* Get supported attributes for a given audio port */
131 status_t AudioFlinger::PatchPanel::getAudioPort(struct audio_port *port __unused)
662 /* Set audio port configuration */
H A DPatchPanel.h34 /* Get supported attributes for a given audio port */
35 status_t getAudioPort(struct audio_port *port);
48 /* Set audio port configuration */
/frameworks/av/services/audiopolicy/
H A DAudioPolicyInterface.h199 virtual status_t getAudioPort(struct audio_port *port) = 0;
313 /* Set audio port configuration */
H A DAudioPolicyInterfaceImpl.cpp558 status_t AudioPolicyService::getAudioPort(struct audio_port *port) argument
568 return mAudioPolicyManager->getAudioPort(port);
H A DAudioPolicyInterfaceImplLegacy.cpp534 status_t AudioPolicyService::getAudioPort(struct audio_port *port __unused)
H A DAudioPolicyManager.cpp2461 status_t AudioPolicyManager::getAudioPort(struct audio_port *port __unused)
2908 ALOGV("setAudioPortConfig() on port handle %d", config->id);
6065 struct audio_port *port) const
6068 mProfile->toAudioPort(port);
6069 port->id = mId;
6070 toAudioPortConfig(&port->active_config);
6071 port->ext.mix.hw_module = mProfile->mModule->mHandle;
6072 port->ext.mix.handle = mIoHandle;
6073 port->ext.mix.latency_class =
6149 struct audio_port *port) cons
6546 importAudioPort(const sp<AudioPort> port) argument
[all...]
H A DAudioPolicyManager.h173 virtual status_t getAudioPort(struct audio_port *port);
255 virtual void toAudioPort(struct audio_port *port) const;
257 void importAudioPort(const sp<AudioPort> port);
355 virtual void toAudioPort(struct audio_port *port) const;
498 void toAudioPort(struct audio_port *port) const;
545 void toAudioPort(struct audio_port *port) const;
H A DAudioPolicyService.h170 virtual status_t getAudioPort(struct audio_port *port);
463 /* Set audio port configuration */
/frameworks/base/core/java/android/app/
H A DActivityThread.java851 public void setHttpProxy(String host, String port, String exclList, Uri pacFileUrl) { argument
857 Proxy.setHttpProxySystemProperty(host, port, exclList, pacFileUrl);
4407 // XXX should have option to change the port.
4411 + " is waiting for the debugger on port 8100...");
4428 + " can be debugged on port 8100...");
H A DApplicationThreadNative.java336 final String port = data.readString();
339 setHttpProxy(proxy, port, exclList, pacFileUrl);
1037 public void setHttpProxy(String proxy, String port, String exclList, argument
1042 data.writeString(port);
H A DIApplicationThread.java107 void setHttpProxy(String proxy, String port, String exclList, argument
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java269 * An int extra holding the proxy port for the wifi network in
1568 int port = sa.getPort();
1571 .append(":").append(Integer.toString(port)).toString();
1587 if (android.net.Proxy.validate(hostName, Integer.toString(port), exclSpec)
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAdapter.java1225 public BluetoothServerSocket listenUsingInsecureRfcommOn(int port) throws IOException { argument
1227 BluetoothSocket.TYPE_RFCOMM, false, false, port);
1246 public BluetoothServerSocket listenUsingEncryptedRfcommOn(int port) argument
1249 BluetoothSocket.TYPE_RFCOMM, false, true, port);
H A DBluetoothDevice.java1340 * @param port remote port
1346 public BluetoothSocket createInsecureRfcommSocket(int port) throws IOException { argument
1347 return new BluetoothSocket(BluetoothSocket.TYPE_RFCOMM, -1, false, false, this, port,
H A DBluetoothServerSocket.java79 * @param port remote port
83 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port) argument
85 mChannel = port;
86 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null);
H A DBluetoothSocket.java140 * @param port remote port
146 BluetoothDevice device, int port, ParcelUuid uuid) throws IOException {
148 if (port < 1 || port > MAX_RFCOMM_CHANNEL) {
149 throw new IOException("Invalid RFCOMM channel: " + port);
159 mPort = port;
208 * @param port remote port
213 int port) throw
145 BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, BluetoothDevice device, int port, ParcelUuid uuid) argument
212 BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, String address, int port) argument
[all...]
H A DIBluetooth.aidl89 ParcelFileDescriptor connectSocket(in BluetoothDevice device, int type, in ParcelUuid uuid, int port, int flag);
90 ParcelFileDescriptor createSocketChannel(int type, in String serviceName, in ParcelUuid uuid, int port, int flag);
/frameworks/base/core/java/android/content/
H A DIntentFilter.java144 private static final String PORT_STR = "port";
214 * authority host and port.
660 public AuthorityEntry(String host, String port) { argument
664 mPort = port != null ? Integer.parseInt(port) : -1;
851 * @param port Optional port part of the authority to match. If null, any
852 * port is allowed.
857 public final void addDataAuthority(String host, String port) { argument
858 if (port !
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java4121 String port = sa.getNonConfigurationString(
4124 outInfo.addDataAuthority(host, port);
/frameworks/base/core/java/android/hardware/
H A DSerialManager.java60 * The speed of the serial port must be one of:
65 * @param name of the serial port
66 * @param speed at which to open the serial port
67 * @return the serial port
73 SerialPort port = new SerialPort(name);
74 port.open(pfd, speed);
75 return port;
77 throw new IOException("Could not open serial port " + name);
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiHotplugEvent.java24 * A class that describes the HDMI port hotplug event.
41 public HdmiHotplugEvent(int port, boolean connected) { argument
42 mPort = port;
47 * Returns the port number for which the event occurred.
49 * @return port number
97 int port = p.readInt();
99 return new HdmiHotplugEvent(port, connected);

Completed in 548 milliseconds

12345