HomeSort by relevance Sort by last modified time
    Searched refs:connections (Results 76 - 100 of 286) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/services/core/java/com/android/server/am/
ActiveServices.java 133 * All currently bound service connections. Keys are the IBinder of
    [all...]
ProcessRecord.java 185 final ArraySet<ConnectionRecord> connections = new ArraySet<>(); field in class:ProcessRecord
459 if (connections.size() > 0) {
460 pw.print(prefix); pw.println("Connections:");
461 for (int i=0; i<connections.size(); i++) {
462 pw.print(prefix); pw.print(" - "); pw.println(connections.valueAt(i));
610 for (int i=connections.size()-1; i>=0; i--) {
611 ConnectionRecord cr = connections.valueAt(i);
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
SelfManagedConnectionServiceTest.java 477 List<SelfManagedConnection> connections = new ArrayList<>(); local
486 connections.add(connection);
496 connections.forEach((selfManagedConnection) ->
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothFacade.java 59 private Map<String, BluetoothConnection> connections = field in class:BluetoothFacade
227 @Rpc(description = "Requests that the device be discoverable for Bluetooth connections.")
515 BluetoothConnection> entry : connections.entrySet()) {
519 connections.clear();
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
AppScanStats.java 47 /* ContextMap here is needed to grab Apps and Connections */ ContextMap mContextMap;
446 List<ContextMap.Connection> connections = mContextMap.getConnectionByApp(appEntry.id); local
448 sb.append(" Connections: " + connections.size() + "\n");
450 Iterator<ContextMap.Connection> ii = connections.iterator();
  /external/robolectric-shadows/
run_robolectric_module_tests.mk 56 # - transport: how to accept debugger connections (sockets)
57 # - address: the host and port on which to accept debugger connections
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/proxy/
per_host.go 12 // A PerHost directs connections to a default Dialer unless the hostname
23 // NewPerHost returns a PerHost Dialer that directs connections to either
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/proxy/
per_host.go 12 // A PerHost directs connections to a default Dialer unless the hostname
23 // NewPerHost returns a PerHost Dialer that directs connections to either
  /system/bt/doc/
power_management.md 37 currently known connections to a given device. Thus, if RFCOMM specifies that
86 Throughout the `bta_dm_pm.cc` file, connections whose power management states are
  /system/bt/service/
gatt_server_old.cc 119 std::set<int> connections; member in struct:bluetooth::gatt::ServerInternals
335 g_internal->connections.insert(conn_id);
337 g_internal->connections.erase(conn_id);
710 for (auto connection : internal_->connections) {
  /external/autotest/contrib/
db_cleanup.py 18 from django.db import connections, transaction
60 cursor = connections['default'].cursor()
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
SelfManagedCallListAdapter.java 128 List<SelfManagedConnection> connections) {
131 mConnections = connections;
  /prebuilts/go/darwin-x86/src/net/
example_test.go 30 // multiple connections may be served concurrently.
unixsock.go 60 // UnixConn is an implementation of the Conn interface for connections
248 // Returned connections will be of type *UnixConn.
261 // connections are not closed.
  /prebuilts/go/darwin-x86/src/runtime/
netpoll_epoll.go 59 // polls for ready network connections
  /prebuilts/go/linux-x86/src/net/
example_test.go 30 // multiple connections may be served concurrently.
unixsock.go 60 // UnixConn is an implementation of the Conn interface for connections
248 // Returned connections will be of type *UnixConn.
261 // connections are not closed.
  /prebuilts/go/linux-x86/src/runtime/
netpoll_epoll.go 59 // polls for ready network connections
  /external/wpa_supplicant_8/src/eap_server/
tncs.c 99 struct tncs_data *connections; member in struct:tncs_global
128 tncs = tncs_global_data->connections;
1075 tncs->next = tncs_global_data->connections;
1076 tncs_global_data->connections = tncs;
1094 conn = tncs_global_data->connections;
1100 tncs_global_data->connections = tncs->next;
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnSettings.java 484 Set<AppVpnInfo> connections = new ArraySet<>(); local
489 connections.add(new AppVpnInfo(profile.getIdentifier(), config.user));
495 return connections;
  /external/boringssl/src/ssl/test/runner/
tls.go 44 // A listener implements a network listener (net.Listener) for TLS connections.
61 // NewListener creates a Listener which accepts connections from an inner
72 // Listen creates a TLS listener accepting connections on the
  /prebuilts/go/darwin-x86/src/crypto/tls/
tls.go 43 // A listener implements a network listener (net.Listener) for TLS connections.
59 // NewListener creates a Listener which accepts connections from an inner
70 // Listen creates a TLS listener accepting connections on the
  /prebuilts/go/linux-x86/src/crypto/tls/
tls.go 43 // A listener implements a network listener (net.Listener) for TLS connections.
59 // NewListener creates a Listener which accepts connections from an inner
70 // Listen creates a TLS listener accepting connections on the
  /device/google/marlin/
system.prop 80 # system property for maximum number of HFP client connections
81 bt.max.hfpclient.connections=1
  /external/walt/docs/
Development.md 8 ADB can work over TCP connections. The [official documentation](https://developer.android.com/studio/command-line/adb.html#wireless) assumes that the TCP connection is established over WiFi, but a wired Ethernet connection can be used in the same way and is reported to work much better with ADB. Android will recognize and use most USB-Ethernet adapters out of the box.

Completed in 1364 milliseconds

1 2 34 5 6 7 8 91011>>