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:uValue
(Results
1 - 6
of
6
) sorted by relevance
/foundation/communication/dhcp/services/dhcp_server/src/
H
A
D
dhcp_config.cpp
40
uint32_t
uValue
= (uint32_t)atoi(pValue);
in SetEnableConfigInfo()
local
41
if ((
uValue
!= 0) && (
uValue
!= 1)) {
in SetEnableConfigInfo()
47
dhcpConfig->distribution =
uValue
;
in SetEnableConfigInfo()
49
dhcpConfig->broadcast =
uValue
;
in SetEnableConfigInfo()
61
uint32_t
uValue
= 0;
in SetTimeConfigInfo()
local
62
if ((
uValue
= (uint32_t)atoi(pValue)) == 0) {
in SetTimeConfigInfo()
68
dhcpConfig->leaseTime =
uValue
;
in SetTimeConfigInfo()
70
dhcpConfig->renewalTime =
uValue
;
in SetTimeConfigInfo()
72
dhcpConfig->rebindingTime =
uValue
;
in SetTimeConfigInfo()
84
uint32_t
uValue
= 0;
SetNetConfigInfo()
local
[all...]
/foundation/multimedia/media_library/frameworks/services/media_mtp/src/
H
A
D
mtp_packet_tools.cpp
656
uint8_t
uValue
= 0;
in GetInt8()
local
657
if (!GetUInt8(buffer, offset,
uValue
)) {
in GetInt8()
660
value = static_cast<int8_t>(
uValue
);
in GetInt8()
666
uint16_t
uValue
= 0;
in GetInt16()
local
667
if (!GetUInt16(buffer, offset,
uValue
)) {
in GetInt16()
670
value = static_cast<int16_t>(
uValue
);
in GetInt16()
676
uint32_t
uValue
= 0;
in GetInt32()
local
677
if (!GetUInt32(buffer, offset,
uValue
)) {
in GetInt32()
680
value = static_cast<int32_t>(
uValue
);
in GetInt32()
685
uint64_t
uValue
in GetInt64()
local
695
uint128_t
uValue
= {0};
GetInt128()
local
[all...]
/foundation/communication/dhcp/services/dhcp_client/src/
H
A
D
dhcp_options.cpp
357
uint32_t
uValue
= 0;
in AddOptValueToOpts()
local
358
uint8_t *pUint8 = (uint8_t *)&
uValue
;
in AddOptValueToOpts()
359
uint16_t *pUint16 = (uint16_t *)&
uValue
;
in AddOptValueToOpts()
360
uint32_t *pUint32 = &
uValue
;
in AddOptValueToOpts()
379
if (memcpy_s(uOption + DHCP_OPT_DATA_INDEX, sizeof(uint32_t), &
uValue
, uLen) != EOK) {
in AddOptValueToOpts()
/foundation/distributeddatamgr/relational_store/test/native/rdb_data_share_adapter/unittest/
H
A
D
rdb_data_share_adapter_test.cpp
109
uint8_t
uValue
= 66;
in GenerateDefaultTable()
local
111
typeBlob.push_back(
uValue
);
in GenerateDefaultTable()
/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/
H
A
D
rdb_step_result_set_test.cpp
116
uint8_t
uValue
= 66;
in GenerateDefaultTable()
local
118
typeBlob.push_back(
uValue
);
in GenerateDefaultTable()
1271
uint8_t
uValue
= 66;
in HWTEST_F()
local
1273
typeBlob.push_back(
uValue
);
in HWTEST_F()
1305
uint8_t
uValue
= 66;
in HWTEST_F()
local
1307
typeBlob.push_back(
uValue
);
in HWTEST_F()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/common/src/
H
A
D
pixel_map.cpp
2758
uint32_t
uValue
= static_cast<uint32_t>(value);
in GetVarintLen()
local
2760
while (
uValue
> TLV_VARINT_MASK) {
in GetVarintLen()
2762
uValue
>>= TLV_VARINT_BITS;
in GetVarintLen()
2769
uint32_t
uValue
= uint32_t(value);
in WriteVarint()
local
2770
while (
uValue
> TLV_VARINT_MASK) {
in WriteVarint()
2771
buff.push_back(TLV_VARINT_MORE | uint8_t(
uValue
& TLV_VARINT_MASK));
in WriteVarint()
2772
uValue
>>= TLV_VARINT_BITS;
in WriteVarint()
2774
buff.push_back(uint8_t(
uValue
));
in WriteVarint()
Completed in 13 milliseconds