Home
last modified time | relevance | path

Searched defs:network (Results 1 – 25 of 107) sorted by relevance

12345

/external/guava/guava/src/com/google/common/graph/
DImmutableNetwork.java49 private ImmutableNetwork(Network<N, E> network) { in ImmutableNetwork()
55 public static <N, E> ImmutableNetwork<N, E> copyOf(Network<N, E> network) { in copyOf()
67 public static <N, E> ImmutableNetwork<N, E> copyOf(ImmutableNetwork<N, E> network) { in copyOf()
76 private static <N, E> Map<N, NetworkConnections<N, E>> getNodeConnections(Network<N, E> network) { in getNodeConnections()
87 private static <N, E> Map<E, N> getEdgeToReferenceNode(Network<N, E> network) { in getEdgeToReferenceNode()
98 private static <N, E> NetworkConnections<N, E> connectionsOf(Network<N, E> network, N node) { in connectionsOf()
115 private static <N, E> Function<E, N> sourceNodeFn(final Network<N, E> network) { in sourceNodeFn()
/external/guava/android/guava/src/com/google/common/graph/
DImmutableNetwork.java49 private ImmutableNetwork(Network<N, E> network) { in ImmutableNetwork()
55 public static <N, E> ImmutableNetwork<N, E> copyOf(Network<N, E> network) { in copyOf()
67 public static <N, E> ImmutableNetwork<N, E> copyOf(ImmutableNetwork<N, E> network) { in copyOf()
76 private static <N, E> Map<N, NetworkConnections<N, E>> getNodeConnections(Network<N, E> network) { in getNodeConnections()
87 private static <N, E> Map<E, N> getEdgeToReferenceNode(Network<N, E> network) { in getEdgeToReferenceNode()
98 private static <N, E> NetworkConnections<N, E> connectionsOf(Network<N, E> network, N node) { in connectionsOf()
115 private static <N, E> Function<E, N> sourceNodeFn(final Network<N, E> network) { in sourceNodeFn()
DGraphs.java84 public static boolean hasCycle(Network<?, ?> network) { in hasCycle()
252 public static <N, E> Network<N, E> transpose(Network<N, E> network) { in transpose()
374 private final Network<N, E> network; field in Graphs.TransposedNetwork
376 TransposedNetwork(Network<N, E> network) { in TransposedNetwork()
516 Network<N, E> network, Iterable<? extends N> nodes) { in inducedSubgraph()
562 public static <N, E> MutableNetwork<N, E> copyOf(Network<N, E> network) { in copyOf()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowNetworkTest.java25 Network network = ShadowNetwork.newInstance(netId); in getNetId_shouldReturnConstructorNetId() local
33 Network network = ShadowNetwork.newInstance(0); in bindSocketDatagramSocket_shouldNotCrash() local
39 Network network = ShadowNetwork.newInstance(0); in bindSocketSocket_shouldNotCrash() local
46 Network network = ShadowNetwork.newInstance(0); in bindSocketFileDescriptor_shouldNotCrash() local
/external/guava/guava-tests/test/com/google/common/graph/
DElementOrderTest.java92 MutableNetwork<Integer, String> network = in edgeOrder_none() local
101 MutableNetwork<Integer, String> network = in edgeOrder_insertion() local
114 MutableNetwork<Integer, String> network = NetworkBuilder.directed().build(); in edgeOrder_default() local
125 MutableNetwork<Integer, String> network = in edgeOrder_natural() local
137 MutableNetwork<Integer, String> network = in edgeOrder_sorted() local
154 MutableNetwork<Integer, String> network = in nodeOrderUnorderedandEdgesSorted() local
223 private static void addEdges(MutableNetwork<Integer, String> network) { in addEdges()
DImmutableNetworkTest.java58 Network<String, String> network = ImmutableNetwork.copyOf(mutableNetwork); in edgesConnecting_directed() local
71 Network<String, String> network = ImmutableNetwork.copyOf(mutableNetwork); in edgesConnecting_undirected() local
DDefaultNetworkImplementationsTest.java46 private MutableNetwork<Integer, String> network; field in DefaultNetworkImplementationsTest
168 private final Network<N, E> network; field in DefaultNetworkImplementationsTest.NetworkForTest
170 NetworkForTest(Network<N, E> network) { in NetworkForTest()
174 static <N, E> NetworkForTest<N, E> from(Network<N, E> network) { in from()
/external/guava/android/guava-tests/test/com/google/common/graph/
DElementOrderTest.java92 MutableNetwork<Integer, String> network = in edgeOrder_none() local
101 MutableNetwork<Integer, String> network = in edgeOrder_insertion() local
114 MutableNetwork<Integer, String> network = NetworkBuilder.directed().build(); in edgeOrder_default() local
125 MutableNetwork<Integer, String> network = in edgeOrder_natural() local
137 MutableNetwork<Integer, String> network = in edgeOrder_sorted() local
154 MutableNetwork<Integer, String> network = in nodeOrderUnorderedandEdgesSorted() local
223 private static void addEdges(MutableNetwork<Integer, String> network) { in addEdges()
DImmutableNetworkTest.java58 Network<String, String> network = ImmutableNetwork.copyOf(mutableNetwork); in edgesConnecting_directed() local
71 Network<String, String> network = ImmutableNetwork.copyOf(mutableNetwork); in edgesConnecting_undirected() local
DDefaultNetworkImplementationsTest.java46 private MutableNetwork<Integer, String> network; field in DefaultNetworkImplementationsTest
168 private final Network<N, E> network; field in DefaultNetworkImplementationsTest.NetworkForTest
170 NetworkForTest(Network<N, E> network) { in NetworkForTest()
174 static <N, E> NetworkForTest<N, E> from(Network<N, E> network) { in from()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowConnectivityManager.java151 protected NetworkInfo getNetworkInfo(Network network) { in getNetworkInfo()
197 protected boolean bindProcessToNetwork(Network network) { in bindProcessToNetwork()
260 public void addNetwork(Network network, NetworkInfo networkInfo) { in addNetwork()
271 public void removeNetwork(Network network) { in removeNetwork()
336 protected void reportNetworkConnectivity(Network network, boolean hasConnectivity) { in reportNetworkConnectivity()
348 protected NetworkCapabilities getNetworkCapabilities(Network network) { in getNetworkCapabilities()
359 public void setNetworkCapabilities(Network network, NetworkCapabilities networkCapabilities) { in setNetworkCapabilities()
375 protected LinkProperties getLinkProperties(Network network) { in getLinkProperties()
385 public void setLinkProperties(Network network, LinkProperties linkProperties) { in setLinkProperties()
/external/volley/src/test/java/com/android/volley/toolbox/
DJsonRequestCharsetTest.java56 NetworkResponse network = new NetworkResponse(data); in defaultCharsetJsonObject() local
70 NetworkResponse network = new NetworkResponse(data); in defaultCharsetJsonArray() local
85 NetworkResponse network = new NetworkResponse(data, headers); in specifiedCharsetJsonObject() local
100 NetworkResponse network = new NetworkResponse(data, headers); in specifiedCharsetJsonArray() local
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DConnectivityManagerFacade.java169 public void onPreCheck(Network network) { in onPreCheck()
181 public void onAvailable(Network network) { in onAvailable()
193 public void onLosing(Network network, int maxMsToLive) { in onLosing()
206 public void onLost(Network network) { in onLost()
230 public void onCapabilitiesChanged(Network network, in onCapabilitiesChanged()
245 public void onBlockedStatusChanged(Network network, boolean blocked) { in onBlockedStatusChanged()
258 public void onNetworkSuspended(Network network) { in onNetworkSuspended()
270 public void onLinkPropertiesChanged(Network network, in onLinkPropertiesChanged()
284 public void onNetworkResumed(Network network) { in onNetworkResumed()
927 Network network = sNetworkHashMap.get(networkId.longValue()); in connectivityGetMultipathPreferenceForNetwork() local
[all …]
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/scheduler/
DRequirementsWatcher.java167 public void onAvailable(Network network) { in onAvailable()
172 public void onLost(Network network) { in onLost()
177 public void onCapabilitiesChanged(Network network, NetworkCapabilities networkCapabilities) { in onCapabilitiesChanged()
/external/volley/src/main/java/com/android/volley/toolbox/
DVolley.java41 BasicNetwork network; in newRequestQueue() local
88 private static RequestQueue newRequestQueue(Context context, Network network) { in newRequestQueue()
/external/boringssl/src/ssl/test/runner/
Dtls.go75 func Listen(network, laddr string, config *Config) (net.Listener, error) { argument
99 func DialWithDialer(dialer *net.Dialer, network, addr string, config *Config) (*Conn, error) { argument
170 func Dial(network, addr string, config *Config) (*Conn, error) { argument
/external/autotest/client/cros/networking/chrome_testing/
Dchrome_networking_test_api.py63 def disable_network_device(self, network): argument
83 def enable_network_device(self, network): argument
Dtest_utils.py17 def get_ui_property(network, property_name, expansion_level=1): argument
87 def simple_network_sanity_check( argument
/external/wpa_supplicant_8/wpa_supplicant/examples/
Dwpas-dbus-new-signals.py105 def networkAdded(network, properties): argument
108 def networkRemoved(network): argument
111 def networkSelected(network): argument
/external/ipsec-tools/src/racoon/
Disakmp_unity.c210 struct unity_network *network = (struct unity_network *)(attr + 1); local
269 struct unity_network * network; local
303 int splitnet_list_add(list, network, count) in splitnet_list_add() argument
/external/webrtc/webrtc/p2p/base/
Dstunport.h33 rtc::Network* network, in Create()
50 rtc::Network* network, in Create()
232 rtc::Network* network, in Create()
260 rtc::Network* network, in StunPort()
/external/skqp/src/compute/hs/gen/
Dnetworks.h28 struct hsg_op const * network; member
/external/mesa3d/src/gallium/targets/haiku-softpipe/
Dmeson.build37 cpp.find_library('network'), dep_unwind, idep_mesautil, idep_nir, build
/external/volley/src/main/java/com/android/volley/
DRequestQueue.java138 Cache cache, Network network, int threadPoolSize, ResponseDelivery delivery) { in RequestQueue()
152 public RequestQueue(Cache cache, Network network, int threadPoolSize) { in RequestQueue()
166 public RequestQueue(Cache cache, Network network) { in RequestQueue()
/external/autotest/server/site_tests/policy_WiFiTypesServer/
Dpolicy_WiFiTypesServer.py16 def run_once(self, host, ap_config, network): argument

12345