Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:addressRange
(Results
1 - 4
of
4
) sorted by relevance
/foundation/communication/dhcp/services/dhcp_server/src/
H
A
D
dhcp_address_pool.cpp
130
if (!pool || !pool->
addressRange
.beginAddress || !pool->
addressRange
.endAddress) {
in CheckRangeAvailability()
138
uint32_t beginIp = pool->
addressRange
.beginAddress;
in CheckRangeAvailability()
139
uint32_t endIp = pool->
addressRange
.endAddress;
in CheckRangeAvailability()
182
if (!pool || !pool->
addressRange
.beginAddress || !pool->
addressRange
.endAddress) {
in AddressDistribute()
189
pool->distribution = pool->
addressRange
.beginAddress;
in AddressDistribute()
193
if (!distIp || distIp < pool->
addressRange
.beginAddress) {
in AddressDistribute()
194
distIp = pool->
addressRange
.beginAddress;
in AddressDistribute()
493
uint32_t beginIp = pool->
addressRange
in LoadBindingRecoders()
[all...]
H
A
D
dhcp_s_server.cpp
586
uint32_t firstNetwork = NetworkAddress(pool->
addressRange
.beginAddress, pool->netmask);
in CheckAddressRange()
587
uint32_t secondNetwork = NetworkAddress(pool->
addressRange
.endAddress, pool->netmask);
in CheckAddressRange()
1072
if ((ntohl(*yourIpAddr) < ntohl(pool->
addressRange
.beginAddress))
in GetYourIpAddress()
1073
|| (ntohl(*yourIpAddr) > ntohl(pool->
addressRange
.endAddress))) {
in GetYourIpAddress()
1867
srvIns->addressPool.
addressRange
.beginAddress = config->pool.beginAddress;
in InitServerContext()
1868
srvIns->addressPool.
addressRange
.endAddress = config->pool.endAddress;
in InitServerContext()
1870
srvIns->addressPool.
addressRange
.beginAddress = FirstIpAddress(config->serverId, config->netmask);
in InitServerContext()
1871
srvIns->addressPool.
addressRange
.endAddress = LastIpAddress(config->serverId, config->netmask);
in InitServerContext()
/foundation/communication/dhcp/services/dhcp_server/include/
H
A
D
dhcp_address_pool.h
41
IpAddressRange
addressRange
;
member
/foundation/communication/dhcp/test/unittest/services/dhcp_server/unittest/
H
A
D
dhcp_address_pool_test.cpp
60
testPool.
addressRange
.beginAddress = beginIp;
in SamplePoolConfig()
61
testPool.
addressRange
.endAddress = endIp;
in SamplePoolConfig()
73
testPool.
addressRange
.beginAddress = 0;
in ResetPollConfig()
74
testPool.
addressRange
.endAddress = 0;
in ResetPollConfig()
Completed in 5 milliseconds