Home
last modified time | relevance | path

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

123456

/external/guava/android/guava/src/com/google/common/graph/
DImmutableNetwork.java51 private ImmutableNetwork(Network<N, E> network) { in ImmutableNetwork()
57 public static <N, E> ImmutableNetwork<N, E> copyOf(Network<N, E> network) { in copyOf()
69 public static <N, E> ImmutableNetwork<N, E> copyOf(ImmutableNetwork<N, E> network) { in copyOf()
78 private static <N, E> Map<N, NetworkConnections<N, E>> getNodeConnections(Network<N, E> network) { in getNodeConnections()
89 private static <N, E> Map<E, N> getEdgeToReferenceNode(Network<N, E> network) { in getEdgeToReferenceNode()
100 private static <N, E> NetworkConnections<N, E> connectionsOf(Network<N, E> network, N node) { in connectionsOf()
117 private static <N, E> Function<E, N> sourceNodeFn(final Network<N, E> network) { in sourceNodeFn()
/external/guava/guava/src/com/google/common/graph/
DImmutableNetwork.java51 private ImmutableNetwork(Network<N, E> network) { in ImmutableNetwork()
57 public static <N, E> ImmutableNetwork<N, E> copyOf(Network<N, E> network) { in copyOf()
69 public static <N, E> ImmutableNetwork<N, E> copyOf(ImmutableNetwork<N, E> network) { in copyOf()
78 private static <N, E> Map<N, NetworkConnections<N, E>> getNodeConnections(Network<N, E> network) { in getNodeConnections()
89 private static <N, E> Map<E, N> getEdgeToReferenceNode(Network<N, E> network) { in getEdgeToReferenceNode()
100 private static <N, E> NetworkConnections<N, E> connectionsOf(Network<N, E> network, N node) { in connectionsOf()
117 private static <N, E> Function<E, N> sourceNodeFn(final Network<N, E> network) { in sourceNodeFn()
/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/
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
118 ImmutableNetwork<String, Integer> network = in immutableNetworkBuilder_addNode() local
127 ImmutableNetwork<String, Integer> network = in immutableNetworkBuilder_putEdgeFromNodes() local
137 ImmutableNetwork<String, Integer> network = in immutableNetworkBuilder_putEdgeFromEndpointPair() local
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()
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/
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
118 ImmutableNetwork<String, Integer> network = in immutableNetworkBuilder_addNode() local
127 ImmutableNetwork<String, Integer> network = in immutableNetworkBuilder_putEdgeFromNodes() local
137 ImmutableNetwork<String, Integer> network = in immutableNetworkBuilder_putEdgeFromEndpointPair() local
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()
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.java204 public void onPreCheck(Network network) { in onPreCheck()
216 public void onAvailable(Network network) { in onAvailable()
228 public void onLosing(Network network, int maxMsToLive) { in onLosing()
241 public void onLost(Network network) { in onLost()
265 public void onCapabilitiesChanged(Network network, in onCapabilitiesChanged()
280 public void onBlockedStatusChanged(Network network, boolean blocked) { in onBlockedStatusChanged()
293 public void onNetworkSuspended(Network network) { in onNetworkSuspended()
305 public void onLinkPropertiesChanged(Network network, in onLinkPropertiesChanged()
319 public void onNetworkResumed(Network network) { in onNetworkResumed()
1006 Network network = sNetworkHashMap.get(networkId.longValue()); in connectivityGetMultipathPreferenceForNetwork() local
[all …]
/external/webrtc/sdk/android/api/org/webrtc/
DNetworkMonitorAutoDetect.java168 public void onAvailable(Network network) { in onAvailable()
174 public void onCapabilitiesChanged(Network network, NetworkCapabilities networkCapabilities) { in onCapabilitiesChanged()
182 public void onLinkPropertiesChanged(Network network, LinkProperties linkProperties) { in onLinkPropertiesChanged()
190 public void onLosing(Network network, int maxMsToLive) { in onLosing()
198 public void onLost(Network network) { in onLost()
203 private void onNetworkChanged(Network network) { in onNetworkChanged()
246 NetworkState getNetworkState(@Nullable Network network) { in getNetworkState()
397 private @Nullable NetworkInformation networkToInfo(@Nullable Network network) { in networkToInfo()
445 boolean hasInternetCapability(Network network) { in hasInternetCapability()
877 private static long networkToNetId(Network network) { in networkToNetId()
/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/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/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/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/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/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/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/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/ltp/testcases/lib/
Dtst_net_vars.c110 struct in_addr network; in calc_network() local
118 static int is_in_subnet_ipv4(const struct in_addr *network, in is_in_subnet_ipv4()
125 static int is_in_subnet_ipv6(const struct in6_addr *network, in is_in_subnet_ipv6()
210 struct in_addr mask, network; in get_ipv4_net16_unused() local
264 struct in6_addr mask, network; in get_ipv6_net32_unused() local
/external/tensorflow/tensorflow/compiler/tf2tensorrt/utils/
Dtrt_shape_optimization_profiles.cc138 const nvinfer1::INetworkDefinition* network) { in AddProfiles()
180 const nvinfer1::INetworkDefinition* network) { in ConfigureBuilder()
188 const nvinfer1::INetworkDefinition* network) { in SetShapeTensorMask()

123456