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:leaseTable
(Results
1 - 4
of
4
) sorted by relevance
/foundation/communication/dhcp/services/dhcp_server/src/
H
A
D
dhcp_address_pool.cpp
251
pool->
leaseTable
.clear();
in InitAddressPool()
266
pool->
leaseTable
.clear();
in FreeAddressPool()
309
if (pool->
leaseTable
.count(ipAddress) >0) {
in IsReservedIp()
310
AddressBinding *lease = &pool->
leaseTable
[ipAddress];
in IsReservedIp()
410
if (pool->
leaseTable
.count(lease->ipAddress) > 0) {
in AddLease()
412
pool->
leaseTable
[lease->ipAddress] = *lease;
in AddLease()
416
pool->
leaseTable
[lease->ipAddress] = *lease;
in AddLease()
432
if (pool->
leaseTable
.count(ipAddr) > 0) {
in GetLease()
433
return &pool->
leaseTable
[ipAddr];
in GetLease()
450
if (pool->
leaseTable
in UpdateLease()
[all...]
H
A
D
dhcp_s_server.cpp
468
DHCP_LOGD("failed to save lease recoders. total: %zu", srvIns->addressPool.
leaseTable
.size());
in SaveLease()
606
for (auto current: pool->
leaseTable
) {
in InitBindingRecoders()
822
if (pool->
leaseTable
.count(srcIp) == 0) {
in Repending()
824
pool->
leaseTable
[srcIp] = *binding;
in Repending()
826
pool->
leaseTable
[srcIp] = *binding;
in Repending()
1426
if (srvIns->addressPool.
leaseTable
.count(reqIp) > 0) {
in OnReceivedDecline()
1427
AddressBinding *lease = &srvIns->addressPool.
leaseTable
[reqIp];
in OnReceivedDecline()
/foundation/communication/dhcp/services/dhcp_server/include/
H
A
D
dhcp_address_pool.h
51
std::map<uint32_t, AddressBinding>
leaseTable
;
member
/foundation/communication/dhcp/test/unittest/services/dhcp_server/unittest/
H
A
D
dhcp_address_pool_test.cpp
418
testPool.
leaseTable
.clear();
in HWTEST_F()
419
EXPECT_TRUE(testPool.
leaseTable
.size() == 0);
in HWTEST_F()
422
EXPECT_TRUE(testPool.
leaseTable
.size() == 0);
in HWTEST_F()
426
testPool.
leaseTable
.clear();
in HWTEST_F()
Completed in 5 milliseconds