Home
last modified time | relevance | path

Searched refs:address (Results 1 – 25 of 46) sorted by relevance

12

/tools/test/connectivity/acts/tests/google/bt/pts/instructions/
DSM_PTS_INSTRUCTIONS118 Note: Do not use a static random address
119 Note: Start advertiment and enter in random address to PTS
124 Note: Do not use a static random address
125 Note: Start advertiment and enter in random address to PTS
130 Note: Do not use a static random address
131 Note: Start advertiment and enter in random address to PTS
136 Note: Do not use a static random address
137 Note: Start advertiment and enter in random address to PTS
141 Note: Do not use a static random address
142 Note: Start advertiment and enter in random address to PTS before starting test
[all …]
DGAP_PTS_INSTRUCTIONS19 This sets the random address to a static address.
189 Note: Run the test a first time and it will fail. Change the address to
190 be the peer address in the PTS logs that start with:
207 Note: Run the test a first time and it will fail. Change the address to
208 be the peer address in the PTS logs that start with:
233 Note: Do not use static LE address
250 Note: Run the test a first time and it will fail. Change the address to
251 be the peer address in the PTS logs that start with:
267 Note: Run the test a first time and it will fail. Change the address to
268 be the peer address in the PTS logs that start with:
[all …]
DGATT_PTS_INSTRUCTIONS804 Note: Do not used a fixed LE address for SMP Encryption Calculations.
844 Note: Use non-static address
898 Note: Use non-static address
954 Note: Use non-static address
991 Note: Use non-static address
1179 Note: Dynamic address needed
1290 Note: Dynamic address needed
1362 Note: Dynamic address needed
/tools/test/connectivity/acts/framework/acts/controllers/utils_lib/commands/
Dip.py64 address = ipaddress.IPv4Interface(d['address'])
66 yield (address, bcast)
71 address = ipaddress.IPv4Interface(d['address'])
72 yield (address, None)
74 def add_ipv4_address(self, net_interface, address, broadcast=None): argument
87 (address, broadcast, net_interface))
90 (address, net_interface))
92 def remove_ipv4_address(self, net_interface, address, ignore_status=False): argument
107 'ip addr del %s dev %s' % (address, net_interface),
110 def set_ipv4_address(self, net_interface, address, broadcast=None): argument
[all …]
Droute.py42 def add_route(self, net_interface, address): argument
62 (address, net_interface))
118 address = ipaddress.IPv4Address(d['address'])
120 address = ipaddress.IPv4Network(d['address'])
122 pair = (address, d['net_interface'])
137 def is_route(self, address, net_interface=None): argument
150 if route == address:
155 def remove_route(self, address, net_interface=None): argument
171 (address, net_interface))
173 self._runner.run('ip route del %s' % address)
/tools/test/connectivity/acts/framework/acts/test_utils/coex/
Dbluez_test_utils.py275 address = props.Get(ADAPTER_INTERFACE, "Address")
276 return address
424 def play_media(self, address): argument
434 a2dp = self.media_control_iface(address)
437 play_pause = self.get_a2dp_interface(address)
445 def pause_media(self, address): argument
455 a2dp = self.get_a2dp_interface(address)
464 def remove_bluetooth_device(self, address): argument
476 dev = self.find_device_in_objects(managed_objects, address)
484 def stop_media(self, address): argument
[all …]
/tools/test/connectivity/acts/framework/acts/controllers/
Dfuchsia_device.py155 self.address = "http://{}:{}".format(self.ip, self.port)
156 self.init_address = self.address + "/init"
157 self.cleanup_address = self.address + "/cleanup"
158 self.print_address = self.address + "/print_clients"
165 self.ble_lib = FuchsiaBleLib(self.address, self.test_counter,
168 self.bta_lib = FuchsiaBtaLib(self.address, self.test_counter,
171 self.gattc_lib = FuchsiaGattcLib(self.address, self.test_counter,
174 self.gatts_lib = FuchsiaGattsLib(self.address, self.test_counter,
178 self.netstack_lib = FuchsiaNetstackLib(self.address,
182 self.wlan_lib = FuchsiaWlanLib(self.address, self.test_counter,
Dchameleon_controller.py73 info = {"address": chameleon.address, "port": chameleon.port}
106 self.address = "http://{}:{}".format(ip, self.port)
109 self.address, allow_none=True, verbose=False)
113 self.address))
/tools/tradefederation/core/src/com/android/tradefed/util/
DIEmail.java75 public void addTo(String address) { in addTo() argument
79 mToAddrs.add(address); in addTo()
81 public void addCc(String address) { in addCc() argument
85 mCcAddrs.add(address); in addCc()
87 public void addBcc(String address) { in addBcc() argument
91 mBccAddrs.add(address); in addBcc()
/tools/test/connectivity/acts/tests/google/ble/concurrency/
DConcurrentGattConnectTest.py195 address = address_tuple[1]
199 self.pri_dut, address, autoconnect)
200 self.log.info("Successfully connected to {}".format(address))
203 "Failed to establish connection to {}".format(address))
247 ad, address = address_tuple
255 self.pri_dut, address, autoconnect=False)
256 self.log.info("Successfully connected to {}".format(address))
260 "Failed to establish connection to {}".format(address))
/tools/dexter/slicer/
Dcode_ir.cc84 dex::u4 address = dex::ReadULeb128(&ptr); in DissasembleTryBlocks() local
85 handler.label = GetLabel(address); in DissasembleTryBlocks()
96 dex::u4 address = dex::ReadULeb128(&ptr); in DissasembleTryBlocks() local
97 try_block_end->catch_all = GetLabel(address); in DissasembleTryBlocks()
115 dex::u4 address = 0; in DissasembleDebugInfo() local
153 address += dex::ReadULeb128(&ptr); in DissasembleDebugInfo()
225 address += (adjusted_opcode / dex::DBG_LINE_RANGE); in DissasembleDebugInfo()
233 annotation->offset = address; in DissasembleDebugInfo()
/tools/test/connectivity/acts/tests/google/ble/bt5/
DBt5ScanTest.py410 address = evt['data']['Result']['deviceInfo']['address']
412 '00:00:00:00:00:00' == address,
414 str(address))
474 address = evt['data']['address']
475 self.log.info("Advertiser address is: " + str(address))
/tools/test/connectivity/acts/framework/acts/controllers/relay_lib/
Dsain_smart_8_channel_usb_relay_board.py80 bb.port &= ~(self.address[relay_position])
82 bb.port |= self.address[relay_position]
Drdl_relay_board.py32 bb.port |= self.address[relay_position]
34 bb.port &= ~(self.address[relay_position])
/tools/test/connectivity/acts/framework/acts/controllers/fuchsia_lib/
Dbase_lib.py31 self.address = addr
60 return requests.get(url=self.address, data=test_data).json()
/tools/test/connectivity/acts/framework/acts/controllers/ap_lib/
Ddhcp_config.py108 def __init__(self, identifier, address, lease_time=None): argument
110 self.ipv4_address = address
Ddhcp_server.py187 address = subnet.network.network_address
194 lines.append('subnet %s netmask %s {' % (address, mask))
/tools/repohooks/tools/
Dcheckpatch.pl1066 my $address = "";
1071 $address = $2;
1074 $address = $1;
1077 $address = $1;
1079 $formatted_email =~ s/\Q$address\E.*$//;
1089 if ($name ne "" && $address !~ /^<[^>]+>$/) {
1091 $address = "";
1098 $address = trim($address);
1099 $address =~ s/^\<|\>$//g;
1106 return ($name, $address, $comment);
[all …]
/tools/apkzlib/src/test/resources/testData/packaging/text-files/
Drfc2460.txt81 IPv6 increases the IP address size from 32 bits to 128 bits, to
86 of address called an "anycast address" is defined, used to send
159 address - an IPv6-layer identifier for an interface or a set of
245 Source Address 128-bit address of the originator of the packet.
248 Destination Address 128-bit address of the intended recipient of the
489 packet's Destination Address was a multicast address, send an
494 Address was not a multicast address, send an ICMP Parameter
867 compute i, the index of the next address to be visited in
868 the address vector, by subtracting Segments Left from n
1025 one for each active (source address, destination address)
[all …]
/tools/test/connectivity/acts/framework/acts/test_utils/bt/
Dble_lib.py104 address = evt['data']['address']
105 self.log.info("Advertiser address is: {}".format(str(address)))
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/
Dlogserial.py50 for port_name, description, address in ports:
51 result[port_name] = (description, address)
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DNativeDeviceTest.java2168 String address = "58:a2:b5:7d:49:24"; in testGetMacAddress() local
2174 receiver.addOutput(address.getBytes(), 0, address.length()); in testGetMacAddress()
2180 assertEquals(address, mTestDevice.getMacAddress()); in testGetMacAddress()
2213 String address = "58:a2:b5:7d:49:24"; in testGetMacAddress_stubDevice() local
2219 receiver.addOutput(address.getBytes(), 0, address.length()); in testGetMacAddress_stubDevice()
/tools/test/connectivity/acts/framework/acts/controllers/fuchsia_lib/bt/
Dbta_lib.py34 self.address = addr
Dgatts_lib.py22 self.address = addr
/tools/test/connectivity/acts/framework/acts/controllers/fuchsia_lib/netstack/
Dnetstack_lib.py21 self.address = addr

12