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:beginAddress
(Results
1 - 7
of
7
) 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()
131
DHCP_LOGE("pool
beginAddress
or endAddress pointer is null.");
in CheckRangeAvailability()
138
uint32_t beginIp = pool->addressRange.
beginAddress
;
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.
beginAddress
;
in LoadBindingRecoders()
H
A
D
dhcp_dhcpd.cpp
105
config->pool.
beginAddress
= ParseIpAddr(poolPartArg);
in PareseAddreesRange()
114
if (!config->pool.
beginAddress
|| !config->pool.endAddress) {
in PareseAddreesRange()
132
if (!config->pool.
beginAddress
|| !config->pool.endAddress) {
in InitAddressRange()
133
config->pool.
beginAddress
= FirstIpAddress(config->serverId, config->netmask);
in InitAddressRange()
H
A
D
dhcp_s_server.cpp
586
uint32_t firstNetwork = NetworkAddress(pool->addressRange.
beginAddress
, pool->netmask);
in CheckAddressRange()
1072
if ((ntohl(*yourIpAddr) < ntohl(pool->addressRange.
beginAddress
))
in GetYourIpAddress()
1866
if (config->pool.
beginAddress
&& config->pool.endAddress) {
in InitServerContext()
1867
srvIns->addressPool.addressRange.
beginAddress
= config->pool.
beginAddress
;
in InitServerContext()
1870
srvIns->addressPool.addressRange.
beginAddress
= FirstIpAddress(config->serverId, config->netmask);
in InitServerContext()
1960
DHCP_LOGI("address range begin of: %{private}s", ParseStrIp(config->pool.
beginAddress
));
in InitializeServer()
H
A
D
dhcp_config.cpp
120
dhcpConfig->pool.
beginAddress
= begin;
in SetIpAddressPool()
/foundation/communication/dhcp/services/dhcp_server/include/
H
A
D
dhcp_address_pool.h
34
uint32_t
beginAddress
;
member
/foundation/communication/dhcp/test/unittest/services/dhcp_server/unittest/
H
A
D
dhcp_s_server_test.cpp
93
config->pool.
beginAddress
= beginIp;
in InitServerConfig()
H
A
D
dhcp_address_pool_test.cpp
60
testPool.addressRange.
beginAddress
= beginIp;
in SamplePoolConfig()
73
testPool.addressRange.
beginAddress
= 0;
in ResetPollConfig()
Completed in 7 milliseconds