Searched refs:currentPrefix (Results 1 – 1 of 1) sorted by relevance
502 public void onNewPrefixRequest(@NonNull final IpPrefix currentPrefix) { in onNewPrefixRequest() argument503 Objects.requireNonNull(currentPrefix); in onNewPrefixRequest()504 sendMessage(CMD_NEW_PREFIX_REQUEST, currentPrefix); in onNewPrefixRequest()922 private void handleNewPrefixRequest(@NonNull final IpPrefix currentPrefix) { in handleNewPrefixRequest() argument923 if (!currentPrefix.contains(mIpv4Address.getAddress()) in handleNewPrefixRequest()924 || currentPrefix.getPrefixLength() != mIpv4Address.getPrefixLength()) { in handleNewPrefixRequest()925 Log.e(TAG, "Invalid prefix: " + currentPrefix); in handleNewPrefixRequest()938 if (!mInterfaceCtrl.addAddress(srvAddr, currentPrefix.getPrefixLength())) { in handleNewPrefixRequest()