Searched refs:port (Results 101 - 123 of 123) sorted by relevance

12345

/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiControlService.java234 // HDMI port information. Stored in the unmodifiable list to keep the static information
238 // Map from path(physical address) to port ID.
241 // Map from port ID to HdmiPortInfo.
244 // Map from port ID to HdmiDeviceInfo.
285 // Last input port before switching to the MHL port. Should switch back to this port
287 // Gets invalidated if we go to other port/input.
620 // Initialize HDMI port information. Combine the information from CEC and MHL HAL and
628 // each port
756 getDeviceInfoByPort(int port) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java658 int port = a.getPort();
660 port >= 0 ? Integer.toString(port) : null);
/frameworks/av/services/audiopolicy/
H A DAudioPolicyInterfaceImplLegacy.cpp534 status_t AudioPolicyService::getAudioPort(struct audio_port *port __unused)
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 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 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...");
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java2449 * aahRX://<multicastIP>:<port>
2456 * @param endpoint the address and UDP port of the re-transmission target or
2468 int port = 0;
2472 port = endpoint.getPort();
2475 int ret = native_setRetransmitEndpoint(addrString, port);
2481 private native final int native_setRetransmitEndpoint(String addrString, int port); argument
H A DAudioService.java4843 for (AudioPort port : ports) {
4844 if (port instanceof AudioDevicePort) {
4845 final AudioDevicePort devicePort = (AudioDevicePort) port;
/frameworks/av/media/libmedia/
H A DAudioSystem.cpp894 status_t AudioSystem::getAudioPort(struct audio_port *port) argument
898 return aps->getAudioPort(port);
/frameworks/base/services/core/java/com/android/server/display/
H A DWifiDisplayController.java732 final int port = getPortNumber(mConnectedDevice);
733 final String iface = addr.getHostAddress() + ":" + port;
1023 // These dongles ignore the port we broadcast in our WFD IE.
/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py432 # TODO: handle possibility that port 8700 is in use (may help with
472 # Forward port for java debugger to Dalvik
498 + " port=" + str(self.gdbserver_port) + ") ==--"
500 # Forward port for gdbserver
507 print "--==GDB Plugin requested attach (port=" \
518 def start_jdb(self, port):
524 "com.sun.jdi.SocketAttach:hostname=localhost,port=" + str(port)]
/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/os/
H A DDebug.java475 * Change the JDWP port.
480 public static void changeDebugPort(int port) {} argument
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java303 * PAC manager has received new port.
2701 // actually uses the PAC to resolve; this results in ProxyInfo's with PAC URL, host and port
2720 int port = 0;
2732 port = mGlobalProxy.getPort();
2744 Settings.Global.putInt(res, Settings.Global.GLOBAL_HTTP_PROXY_PORT, port);
2762 int port = Settings.Global.getInt(res, Settings.Global.GLOBAL_HTTP_PROXY_PORT, 0);
2771 proxyProperties = new ProxyInfo(host, port, exclList);
2807 // This call could be coming from the PacManager, containing the port of the local
2809 // global (to get the correct local port), and send a broadcast.
H A DNetworkManagementService.java1830 public void setFirewallEgressDestRule(String addr, int port, boolean allow) { argument
1835 mConnector.execute("firewall", "set_egress_dest_rule", addr, port, rule);
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GpsLocationProvider.cpp781 jint type, jstring hostname, jint port)
788 sAGpsInterface->set_server(type, c_hostname, port);
780 android_location_GpsLocationProvider_set_agps_server(JNIEnv* env, jobject obj, jint type, jstring hostname, jint port) argument
/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 */
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp54 extern int parse(JNIEnv *env, jstring jAddress, int port, sockaddr_storage *ss);
73 // proxies. A firewall might remove a port mapping when there is no outgoing
/frameworks/base/services/core/java/com/android/server/location/
H A DGpsLocationProvider.java239 // Valid TCP/UDP port range is (0, 65535].
2198 private native void native_set_agps_server(int type, String hostname, int port); argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataConnection.java507 + "' proxy='" + mApnSetting.proxy + "' port='" + mApnSetting.port + "'");
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java4121 String port = sa.getNonConfigurationString(
4124 outInfo.addDataAuthority(host, port);
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java6689 * Starts the view server on the specified port.
6691 * @param port The port to listener to.
6699 public boolean startViewServer(int port) { argument
6708 if (port < 1024) {
6724 mViewServer = new ViewServer(this, port);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java1484 String port = "";
1489 port = Integer.toString(proxy.getPort());
1498 r.thread.setHttpProxy(host, port, exclList, pacFileUrl);

Completed in 1705 milliseconds

12345