Home | History | Annotate | Download | only in display

Lines Matching refs:deviceAddress

303     public void connectWifiDisplay(String deviceAddress) {
304 if (deviceAddress == null) {
305 throw new IllegalArgumentException("deviceAddress must not be null");
309 mDm.connectWifiDisplay(deviceAddress);
311 Log.e(TAG, "Failed to connect to Wifi display " + deviceAddress + ".", ex);
339 public void renameWifiDisplay(String deviceAddress, String alias) {
340 if (deviceAddress == null) {
341 throw new IllegalArgumentException("deviceAddress must not be null");
345 mDm.renameWifiDisplay(deviceAddress, alias);
347 Log.e(TAG, "Failed to rename Wifi display " + deviceAddress
352 public void forgetWifiDisplay(String deviceAddress) {
353 if (deviceAddress == null) {
354 throw new IllegalArgumentException("deviceAddress must not be null");
358 mDm.forgetWifiDisplay(deviceAddress);