HomeSort by relevance Sort by last modified time
    Searched refs:network (Results 251 - 275 of 879) sorted by null

<<11121314151617181920>>

  /packages/apps/Settings/src/com/android/settings/network/
WifiCallingPreferenceController.java 16 package com.android.settings.network;
  /packages/apps/Settings/tests/robotests/src/com/android/settings/network/
MobilePlanPreferenceControllerTest.java 17 package com.android.settings.network;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/network/
HttpUrlConnectionBuilderTests.java 17 package com.android.inputmethod.latin.network;
19 import static com.android.inputmethod.latin.network.HttpUrlConnectionBuilder.MODE_BI_DIRECTIONAL;
20 import static com.android.inputmethod.latin.network.HttpUrlConnectionBuilder.MODE_DOWNLOAD_ONLY;
21 import static com.android.inputmethod.latin.network.HttpUrlConnectionBuilder.MODE_UPLOAD_ONLY;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
SystemFacade.java 22 import android.net.Network;
34 public Network getActiveNetwork(int uid, boolean ignoreBlocked);
36 public NetworkInfo getNetworkInfo(Network network, int uid, boolean ignoreBlocked);
62 * Returns true if cleartext network traffic is permitted for the specified UID.
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
FakeSystemFacade.java 11 import android.net.Network;
67 public Network getActiveNetwork(int uid, boolean ignoreBlocked) {
71 final Network network = mock(Network.class); local
73 when(network.openConnection(any())).then(new Answer<URLConnection>() {
82 return network;
87 public NetworkInfo getNetworkInfo(Network network, int uid, boolean ignoreBlocked) {
  /prebuilts/go/darwin-x86/src/net/
port_unix.go 50 func goLookupPort(network, service string) (port int, err error) {
52 return lookupPortMap(network, service)
file.go 14 func (fileAddr) Network() string { return "file+net" }
17 // FileConn returns a copy of the network connection corresponding to
29 // FileListener returns a copy of the network listener corresponding
41 // FilePacketConn returns a copy of the packet network connection
listen_test.go 35 network string
70 if !testableListenArgs(tt.network, JoinHostPort(tt.address, "0"), "") {
71 t.Logf("skipping %s test", tt.network+" "+tt.address)
75 ln1, err := Listen(tt.network, JoinHostPort(tt.address, "0"))
79 if err := checkFirstListener(tt.network, ln1); err != nil {
83 ln2, err := Listen(tt.network, JoinHostPort(tt.address, ln1.(*TCPListener).port()))
87 if err := checkSecondListener(tt.network, tt.address, err); err != nil {
96 network string
131 if !testableListenArgs(tt.network, JoinHostPort(tt.address, "0"), "") {
132 t.Logf("skipping %s test", tt.network+" "+tt.address
    [all...]
  /prebuilts/go/linux-x86/src/net/
port_unix.go 50 func goLookupPort(network, service string) (port int, err error) {
52 return lookupPortMap(network, service)
file.go 14 func (fileAddr) Network() string { return "file+net" }
17 // FileConn returns a copy of the network connection corresponding to
29 // FileListener returns a copy of the network listener corresponding
41 // FilePacketConn returns a copy of the packet network connection
listen_test.go 35 network string
70 if !testableListenArgs(tt.network, JoinHostPort(tt.address, "0"), "") {
71 t.Logf("skipping %s test", tt.network+" "+tt.address)
75 ln1, err := Listen(tt.network, JoinHostPort(tt.address, "0"))
79 if err := checkFirstListener(tt.network, ln1); err != nil {
83 ln2, err := Listen(tt.network, JoinHostPort(tt.address, ln1.(*TCPListener).port()))
87 if err := checkSecondListener(tt.network, tt.address, err); err != nil {
96 network string
131 if !testableListenArgs(tt.network, JoinHostPort(tt.address, "0"), "") {
132 t.Logf("skipping %s test", tt.network+" "+tt.address
    [all...]
  /external/autotest/server/site_tests/network_WiFi_ChaosConnectDisconnect/
network_WiFi_ChaosConnectDisconnect.py 9 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
11 from autotest_lib.server.cros.network import chaos_clique_utils
  /external/strace/tests/
qual_syscall.test 40 file process \!desc \!ipc \!memory \!network \!signal; do
50 \!file \!process desc ipc memory network signal; do
  /external/strace/tests-m32/
qual_syscall.test 40 file process \!desc \!ipc \!memory \!network \!signal; do
50 \!file \!process desc ipc memory network signal; do
  /external/strace/tests-mx32/
qual_syscall.test 40 file process \!desc \!ipc \!memory \!network \!signal; do
50 \!file \!process desc ipc memory network signal; do
  /frameworks/base/services/core/java/com/android/server/connectivity/
NetworkAgentInfo.java 23 import android.net.Network;
53 // States of a network:
59 // This state is entered when a registered NetworkAgent for a VPN network transitions to the
60 // CONNECTING state (TODO: go through this state for every network, not just VPNs).
61 // ConnectivityService will tell netd to create the network early in order to add extra UID
62 // routing rules referencing the netID. These rules need to be in place before the network is
63 // connected to avoid racing against client apps trying to connect to a half-setup network.
66 // ConnectivityService will tell netd to create the network if it was not already created, and
69 // If this network can satisfy the default NetworkRequest, then NetworkMonitor will
71 // If this network cannot satisfy the default NetworkRequest, it will immediately b
123 public final Network network; field in class:NetworkAgentInfo
    [all...]
  /packages/services/BuiltInPrintService/src/com/android/bips/util/
WifiMonitor.java 25 import android.net.Network;
75 for (Network network : cm.getAllNetworks()) {
76 NetworkInfo networkInfo = cm.getNetworkInfo(network);
  /prebuilts/go/darwin-x86/src/encoding/gob/
example_interface_test.go 31 var network bytes.Buffer // Stand-in for the network.
39 enc := gob.NewEncoder(&network)
45 dec := gob.NewDecoder(&network)
  /prebuilts/go/linux-x86/src/encoding/gob/
example_interface_test.go 31 var network bytes.Buffer // Stand-in for the network.
39 enc := gob.NewEncoder(&network)
45 dec := gob.NewDecoder(&network)
  /external/volley/src/main/java/com/android/volley/
RequestQueue.java 37 * resolving from either cache or network on a worker thread, and then delivering
75 /** The queue of requests that are actually going out to the network. */
79 /** Number of network request dispatcher threads to start. */
85 /** Network interface for performing requests. */
86 private final Network mNetwork;
91 /** The network dispatchers. */
104 * @param network A Network interface for performing HTTP requests
105 * @param threadPoolSize Number of network dispatcher threads to create
108 public RequestQueue(Cache cache, Network network, int threadPoolSize
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-dbus-new-signals.py 16 WPAS_DBUS_NETWORK_INTERFACE = "fi.w1.wpa_supplicant1.Network"
105 def networkAdded(network, properties):
106 print "NetworkAdded(%s)" % (network)
108 def networkRemoved(network):
109 print "NetworkRemoved(%s)" % (network)
111 def networkSelected(network):
112 print "NetworkSelected(%s)" % (network)
124 print "PropertiesChanged(Network): %s=%s" % (i, properties[i])
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
ConnectivityListener.java 27 import android.net.Network;
199 private Network getFirstEthernet() {
200 final Network[] networks = mConnectivityManager.getAllNetworks();
201 for (final Network network : networks) {
202 NetworkInfo networkInfo = mConnectivityManager.getNetworkInfo(network);
204 return network;
211 final Network network = getFirstEthernet(); local
212 if (network == null)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/net/
ConnectivityScreenOffTestActivity.java 32 import android.net.Network;
62 * A CTS Verifier test case for testing IPv6 network connectivity while the screen is off.
65 * ("Minimum Network Capability") of the CDD. Specifically, it requires that: "unicast IPv6
72 * [2] The device must join an IPv6-capable network (basic IPv6 connectivity to an
299 Network mNetwork;
305 void setNetwork(Network network) {
306 mNetwork = network;
357 public void onAvailable(Network network) {
    [all...]
  /external/svox/pico/lib/
picopr.c 338 picokpr_Preproc network,
    [all...]
  /external/opencv/ml/src/
mlcnn.cpp 61 static void icvTrainCNNetwork( CvCNNetwork* network,
69 /*------------------------- functions for the CNN network ------------------------------*/
70 static void icvCNNetworkAddLayer( CvCNNetwork* network, CvCNNLayer* layer );
71 static void icvCNNetworkRelease( CvCNNetwork** network );
106 #define ICV_CHECK_CNN_NETWORK(network) \
110 if( !network ) \
112 "Null <network> pointer. Network must be created by user." ); \
113 n_layers = network->n_layers; \
114 first_layer = last_layer = network->layers;
    [all...]

Completed in 703 milliseconds

<<11121314151617181920>>