Home
last modified time | relevance | path

Searched +full:- +full:- +full:network (Results 1 – 25 of 1266) sorted by relevance

12345678910>>...51

/external/iproute2/man/man8/
Dip-netns.81 .TH IP\-NETNS 8 "16 Jan 2013" "iproute2" "Linux"
3 ip-netns \- process network namespace management
23 .B ip [-all] netns del
49 A network namespace is logically another copy of the network stack,
50 with its own routes, firewall rules, and network devices.
52 By default a process inherits its network namespace from its parent. Initially all
53 the processes share the same default network namespace from the init process.
55 By convention a named network namespace is an object at
59 refers to the specified network namespace. Holding that file
60 descriptor open keeps the network namespace alive. The file
[all …]
/external/autotest/metadata/tests/
Dnetwork.star3 # Use of this source code is governed by a BSD-style license that can be
13 'network/ChromeCellularEndToEnd',
18 'network/ChromeCellularNetworkPresent',
23 'network/ChromeCellularNetworkProperties',
28 'network/ChromeCellularSmokeTest',
33 'network/ChromeWifiConfigure',
38 'network/ChromeWifiEndToEnd',
43 'network/DhcpBrokenDefaultGateway',
48 'network/DhcpClasslessStaticRoute',
53 'network/DhcpFQDN',
[all …]
/external/google-cloud-java/java-network-management/
DCHANGELOG.md3 …googleapis/google-cloud-java/compare/google-cloud-network-management-v1.5.1-SNAPSHOT...google-clou…
8 …https://github.com/googleapis/google-cloud-java/issues/8545)) ([8fdc6c1](https://github.com/google…
9 …d to `PropertyQuota` type ([8fdc6c1](https://github.com/googleapis/google-cloud-java/commit/8fdc6c…
10 * create release please configuration ([41b97e6](https://github.com/googleapis/google-cloud-java/co…
15-cloud-shared-dependencies to v3.0.2 ([#8325](https://github.com/googleapis/google-cloud-java/issu…
16-cloud-shared-dependencies to v3.0.4 ([#8528](https://github.com/googleapis/google-cloud-java/issu…
17-bot-staging should not be commited ([#8337](https://github.com/googleapis/google-cloud-java/issue…
22 …https://github.com/googleapis/google-cloud-java/issues/8417)) ([8f0c60b](https://github.com/google…
24 …com/googleapis/google-cloud-java/compare/google-cloud-network-management-v1.4.4...google-cloud-net…
29 …https://github.com/googleapis/google-cloud-java/issues/8545)) ([8fdc6c1](https://github.com/google…
[all …]
/external/google-cloud-java/java-network-security/
DCHANGELOG.md3 …m/googleapis/google-cloud-java/compare/google-cloud-network-security-v0.7.1-SNAPSHOT...google-clou…
8 …https://github.com/googleapis/google-cloud-java/issues/8545)) ([8fdc6c1](https://github.com/google…
9 …d to `PropertyQuota` type ([8fdc6c1](https://github.com/googleapis/google-cloud-java/commit/8fdc6c…
14-cloud-shared-dependencies to v3.0.2 ([#8325](https://github.com/googleapis/google-cloud-java/issu…
15-cloud-shared-dependencies to v3.0.4 ([#8528](https://github.com/googleapis/google-cloud-java/issu…
16-bot-staging should not be commited ([#8337](https://github.com/googleapis/google-cloud-java/issue…
21 …https://github.com/googleapis/google-cloud-java/issues/8417)) ([8f0c60b](https://github.com/google…
23 …b.com/googleapis/google-cloud-java/compare/google-cloud-network-security-v0.6.4...google-cloud-net…
28 …https://github.com/googleapis/google-cloud-java/issues/8545)) ([8fdc6c1](https://github.com/google…
29 …d to `PropertyQuota` type ([8fdc6c1](https://github.com/googleapis/google-cloud-java/commit/8fdc6c…
[all …]
/external/guava/guava-tests/test/com/google/common/graph/
DAbstractNetworkTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
45 * Abstract base class for testing implementations of {@link Network} interface. Network instances
54 * <li>Test cases related to the specific implementation of the {@link Network} interface.
62 Network<Integer, String> network; field in AbstractNetworkTest
65 * The same reference as {@link #network}, except as a mutable network. This field is null in case
66 * {@link #createGraph()} didn't return a mutable network.
77 static final String E11 = "1-1";
78 static final String E11_A = "1-1a";
79 static final String E12 = "1-2";
80 static final String E12_A = "1-2a";
[all …]
DAbstractStandardUndirectedNetworkTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
34 * Abstract base class for testing undirected {@link Network} implementations defined in this
43 for (Integer node : network.nodes()) { in validateUndirectedEdges()
46 network.inEdges(node), network.outEdges(node), network.incidentEdges(node)) in validateUndirectedEdges()
50 network.predecessors(node), network.successors(node), network.adjacentNodes(node)) in validateUndirectedEdges()
53 for (Integer adjacentNode : network.adjacentNodes(node)) { in validateUndirectedEdges()
54 assertThat(network.edgesConnecting(node, adjacentNode)) in validateUndirectedEdges()
55 .containsExactlyElementsIn(network.edgesConnecting(adjacentNode, node)); in validateUndirectedEdges()
63 Set<Integer> nodes = network.nodes(); in nodes_checkReturnedSetMutability()
65 assertThrows(UnsupportedOperationException.class, () -> nodes.add(N2)); in nodes_checkReturnedSetMutability()
[all …]
DAbstractStandardDirectedNetworkTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
35 * Abstract base class for testing directed {@link Network} implementations defined in this package.
41 for (Integer node : network.nodes()) { in validateSourceAndTarget()
42 for (String inEdge : network.inEdges(node)) { in validateSourceAndTarget()
43 EndpointPair<Integer> endpointPair = network.incidentNodes(inEdge); in validateSourceAndTarget()
48 for (String outEdge : network.outEdges(node)) { in validateSourceAndTarget()
49 EndpointPair<Integer> endpointPair = network.incidentNodes(outEdge); in validateSourceAndTarget()
54 for (Integer adjacentNode : network.adjacentNodes(node)) { in validateSourceAndTarget()
55 Set<String> edges = network.edgesConnecting(node, adjacentNode); in validateSourceAndTarget()
56 Set<String> antiParallelEdges = network.edgesConnecting(adjacentNode, node); in validateSourceAndTarget()
[all …]
DDefaultNetworkImplementationsTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
36 * Test for {@link Network} methods which have default implementations. Currently those
37 * implementations are in {@link AbstractNetwork}; in future they might be in {@link Network}
44 private MutableNetwork<Integer, String> network; field in DefaultNetworkImplementationsTest
49 private static final String E11 = "1-1";
50 private static final String E11_A = "1-1a";
51 private static final String E12 = "1-2";
52 private static final String E12_A = "1-2a";
53 private static final String E21 = "2-1";
54 private static final String E23 = "2-3";
[all …]
/external/guava/android/guava-tests/test/com/google/common/graph/
DAbstractNetworkTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
45 * Abstract base class for testing implementations of {@link Network} interface. Network instances
54 * <li>Test cases related to the specific implementation of the {@link Network} interface.
62 Network<Integer, String> network; field in AbstractNetworkTest
65 * The same reference as {@link #network}, except as a mutable network. This field is null in case
66 * {@link #createGraph()} didn't return a mutable network.
77 static final String E11 = "1-1";
78 static final String E11_A = "1-1a";
79 static final String E12 = "1-2";
80 static final String E12_A = "1-2a";
[all …]
DAbstractStandardUndirectedNetworkTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
33 * Abstract base class for testing undirected {@link Network} implementations defined in this
42 for (Integer node : network.nodes()) { in validateUndirectedEdges()
45 network.inEdges(node), network.outEdges(node), network.incidentEdges(node)) in validateUndirectedEdges()
49 network.predecessors(node), network.successors(node), network.adjacentNodes(node)) in validateUndirectedEdges()
52 for (Integer adjacentNode : network.adjacentNodes(node)) { in validateUndirectedEdges()
53 assertThat(network.edgesConnecting(node, adjacentNode)) in validateUndirectedEdges()
54 .containsExactlyElementsIn(network.edgesConnecting(adjacentNode, node)); in validateUndirectedEdges()
62 Set<Integer> nodes = network.nodes(); in nodes_checkReturnedSetMutability()
64 assertThrows(UnsupportedOperationException.class, () -> nodes.add(N2)); in nodes_checkReturnedSetMutability()
[all …]
DAbstractStandardDirectedNetworkTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
34 * Abstract base class for testing directed {@link Network} implementations defined in this package.
40 for (Integer node : network.nodes()) { in validateSourceAndTarget()
41 for (String inEdge : network.inEdges(node)) { in validateSourceAndTarget()
42 EndpointPair<Integer> endpointPair = network.incidentNodes(inEdge); in validateSourceAndTarget()
47 for (String outEdge : network.outEdges(node)) { in validateSourceAndTarget()
48 EndpointPair<Integer> endpointPair = network.incidentNodes(outEdge); in validateSourceAndTarget()
53 for (Integer adjacentNode : network.adjacentNodes(node)) { in validateSourceAndTarget()
54 Set<String> edges = network.edgesConnecting(node, adjacentNode); in validateSourceAndTarget()
55 Set<String> antiParallelEdges = network.edgesConnecting(adjacentNode, node); in validateSourceAndTarget()
[all …]
DDefaultNetworkImplementationsTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
36 * Test for {@link Network} methods which have default implementations. Currently those
37 * implementations are in {@link AbstractNetwork}; in future they might be in {@link Network}
44 private MutableNetwork<Integer, String> network; field in DefaultNetworkImplementationsTest
49 private static final String E11 = "1-1";
50 private static final String E11_A = "1-1a";
51 private static final String E12 = "1-2";
52 private static final String E12_A = "1-2a";
53 private static final String E21 = "2-1";
54 private static final String E23 = "2-3";
[all …]
/external/cronet/components/metrics/net/
Dnetwork_metrics_provider.cc2 // Use of this source code is governed by a BSD-style license that can be
28 #include "services/network/public/cpp/network_connection_tracker.h"
33 SystemProfileProto::Network::EffectiveConnectionType
38 return SystemProfileProto::Network::EFFECTIVE_CONNECTION_TYPE_UNKNOWN; in ConvertEffectiveConnectionType()
40 return SystemProfileProto::Network::EFFECTIVE_CONNECTION_TYPE_SLOW_2G; in ConvertEffectiveConnectionType()
42 return SystemProfileProto::Network::EFFECTIVE_CONNECTION_TYPE_2G; in ConvertEffectiveConnectionType()
44 return SystemProfileProto::Network::EFFECTIVE_CONNECTION_TYPE_3G; in ConvertEffectiveConnectionType()
46 return SystemProfileProto::Network::EFFECTIVE_CONNECTION_TYPE_4G; in ConvertEffectiveConnectionType()
48 return SystemProfileProto::Network::EFFECTIVE_CONNECTION_TYPE_OFFLINE; in ConvertEffectiveConnectionType()
51 return SystemProfileProto::Network::EFFECTIVE_CONNECTION_TYPE_UNKNOWN; in ConvertEffectiveConnectionType()
[all …]
/external/cronet/net/android/java/src/org/chromium/net/
DNetworkChangeNotifierAutoDetect.java2 // Use of this source code is governed by a BSD-style license that can be
22 import android.net.Network;
62 /** Immutable class representing the state of a device's network. */
68 // WIFI SSID of the connection on pre-Marshmallow, NetID starting with Marshmallow. Always
69 // non-null (i.e. instead of null it'll be an empty string) to facilitate .equals().
71 // Indicates if this network is using DNS-over-TLS.
73 // Indicates the DNS-over-TLS server in use, if specified.
109 // Always non-null to facilitate .equals().
187 /** Returns boolean indicating if this network uses DNS-over-TLS. */
192 /** Returns the DNS-over-TLS server in use, if specified. */
[all …]
/external/aws-sdk-java-v2/services/tnb/src/main/resources/codegen-resources/
Dservice-2.json4 "apiVersion":"2008-10-21",
7 "protocol":"rest-json",
8 "serviceFullName":"AWS Telco Network Builder",
12 "uid":"tnb-2008-10-21"
30 …tation":"<p>Cancels a network operation.</p> <p>A network operation is any operation that is done …
48network function (an ETSI standard telecommunication application) and function package descriptor …
67network instance.</p> <p>A network instance is a single network created in Amazon Web Services TNB…
85network package.</p> <p>A network package is a .zip file in CSAR (Cloud Service Archive) format de…
102network function (an ETSI standard telecommunication application) and function package descriptor …
120network instance.</p> <p>A network instance is a single network created in Amazon Web Services TNB…
[all …]
/external/webrtc/sdk/android/api/org/webrtc/
DNetworkMonitorAutoDetect.java4 * Use of this source code is governed by a BSD-style license
22 import android.net.Network;
55 // Defined from ConnectivityManager.TYPE_XXX for non-mobile; for mobile, it is
62 // above for the underlying network that is used by the VPN.
99 @GuardedBy("availableNetworks") final Set<Network> availableNetworks;
101 SimpleNetworkCallback(Set<Network> availableNetworks) { in SimpleNetworkCallback()
106 public void onAvailable(Network network) { in onAvailable() argument
108 "Network" in onAvailable()
109 + " handle: " + networkToNetId(network) in onAvailable()
110 + " becomes available: " + network.toString()); in onAvailable()
[all …]
/external/iptables/iptables/tests/shell/testcases/nft-only/
D0009-needless-bitwise_01 #!/bin/bash -x
3 [[ $XT_MULTI == *xtables-nft-multi ]] || { echo "skip $XT_MULTI"; exit 0; }
4 set -e
12 echo "-A OUTPUT -d $addr"
15 ) | $XT_MULTI iptables-restore
21 echo "-A OUTPUT -d $addr"
24 ) | $XT_MULTI ip6tables-restore
39 echo "-A OUTPUT -d $addr"
42 echo "-A OUTPUT --destination-mac fe:ed:00:c0:ff:ee/$mask"
45 ) | $XT_MULTI arptables-restore
[all …]
/external/webrtc/rtc_base/
Dnetwork_unittest.cc4 * Use of this source code is governed by a BSD-style license
11 #include "rtc_base/network.h"
122 bool SameNameAndPrefix(const rtc::Network& a, const rtc::Network& b) { in SameNameAndPrefix()
134 std::vector<const Network*> CopyNetworkPointers( in CopyNetworkPointers()
135 const std::vector<std::unique_ptr<Network>>& owning_list) { in CopyNetworkPointers()
136 std::vector<const Network*> ptr_list; in CopyNetworkPointers()
138 for (const auto& network : owning_list) { in CopyNetworkPointers() local
139 ptr_list.push_back(network.get()); in CopyNetworkPointers()
154 std::vector<std::unique_ptr<Network>> list, in MergeNetworkList()
162 const Network& network) { in IsIgnoredNetwork() argument
[all …]
Dnetwork.cc4 * Use of this source code is governed by a BSD-style license
11 #include "rtc_base/network.h"
68 std::unique_ptr<Network> net;
72 bool SortNetworks(const Network* a, const Network* b) { in SortNetworks()
73 // Network types will be preferred above everything else while sorting in SortNetworks()
77 if (a->type() != b->type()) { in SortNetworks()
78 return a->type() < b->type(); in SortNetworks()
81 IPAddress ip_a = a->GetBestIP(); in SortNetworks()
82 IPAddress ip_b = b->GetBestIP(); in SortNetworks()
85 // from RFC 3484-bis in SortNetworks()
[all …]
/external/autotest/client/cros/enterprise/
Denterprise_network_api.py2 # Use of this source code is governed by a BSD-style license that can be
21 This class contains all the Network API methods required for
22 Enterprise Network WiFi tests.
38 Extract the required Network params from list of Networks found.
40 Filter out the required network parameters such Network Name/SSID,
44 @param networks_found_list: Network information returned as a result
48 required network parameters.
55 for network in networks_found_list:
57 name=network['Name'],
58 guid=network['GUID'],
[all …]
/external/guava/guava/src/com/google/common/graph/
DImmutableNetwork.java8 * http://www.apache.org/licenses/LICENSE-2.0
30 * A {@link Network} whose elements and structural relationships will never change. Instances of
31 * this class may be obtained with {@link #copyOf(Network)}.
34 * href="https://github.com/google/guava/wiki/GraphsExplained#immutable-implementations">discussion
52 private ImmutableNetwork(Network<N, E> network) { in ImmutableNetwork() argument
54 NetworkBuilder.from(network), getNodeConnections(network), getEdgeToReferenceNode(network)); in ImmutableNetwork()
57 /** Returns an immutable copy of {@code network}. */
58 public static <N, E> ImmutableNetwork<N, E> copyOf(Network<N, E> network) { in copyOf() argument
59 return (network instanceof ImmutableNetwork) in copyOf()
60 ? (ImmutableNetwork<N, E>) network in copyOf()
[all …]
/external/guava/android/guava/src/com/google/common/graph/
DImmutableNetwork.java8 * http://www.apache.org/licenses/LICENSE-2.0
30 * A {@link Network} whose elements and structural relationships will never change. Instances of
31 * this class may be obtained with {@link #copyOf(Network)}.
34 * href="https://github.com/google/guava/wiki/GraphsExplained#immutable-implementations">discussion
52 private ImmutableNetwork(Network<N, E> network) { in ImmutableNetwork() argument
54 NetworkBuilder.from(network), getNodeConnections(network), getEdgeToReferenceNode(network)); in ImmutableNetwork()
57 /** Returns an immutable copy of {@code network}. */
58 public static <N, E> ImmutableNetwork<N, E> copyOf(Network<N, E> network) { in copyOf() argument
59 return (network instanceof ImmutableNetwork) in copyOf()
60 ? (ImmutableNetwork<N, E>) network in copyOf()
[all …]
/external/armnn/src/backends/backendsCommon/test/
DFullyConnectedEndToEndTestImpl.hpp3 // SPDX-License-Identifier: MIT
27 armnn::INetworkPtr network(armnn::INetwork::Create()); in CreateFullyConnectedNetworkNonConstWeights() local
29 armnn::IConnectableLayer* inputLayer = network->AddInputLayer(0, "Input"); in CreateFullyConnectedNetworkNonConstWeights()
30 armnn::IConnectableLayer* weightsInputLayer = network->AddInputLayer(1, "Weights_Input"); in CreateFullyConnectedNetworkNonConstWeights()
31 …armnn::IConnectableLayer* fullyConnectedLayer = network->AddFullyConnectedLayer(descriptor, "Fully… in CreateFullyConnectedNetworkNonConstWeights()
32 armnn::IConnectableLayer* outputLayer = network->AddOutputLayer(0, "Output"); in CreateFullyConnectedNetworkNonConstWeights()
38 return network; in CreateFullyConnectedNetworkNonConstWeights()
48 armnn::INetworkPtr network(armnn::INetwork::Create()); in CreateFullyConnectedNetworkNonConstWeightsConstBias() local
50 armnn::IConnectableLayer* inputLayer = network->AddInputLayer(0, "Input"); in CreateFullyConnectedNetworkNonConstWeightsConstBias()
51 armnn::IConnectableLayer* weightsInputLayer = network->AddInputLayer(1, "Weights_Input"); in CreateFullyConnectedNetworkNonConstWeightsConstBias()
[all …]
/external/webrtc/test/network/g3doc/
Dindex.md1 # Network Emulation Framework
3 <?% config.freshness.reviewed = '2021-03-01' %?>
9 This documentation explain the implementation details of Network Emulation
19 Network Emulation Framework provides an ability to emulate network behavior
21 configure network behavior, the user can choose different options:
28 routes used to connect them. All network related entities are created and
37 network routes from senders to receivers. This task queue behaviour is
41 The network operates on IP level and supports only UDP for now.
47 * `webrtc::NetworkBehaviorInterface` - defines how emulated network should
51 * `webrtc::EmulatedIpPacket` - represents a single packet that can be sent or
[all …]
/external/openthread/src/core/thread/
Dnetwork_data.hpp31 * This file includes definitions for managing Thread Network Data.
37 #include "openthread-core-config.h"
57 * @addtogroup core-netdata
59 * This module includes definitions for generating, processing, and managing Thread Network Data.
63 * @defgroup core-netdata-core Core
64 * @defgroup core-netdata-leader Leader
65 * @defgroup core-netdata-local Local
66 * @defgroup core-netdata-tlvs TLVs
76 * This namespace includes definitions for managing Thread Network Data.
86 * @addtogroup core-netdata-core
[all …]

12345678910>>...51