Home
last modified time | relevance | path

Searched refs:address_type (Results 1 – 11 of 11) sorted by relevance

/external/autotest/client/common_lib/cros/bluetooth/
Dbluetooth_socket.py907 def start_discovery(self, index, address_type): argument
919 msg_data = struct.pack('<B', address_type)
928 (address_type,) = struct.unpack_from('<B', buffer(data))
929 return address_type
932 def stop_discovery(self, index, address_type): argument
946 msg_data = struct.pack('<B', address_type)
955 (address_type,) = struct.unpack_from('<B', buffer(data))
956 return address_type
989 (address_type,
998 (address, address_type, rssi,
[all …]
/external/autotest/client/cros/bluetooth/
Dbluetooth_tester_xmlrpc_server.py303 address_type = 0
305 address_type |= 0x1
307 address_type |= 0x2
309 address_type |= 0x4
311 set_type = self._control.start_discovery(self.index, address_type)
312 if set_type != address_type:
314 '%x != %x', set_type, address_type)
319 (address, address_type, rssi, flags,
321 for address, address_type, rssi, flags, eirdata in devices
Dbluetooth_device_xmlrpc_server.py609 def add_device(self, address, address_type, action): argument
621 0, address, address_type, action))
624 def remove_device(self, address, address_type): argument
635 0, address, address_type))
/external/tcpdump/
Dprint-lspping.c433 uint8_t address_type; member
439 uint8_t address_type; member
447 uint8_t address_type; member
455 uint8_t address_type; member
463 uint8_t address_type; member
902 tlv_ptr.lspping_tlv_downstream_map->address_type), in lspping_print()
903 tlv_ptr.lspping_tlv_downstream_map->address_type)); in lspping_print()
905 switch(tlv_ptr.lspping_tlv_downstream_map->address_type) { in lspping_print()
/external/autotest/client/common_lib/cros/network/
Dinterface.py149 address_type, address_value = address_parts[:2]
150 if address_type in self.ADDRESS_TYPES:
151 if address_type not in addresses:
152 addresses[address_type] = []
153 addresses[address_type].append(address_value)
/external/autotest/client/cros/cellular/
Dcellular.py161 def __init__(self, address, address_type='INAT', address_plan='ISDN'): argument
176 self.address_type = address_type
/external/autotest/server/cros/bluetooth/
Dbluetooth_device.py303 def add_device(self, address, address_type, action): argument
314 return json.loads(self._proxy.add_device(address, address_type, action))
317 def remove_device(self, address, address_type): argument
327 return json.loads(self._proxy.remove_device(address, address_type))
Dbluetooth_tester.py118 (address, address_type, rssi, flags,
120 for address, address_type, rssi, flags, eirdata
/external/python/cpython2/Lib/multiprocessing/
Dconnection.py98 def address_type(address): function
125 family = family or (address and address_type(address)) \
165 family = family or address_type(address)
301 family = getattr(socket, address_type(address))
/external/python/cpython3/Lib/multiprocessing/
Dconnection.py95 def address_type(address): function
430 family = family or (address and address_type(address)) \
482 family = family or address_type(address)
611 family = address_type(address)
/external/autotest/server/site_tests/bluetooth_Sanity_Discoverable/
Dbluetooth_Sanity_Discoverable.py33 for address, address_type, rssi, flags, eirdata in devices: