Home
last modified time | relevance | path

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

12

/development/tools/bugreport/src/com/android/bugreport/stacks/
DLockSnapshot.java33 public String address; field in LockSnapshot
43 this.address = that.address; in LockSnapshot()
55 return this.address == that.address in equals()
56 || (this.address != null && that.address != null in equals()
57 && this.address.equals(that.address)); in equals()
63 if (this.address != null) { in hashCode()
64 hash = hash * 31 + this.address.hashCode(); in hashCode()
70 if (this.address == that.address) { in compareTo()
72 } else if (this.address == null) { in compareTo()
74 } else if (that.address == null) { in compareTo()
[all …]
DThreadSnapshotParser.java229 lock.address = lockedRe.group(1); in parse()
238 lock.address = waitingOnRe.group(1); in parse()
247 lock.address = sleepingOnRe.group(1); in parse()
256 lock.address = waitingToLockHeldRe.group(1); in parse()
266 lock.address = waitingToLockRe.group(1); in parse()
327 + " / " + ls.address + " / " + ls.packageName in parse()
/development/tools/bugreport/src/com/android/bugreport/inspector/
DDeadlockDetector.java86 && (this.lock.address == that.lock.address in equals()
87 || (this.lock.address != null && that.lock.address != null in equals()
88 && this.lock.address.equals(that.lock.address))); in equals()
95 if (this.lock.address != null) { in hashCode()
96 hash = hash * 31 + this.lock.address.hashCode(); in hashCode()
106 if (this.lock.address == that.lock.address) { in compareTo()
108 } else if (this.lock.address == null) { in compareTo()
110 } else if (that.lock.address == null) { in compareTo()
113 return this.lock.address.compareTo(that.lock.address); in compareTo()
179 if (locks.containsKey(lr.lock.address)) { in detectDeadlocks()
[all …]
DInspector.java207 final LockSnapshot prev = thread.locks.get(lock.address); in combineLocks()
211 thread.locks.put(lock.address, lock.clone()); in combineLocks()
/development/tools/axl/
DudpServer.py19 data, address = svrsocket.recvfrom(8192)
23 print 'Sending packet', count, 'to', address[0]
24 svrsocket.sendto("%3.3s%s" % (count, buf), address)
DudpEater.py40 data, address = svrsocket.recvfrom(8192)
/development/samples/training/NsdChat/src/com/example/android/nsdchat/
DChatConnection.java60 public void connectToServer(InetAddress address, int port) { in connectToServer() argument
61 mChatClient = new ChatClient(address, port); in connectToServer()
154 InetAddress address = mSocket.getInetAddress(); in run() local
155 connectToServer(address, port); in run()
176 public ChatClient(InetAddress address, int port) { in ChatClient() argument
179 this.mAddress = address; in ChatClient()
/development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
DBluetoothLeService.java212 public boolean connect(final String address) { in connect() argument
213 if (mBluetoothAdapter == null || address == null) { in connect()
219 if (mBluetoothDeviceAddress != null && address.equals(mBluetoothDeviceAddress) in connect()
230 final BluetoothDevice device = mBluetoothAdapter.getRemoteDevice(address); in connect()
239 mBluetoothDeviceAddress = address; in connect()
/development/samples/training/location-aware/src/com/example/android/location/
DLocationActivity.java89 mAddress = (TextView) findViewById(R.id.address); in onCreate()
361 Address address = addresses.get(0); in doInBackground() local
364 address.getMaxAddressLineIndex() > 0 ? address.getAddressLine(0) : "", in doInBackground()
365 address.getLocality(), in doInBackground()
366 address.getCountryName()); in doInBackground()
/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
DPduComposer.java455 private EncodedStringValue appendAddressType(EncodedStringValue address) { in appendAddressType() argument
459 int addressType = checkAddressType(address.getString()); in appendAddressType()
460 temp = EncodedStringValue.copy(address); in appendAddressType()
1146 protected static int checkAddressType(String address) { in checkAddressType() argument
1165 if (null == address) { in checkAddressType()
1169 if (address.matches(REGEXP_IPV4_ADDRESS_TYPE)) { in checkAddressType()
1172 }else if (address.matches(REGEXP_PHONE_NUMBER_ADDRESS_TYPE)) { in checkAddressType()
1175 } else if (address.matches(REGEXP_EMAIL_ADDRESS_TYPE)) { in checkAddressType()
1178 } else if (address.matches(REGEXP_IPV6_ADDRESS_TYPE)) { in checkAddressType()
/development/samples/browseable/BluetoothAdvertisements/src/com.example.android.bluetoothadvertisements/
DScanResultAdapter.java92 private int getPosition(String address) { in getPosition() argument
95 if (mArrayList.get(i).getDevice().getAddress().equals(address)) { in getPosition()
/development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
DDeviceListActivity.java163 String address = info.substring(info.length() - 17);
167 intent.putExtra(EXTRA_DEVICE_ADDRESS, address);
DBluetoothChat.java321 String address = data.getExtras() in connectDevice() local
324 BluetoothDevice device = mBluetoothAdapter.getRemoteDevice(address); in connectDevice()
/development/samples/browseable/BluetoothChat/src/com.example.android.bluetoothchat/
DDeviceListActivity.java175 String address = info.substring(info.length() - 17);
179 intent.putExtra(EXTRA_DEVICE_ADDRESS, address);
DBluetoothChatFragment.java365 String address = data.getExtras() in connectDevice() local
368 BluetoothDevice device = mBluetoothAdapter.getRemoteDevice(address); in connectDevice()
/development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
DContactDetailFragment.java436 final String address) { in buildAddressLayout() argument
464 addressTextView.setText(address); in buildAddressLayout()
473 new Intent(Intent.ACTION_VIEW, constructGeoUri(address)); in buildAddressLayout()
/development/host/windows/usb/winusb/
DSOURCES25 # Use the same load address as previous versions just to be conservative. This
/development/host/windows/usb/api/
DSOURCES25 # Use the same load address as previous versions just to be conservative. This
/development/samples/ToyVpn/src/com/example/android/toyvpn/
DToyVpnClient.java50 final TextView serverAddress = findViewById(R.id.address); in onCreate()
/development/samples/training/testingfun/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/development/samples/devbytes/telephony/SmsSampleProject/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/development/tools/repo_diff/
DREADME.md52 the "Modified Projects" pie chart. To address this select the pie chart,
/development/tools/checkcolor/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/development/tools/logblame/
Dsample.txt511 Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
517 Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
1937 Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
1964 Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
1970 Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
1973 Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
1979 Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
1985 Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
1994 Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
2000 Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
[all …]
/development/tools/bugreport/src/com/android/bugreport/html/
DRenderer.java362 lockHdf.setValue("address", lock.address); in makeStackFrameSnapshotHdf()

12