/packages/apps/Settings/src/com/android/settings/widget/ |
D | MatchParentShrinkingLinearLayout.java | 337 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in drawDividersVertical() local 338 final int top = child.getTop() - lp.topMargin - mDividerHeight; in drawDividersVertical() 350 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in drawDividersVertical() local 351 bottom = child.getBottom() + lp.bottomMargin; in drawDividersVertical() 365 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in drawDividersHorizontal() local 368 position = child.getRight() + lp.rightMargin; in drawDividersHorizontal() 370 position = child.getLeft() - lp.leftMargin - mDividerWidth; in drawDividersHorizontal() 387 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in drawDividersHorizontal() local 389 position = child.getLeft() - lp.leftMargin - mDividerWidth; in drawDividersHorizontal() 391 position = child.getRight() + lp.rightMargin; in drawDividersHorizontal() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/widget/ |
D | MatchParentShrinkingLinearLayout.java | 337 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in drawDividersVertical() local 338 final int top = child.getTop() - lp.topMargin - mDividerHeight; in drawDividersVertical() 350 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in drawDividersVertical() local 351 bottom = child.getBottom() + lp.bottomMargin; in drawDividersVertical() 365 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in drawDividersHorizontal() local 368 position = child.getRight() + lp.rightMargin; in drawDividersHorizontal() 370 position = child.getLeft() - lp.leftMargin - mDividerWidth; in drawDividersHorizontal() 387 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in drawDividersHorizontal() local 389 position = child.getLeft() - lp.leftMargin - mDividerWidth; in drawDividersHorizontal() 391 position = child.getRight() + lp.rightMargin; in drawDividersHorizontal() [all …]
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | ShortcutAndWidgetContainer.java | 67 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); in getChildAt() local 69 if ((lp.cellX <= x) && (x < lp.cellX + lp.cellHSpan) && in getChildAt() 70 (lp.cellY <= y) && (y < lp.cellY + lp.cellVSpan)) { in getChildAt() 94 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); in setupLp() local 97 lp.setup(mCellWidth, mCellHeight, invertLayoutHorizontally(), mCountX, in setupLp() 100 lp.setup(mCellWidth, mCellHeight, invertLayoutHorizontally(), mCountX); in setupLp() 115 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); in measureChild() local 119 lp.setup(mCellWidth, mCellHeight, invertLayoutHorizontally(), mCountX, in measureChild() 123 lp.setup(mCellWidth, mCellHeight, invertLayoutHorizontally(), mCountX); in measureChild() 126 int cellPaddingY = (int) Math.max(0, ((lp.height - cHeight) / 2f)); in measureChild() [all …]
|
D | CellLayout.java | 577 final LayoutParams lp = params; in addViewToCellLayout() local 590 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) { in addViewToCellLayout() 593 if (lp.cellHSpan < 0) lp.cellHSpan = mCountX; in addViewToCellLayout() 594 if (lp.cellVSpan < 0) lp.cellVSpan = mCountY; in addViewToCellLayout() 600 mShortcutsAndWidgets.addView(child, index, lp); in addViewToCellLayout() 874 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in animateChildToPosition() local 878 if (mReorderAnimators.containsKey(lp)) { in animateChildToPosition() 879 mReorderAnimators.get(lp).cancel(); in animateChildToPosition() 880 mReorderAnimators.remove(lp); in animateChildToPosition() 883 final int oldX = lp.x; in animateChildToPosition() [all …]
|
D | AppWidgetResizeFrame.java | 236 DragLayer.LayoutParams lp = (DragLayer.LayoutParams) getLayoutParams(); in visualizeResizeForDelta() local 239 lp.x = mTempRange1.start; in visualizeResizeForDelta() 240 lp.width = mTempRange1.size(); in visualizeResizeForDelta() 244 lp.y = mTempRange1.start; in visualizeResizeForDelta() 245 lp.height = mTempRange1.size(); in visualizeResizeForDelta() 253 lp.width = sTmpRect.width() + sTmpRect.left - lp.x; in visualizeResizeForDelta() 256 lp.height = sTmpRect.height() + sTmpRect.top - lp.y; in visualizeResizeForDelta() 259 lp.x = sTmpRect.left; in visualizeResizeForDelta() 262 lp.y = sTmpRect.top; in visualizeResizeForDelta() 287 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) mWidgetView.getLayoutParams(); in resizeWidgetIfNeeded() local [all …]
|
D | WorkspaceLayoutManager.java | 102 CellLayout.LayoutParams lp; in addInScreen() local 104 lp = new CellLayout.LayoutParams(x, y, spanX, spanY); in addInScreen() 106 lp = (CellLayout.LayoutParams) genericLp; in addInScreen() 107 lp.cellX = x; in addInScreen() 108 lp.cellY = y; in addInScreen() 109 lp.cellHSpan = spanX; in addInScreen() 110 lp.cellVSpan = spanY; in addInScreen() 114 lp.isLockedToGrid = false; in addInScreen() 122 if (!layout.addViewToCellLayout(child, -1, childId, lp, markCellsAsOccupied)) { in addInScreen() 126 … Log.e(TAG, "Failed to add to item at (" + lp.cellX + "," + lp.cellY + ") to CellLayout"); in addInScreen()
|
D | DropTargetBar.java | 82 FrameLayout.LayoutParams lp = (FrameLayout.LayoutParams) getLayoutParams(); in setInsets() local 86 lp.leftMargin = insets.left; in setInsets() 87 lp.topMargin = insets.top; in setInsets() 88 lp.bottomMargin = insets.bottom; in setInsets() 89 lp.rightMargin = insets.right; in setInsets() 93 lp.width = grid.dropTargetBarSizePx; in setInsets() 94 lp.height = grid.availableHeightPx - 2 * grid.edgeMarginPx; in setInsets() 95 lp.gravity = grid.isSeascape() ? Gravity.RIGHT : Gravity.LEFT; in setInsets() 109 lp.width = grid.availableWidthPx - 2 * gap; in setInsets() 111 lp.topMargin += grid.edgeMarginPx; in setInsets() [all …]
|
D | Hotseat.java | 81 FrameLayout.LayoutParams lp = (FrameLayout.LayoutParams) getLayoutParams(); in setInsets() local 86 lp.height = ViewGroup.LayoutParams.MATCH_PARENT; in setInsets() 88 lp.gravity = Gravity.LEFT; in setInsets() 89 lp.width = grid.hotseatBarSizePx + insets.left; in setInsets() 91 lp.gravity = Gravity.RIGHT; in setInsets() 92 lp.width = grid.hotseatBarSizePx + insets.right; in setInsets() 95 lp.gravity = Gravity.BOTTOM; in setInsets() 96 lp.width = ViewGroup.LayoutParams.MATCH_PARENT; in setInsets() 97 lp.height = grid.hotseatBarSizePx + insets.bottom; in setInsets() 102 setLayoutParams(lp); in setInsets()
|
D | InsettableFrameLayout.java | 26 final LayoutParams lp = (LayoutParams) child.getLayoutParams(); in setFrameLayoutChildInsets() local 30 } else if (!lp.ignoreInsets) { in setFrameLayoutChildInsets() 31 lp.topMargin += (newInsets.top - oldInsets.top); in setFrameLayoutChildInsets() 32 lp.leftMargin += (newInsets.left - oldInsets.left); in setFrameLayoutChildInsets() 33 lp.rightMargin += (newInsets.right - oldInsets.right); in setFrameLayoutChildInsets() 34 lp.bottomMargin += (newInsets.bottom - oldInsets.bottom); in setFrameLayoutChildInsets() 36 child.setLayoutParams(lp); in setFrameLayoutChildInsets() 86 public LayoutParams(ViewGroup.LayoutParams lp) { in LayoutParams() argument 87 super(lp); in LayoutParams()
|
D | LauncherAnimUtils.java | 73 public Integer get(LayoutParams lp) { 74 return lp.width; 78 public void set(LayoutParams lp, Integer width) { 79 lp.width = width; 86 public Integer get(LayoutParams lp) { 87 return lp.height; 91 public void set(LayoutParams lp, Integer height) { 92 lp.height = height;
|
/packages/modules/NetworkStack/apishim/30/com/android/networkstack/apishim/api30/ |
D | NetworkInformationShimImpl.java | 62 public Uri getCaptivePortalApiUrl(@Nullable LinkProperties lp) { in getCaptivePortalApiUrl() argument 63 if (lp == null) return null; in getCaptivePortalApiUrl() 64 return lp.getCaptivePortalApiUrl(); in getCaptivePortalApiUrl() 68 public void setCaptivePortalApiUrl(@NonNull LinkProperties lp, @Nullable Uri url) { in setCaptivePortalApiUrl() argument 69 lp.setCaptivePortalApiUrl(url); in setCaptivePortalApiUrl() 74 public CaptivePortalDataShim getCaptivePortalData(@Nullable LinkProperties lp) { in getCaptivePortalData() argument 75 if (lp == null || lp.getCaptivePortalData() == null) return null; in getCaptivePortalData() 76 return new CaptivePortalDataShimImpl(lp.getCaptivePortalData()); in getCaptivePortalData() 81 public IpPrefix getNat64Prefix(@NonNull LinkProperties lp) { in getNat64Prefix() argument 82 return lp.getNat64Prefix(); in getNat64Prefix() [all …]
|
/packages/apps/Launcher3/src/com/android/launcher3/views/ |
D | FloatingIconView.java | 216 LayoutParams lp = (LayoutParams) getLayoutParams(); in update() local 219 - (mLauncher.getDeviceProfile().widthPx - lp.getMarginStart() - lp.width) in update() 220 : rect.left - lp.getMarginStart(); in update() 221 float dY = rect.top - lp.topMargin; in update() 225 float minSize = Math.min(lp.width, lp.height); in update() 318 final LayoutParams lp = new LayoutParams( in matchPositionOf() local 321 updatePosition(rotation, positionOut, lp); in matchPositionOf() 322 setLayoutParams(lp); in matchPositionOf() 325 private void updatePosition(float rotation, RectF position, LayoutParams lp) { in updatePosition() argument 328 lp.ignoreInsets = true; in updatePosition() [all …]
|
D | BaseDragLayer.java | 71 public Integer get(LayoutParams lp) { 72 return lp.x; 76 public void set(LayoutParams lp, Integer x) { 77 lp.x = x; 84 public Integer get(LayoutParams lp) { 85 return lp.y; 89 public void set(LayoutParams lp, Integer y) { 90 lp.y = y; 508 public LayoutParams(ViewGroup.LayoutParams lp) { in LayoutParams() argument 509 super(lp); in LayoutParams() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/ |
D | EmojiLayoutParams.java | 64 final LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) vp.getLayoutParams(); in setPagerProperties() local 65 lp.height = mEmojiKeyboardHeight; in setPagerProperties() 66 lp.bottomMargin = mEmojiPagerBottomMargin; in setPagerProperties() 67 vp.setLayoutParams(lp); in setPagerProperties() 71 final LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) v.getLayoutParams(); in setCategoryPageIdViewProperties() local 72 lp.height = mEmojiCategoryPageIdViewHeight; in setCategoryPageIdViewProperties() 73 v.setLayoutParams(lp); in setCategoryPageIdViewProperties() 81 final LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) ll.getLayoutParams(); in setActionBarProperties() local 82 lp.height = getActionBarHeight(); in setActionBarProperties() 83 ll.setLayoutParams(lp); in setActionBarProperties() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/ |
D | EditorColorBorderTabletUI.java | 93 LinearLayout lp = (LinearLayout) inflater.inflate( in EditorColorBorderTabletUI() local 98 LinearLayout buttonContainer = (LinearLayout) lp.findViewById(R.id.listStyles); in EditorColorBorderTabletUI() 100 mCBCornerSizeSeekBar = (SeekBar) lp.findViewById(R.id.colorBorderCornerSizeSeekBar); in EditorColorBorderTabletUI() 101 mCBCornerSizeValue = (TextView) lp.findViewById(R.id.colorBorderCornerValue); in EditorColorBorderTabletUI() 102 mCBSizeSeekBar = (SeekBar) lp.findViewById(R.id.colorBorderSizeSeekBar); in EditorColorBorderTabletUI() 104 mCBSizeValue = (TextView) lp.findViewById(R.id.colorBorderSizeValue); in EditorColorBorderTabletUI() 105 setupCBSizeSeekBar(lp); in EditorColorBorderTabletUI() 106 setupCBCornerSizeSeekBar(lp); in EditorColorBorderTabletUI() 107 setupColor(lp, res); in EditorColorBorderTabletUI() 110 private void setupCBSizeSeekBar(LinearLayout lp) { in setupCBSizeSeekBar() argument [all …]
|
D | EditorDrawTabletUI.java | 89 public EditorDrawTabletUI(EditorDraw editorDraw, Context context, LinearLayout lp) { in EditorDrawTabletUI() argument 95 LinearLayout buttonContainer = (LinearLayout) lp.findViewById(R.id.listStyles); in EditorDrawTabletUI() 97 mdrawSizeSeekBar = (SeekBar) lp.findViewById(R.id.drawSizeSeekBar); in EditorDrawTabletUI() 98 mDrawSizeValue = (TextView) lp.findViewById(R.id.drawSizeValue); in EditorDrawTabletUI() 100 Button clearButton = (Button) lp.findViewById(R.id.clearButton); in EditorDrawTabletUI() 157 final LinearLayout ctls = (LinearLayout) lp.findViewById(R.id.controls); in EditorDrawTabletUI() 158 final LinearLayout pick = (LinearLayout) lp.findViewById(R.id.colorPicker); in EditorDrawTabletUI() 159 Button b = (Button) lp.findViewById(R.id.draw_color_popupbutton); in EditorDrawTabletUI() 175 mColorButton[i] = (Button) lp.findViewById(ids[i]); in EditorDrawTabletUI() 210 mHueView = (ColorHueView) lp.findViewById(R.id.ColorHueView); in EditorDrawTabletUI() [all …]
|
/packages/modules/NetworkStack/tests/unit/src/android/net/ip/ |
D | IpClientTest.java | 258 final LinkProperties lp = makeIPv6ProvisionedLinkProperties(); in doProvisioningWithDefaultConfiguration() local 259 lp.getRoutes().forEach(mObserver::onRouteUpdated); in doProvisioningWithDefaultConfiguration() 260 lp.getLinkAddresses().forEach(la -> mObserver.onInterfaceAddressUpdated(la, TEST_IFNAME)); in doProvisioningWithDefaultConfiguration() 262 lp.getDnsServers().stream().map(InetAddress::getHostAddress) in doProvisioningWithDefaultConfiguration() 269 verify(mCb).onProvisioningSuccess(lp); in doProvisioningWithDefaultConfiguration() 273 private void addIPv4Provisioning(LinkProperties lp) { in addIPv4Provisioning() argument 280 lp.addLinkAddress(la); in addIPv4Provisioning() 281 lp.addRoute(defaultRoute); in addIPv4Provisioning() 289 private void doIPv6ProvisioningLoss(LinkProperties lp) { in doIPv6ProvisioningLoss() argument 293 lp.removeRoute(defaultRoute); in doIPv6ProvisioningLoss() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/wfd/ |
D | WifiDisplaySettings.java | 405 ListPreference lp = new ListPreference(getPrefContext()); in buildCertificationMenu() local 406 lp.setOnPreferenceChangeListener(new OnPreferenceChangeListener() { in buildCertificationMenu() 427 lp.setKey("wps"); in buildCertificationMenu() 428 lp.setTitle(R.string.wifi_display_wps_config); in buildCertificationMenu() 429 lp.setEntries(wpsEntries); in buildCertificationMenu() 430 lp.setEntryValues(wpsValues); in buildCertificationMenu() 431 lp.setValue("" + mWpsConfig); in buildCertificationMenu() 432 lp.setSummary("%1$s"); in buildCertificationMenu() 433 mCertCategory.addPreference(lp); in buildCertificationMenu() 436 lp = new ListPreference(getPrefContext()); in buildCertificationMenu() [all …]
|
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/ |
D | DragLayer.java | 258 CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams(); in animateViewIntoPosition() local 266 coord[0] = lp.x + (child.getMeasuredWidth() * (1 - childScale) / 2); in animateViewIntoPosition() 267 coord[1] = lp.y + (child.getMeasuredHeight() * (1 - childScale) / 2); in animateViewIntoPosition() 625 final FrameLayout.LayoutParams lp = (FrameLayout.LayoutParams) child.getLayoutParams(); in onLayout() local 627 if (lp instanceof LayoutParams) { in onLayout() 628 final LayoutParams dlp = (LayoutParams) lp; in onLayout() 641 int gravity = lp.gravity; in onLayout() 656 lp.topMargin - lp.bottomMargin; in onLayout() 659 childTop = width / 2 + lp.rightMargin - height / 2; in onLayout() 663 childTop = parentHeight - lp.leftMargin - width / 2 - height / 2; in onLayout() [all …]
|
/packages/apps/Settings/src/com/android/settings/wfd/ |
D | WifiDisplaySettings.java | 406 ListPreference lp = new ListPreference(getPrefContext()); in buildCertificationMenu() local 407 lp.setOnPreferenceChangeListener(new OnPreferenceChangeListener() { in buildCertificationMenu() 428 lp.setKey("wps"); in buildCertificationMenu() 429 lp.setTitle(R.string.wifi_display_wps_config); in buildCertificationMenu() 430 lp.setEntries(wpsEntries); in buildCertificationMenu() 431 lp.setEntryValues(wpsValues); in buildCertificationMenu() 432 lp.setValue("" + mWpsConfig); in buildCertificationMenu() 433 lp.setSummary("%1$s"); in buildCertificationMenu() 434 mCertCategory.addPreference(lp); in buildCertificationMenu() 437 lp = new ListPreference(getPrefContext()); in buildCertificationMenu() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
D | ViewLayoutUtils.java | 49 final ViewGroup.LayoutParams lp = view.getLayoutParams(); in placeViewAt() local 50 if (lp instanceof MarginLayoutParams) { in placeViewAt() 51 final MarginLayoutParams marginLayoutParams = (MarginLayoutParams)lp; in placeViewAt() 75 final ViewGroup.LayoutParams lp = view.getLayoutParams(); in updateLayoutGravityOf() local 76 if (lp instanceof LinearLayout.LayoutParams) { in updateLayoutGravityOf() 77 final LinearLayout.LayoutParams params = (LinearLayout.LayoutParams)lp; in updateLayoutGravityOf() 82 } else if (lp instanceof FrameLayout.LayoutParams) { in updateLayoutGravityOf() 83 final FrameLayout.LayoutParams params = (FrameLayout.LayoutParams)lp; in updateLayoutGravityOf() 90 + lp.getClass().getName()); in updateLayoutGravityOf()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/network/ |
D | PrivateDnsPreferenceControllerTest.java | 144 private void updateLinkProperties(LinkProperties lp) { in updateLinkProperties() argument 162 nc.onLinkPropertiesChanged(mNetwork, lp); in updateLinkProperties() 212 LinkProperties lp = mock(LinkProperties.class); in getSummary_PrivateDnsModeOpportunistic() local 213 when(lp.getValidatedPrivateDnsServers()).thenReturn(NON_EMPTY_ADDRESS_LIST); in getSummary_PrivateDnsModeOpportunistic() 214 updateLinkProperties(lp); in getSummary_PrivateDnsModeOpportunistic() 219 lp = mock(LinkProperties.class); in getSummary_PrivateDnsModeOpportunistic() 220 when(lp.getValidatedPrivateDnsServers()).thenReturn(Collections.emptyList()); in getSummary_PrivateDnsModeOpportunistic() 221 updateLinkProperties(lp); in getSummary_PrivateDnsModeOpportunistic() 236 LinkProperties lp = mock(LinkProperties.class); in getSummary_PrivateDnsModeProviderHostname() local 237 when(lp.getValidatedPrivateDnsServers()).thenReturn(NON_EMPTY_ADDRESS_LIST); in getSummary_PrivateDnsModeProviderHostname() [all …]
|
/packages/modules/NetworkStack/apishim/29/com/android/networkstack/apishim/api29/ |
D | NetworkInformationShimImpl.java | 62 public Uri getCaptivePortalApiUrl(@Nullable LinkProperties lp) { in getCaptivePortalApiUrl() argument 68 public void setCaptivePortalApiUrl(@NonNull LinkProperties lp, @Nullable Uri url) { in setCaptivePortalApiUrl() argument 74 public CaptivePortalDataShim getCaptivePortalData(@Nullable LinkProperties lp) { in getCaptivePortalData() argument 80 public IpPrefix getNat64Prefix(@NonNull LinkProperties lp) { in getNat64Prefix() argument 86 public void setNat64Prefix(@NonNull LinkProperties lp, @Nullable IpPrefix prefix) { in setNat64Prefix() argument 99 public LinkProperties makeSensitiveFieldsParcelingCopy(@NonNull final LinkProperties lp) { in makeSensitiveFieldsParcelingCopy() argument 100 return new LinkProperties(lp); in makeSensitiveFieldsParcelingCopy() 104 public void setDhcpServerAddress(@NonNull LinkProperties lp, in setDhcpServerAddress() argument
|
/packages/modules/NetworkStack/tests/integration/src/android/net/ip/ |
D | IpClientIntegrationTest.java | 796 LinkProperties lp = captor.getValue(); 797 assertNotNull(lp); 798 assertNotEquals(0, lp.getDnsServers().size()); 799 assertEquals(addresses.size(), lp.getAddresses().size()); 800 assertTrue(lp.getAddresses().containsAll(addresses)); 1398 private void assertHasAddressThat(String msg, LinkProperties lp, 1400 for (LinkAddress addr : lp.getLinkAddresses()) { 1405 fail(msg + " not found in: " + lp); 1438 verifyWithTimeout(inOrder, mCb).onLinkPropertiesChange(argThat(lp -> { 1439 lpRef.set(lp); [all …]
|
/packages/modules/NetworkStack/apishim/common/com/android/networkstack/apishim/common/ |
D | NetworkInformationShim.java | 38 Uri getCaptivePortalApiUrl(@Nullable LinkProperties lp); in getCaptivePortalApiUrl() argument 43 void setCaptivePortalApiUrl(@NonNull LinkProperties lp, @Nullable Uri url); in setCaptivePortalApiUrl() argument 49 CaptivePortalDataShim getCaptivePortalData(@Nullable LinkProperties lp); in getCaptivePortalData() argument 55 IpPrefix getNat64Prefix(@NonNull LinkProperties lp); in getNat64Prefix() argument 60 void setNat64Prefix(@NonNull LinkProperties lp, @Nullable IpPrefix prefix); in setNat64Prefix() argument 72 LinkProperties makeSensitiveFieldsParcelingCopy(@NonNull LinkProperties lp); in makeSensitiveFieldsParcelingCopy() argument 77 void setDhcpServerAddress(@NonNull LinkProperties lp, @NonNull Inet4Address serverAddress); in setDhcpServerAddress() argument
|