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:hex
(Results
1 - 25
of
97
) sorted by relevance
1
2
3
4
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_hal/unittest/
H
A
D
wifi_wpa_common_test.cpp
127
const char
hex
= '1';
in HWTEST_F()
local
131
result = Hex2byte(&
hex
);
in HWTEST_F()
138
const char
hex
= 'a';
in HWTEST_F()
local
142
result = Hex2byte(&
hex
);
in HWTEST_F()
149
const char
hex
= 'A';
in HWTEST_F()
local
153
result = Hex2byte(&
hex
);
in HWTEST_F()
160
const char
hex
= '*';
in HWTEST_F()
local
164
result = Hex2byte(&
hex
);
in HWTEST_F()
H
A
D
wifi_wpa_common_test.h
29
int Hex2byte(const char *
hex
);
/foundation/CastEngine/castengine_wifi_display/services/impl/wfd/
H
A
D
wfd_message.cpp
106
ss << std::setfill('0') << std::setw(BIT_OFFSET_TWO) << std::
hex
<< (int32_t)native << RTSP_SP << "00" << RTSP_SP;
in SetVideoFormats()
107
ss << std::setfill('0') << std::setw(BIT_OFFSET_TWO) << std::
hex
<< (int32_t)h264Profile << RTSP_SP;
in SetVideoFormats()
108
ss << std::setfill('0') << std::setw(BIT_OFFSET_TWO) << std::
hex
<< (int32_t)h264Level << RTSP_SP;
in SetVideoFormats()
109
ss << std::setfill('0') << std::setw(BIT_OFFSET_EIGHT) << std::
hex
<< ceaResolutionIndex << RTSP_SP;
in SetVideoFormats()
110
ss << std::setfill('0') << std::setw(BIT_OFFSET_EIGHT) << std::
hex
<< vesaResolutionIndex << RTSP_SP;
in SetVideoFormats()
111
ss << std::setfill('0') << std::setw(BIT_OFFSET_EIGHT) << std::
hex
<< hhResolutionIndex << RTSP_SP;
in SetVideoFormats()
295
ss >> std::
hex
>> native >> std::
hex
>> preferredDisplayMode;
in GetVideoFormats()
311
sss >> std::
hex
>> wfdVideoFormatsInfo.profile >> std::
hex
>> wfdVideoFormatsInf
in GetVideoFormats()
[all...]
/foundation/graphic/graphic_2d/rosen/modules/texgine/src/opentype_parser/
H
A
D
ranges.cpp
52
LOGSO_FUNC_LINE(INFO) << "0x" << std::uppercase << std::
hex
<< std::setw(4) << std::setfill('0') << start
in Dump()
53
<< " ~ 0x" << std::uppercase << std::
hex
<< std::setw(4) << std::setfill('0') << end
in Dump()
59
LOGSO_FUNC_LINE(INFO) << "0x" << std::uppercase << std::
hex
<< std::setw(4) << std::setfill('0') << codepoint
in Dump()
H
A
D
name_table_parser.cpp
48
LOGSO_FUNC_LINE(INFO) << "nameId:" << nameId << ", recordinfo:" << std::uppercase << std::
hex
<< std::setw(len)
in Dump()
/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H
A
D
ohos_bt_adapter_utils.cpp
114
const std::string
hex
= "0123456789ABCDEF";
in ConvertDataToHex()
local
118
outStr.push_back(
hex
[n >> sizeFour]);
in ConvertDataToHex()
119
outStr.push_back(
hex
[n & 0xF]);
in ConvertDataToHex()
/foundation/filemanagement/storage_service/services/storage_daemon/include/crypto/
H
A
D
key_blob.h
128
std::string
hex
;
in ToString()
local
132
hex
=
hex
+ hexMap[(data[i] & 0xF0) >> 4] + hexMap[data[i] & 0x0F]; // higher 4 bits
in ToString()
134
return
hex
;
in ToString()
/foundation/communication/bluetooth/frameworks/inner/ipc/common/
H
A
D
bt_uuid.h
250
static const char *
hex
= "0123456789ABCDEF";
in ToString()
local
258
tmp.push_back(
hex
[(((*it) >> size4) & 0xF)]);
in ToString()
259
tmp.push_back(
hex
[(*it) & 0xF]);
in ToString()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/
H
A
D
table_info.cpp
74
uint32_t
hex
= 0;
in AffinityType()
local
76
hex
= (
hex
<< 8) + static_cast<uint32_t>((std::tolower(dataType[i]))); // 8: shift length
in AffinityType()
77
if (
hex
== affinityTable[AFFINITY_CHAR]) {
in AffinityType()
79
} else if (
hex
== affinityTable[AFFINITY_CLOB]) {
in AffinityType()
81
} else if (
hex
== affinityTable[AFFINITY_TEXT]) {
in AffinityType()
83
} else if (
hex
== affinityTable[AFFINITY_BLOB] && (type == StorageType::STORAGE_TYPE_NULL ||
in AffinityType()
86
} else if (
hex
== affinityTable[AFFINITY_REAL] && type == StorageType::STORAGE_TYPE_NULL) {
in AffinityType()
88
} else if (
hex
== affinityTable[AFFINITY_FLOA] && type == StorageType::STORAGE_TYPE_NULL) {
in AffinityType()
90
} else if (
hex
in AffinityType()
[all...]
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_p2p/
H
A
D
wifi_p2p_dns_sd_service_info.cpp
126
ret << std::
hex
<< std::setw(stepFour) << std::setfill('0') << dnsType;
in BuildRequest()
127
ret << std::
hex
<< std::setw(stepTwo) << std::setfill('0') << version;
in BuildRequest()
146
ret << std::
hex
<< std::setw(stepTwo) << std::setfill('0') << name.length();
in TurnDnsNameToStream()
154
ret << std::
hex
<< std::setw(stepTwo) << std::setfill('0') << splitName.length();
in TurnDnsNameToStream()
/foundation/distributedhardware/device_manager/radar/src/lite/
H
A
D
dm_radar_helper.cpp
159
std::string DmRadarHelper::ConvertHexToString(uint16_t
hex
)
in ConvertHexToString()
argument
163
str << std::
hex
<< std::setw(with) << std::setfill('0') <<
hex
;
in ConvertHexToString()
/foundation/communication/bluetooth/frameworks/inner/src/
H
A
D
uuid.cpp
110
static const char *
hex
= "0123456789ABCDEF";
in ToString()
local
113
tmp.push_back(
hex
[(((*it) >> 4) & 0xF)]); // 右移4位
in ToString()
114
tmp.push_back(
hex
[(*it) & 0xF]);
in ToString()
/foundation/communication/wifi/wifi/relation_services/wifi_hal_service/wifi_hal_module/wpa_supplicant_hal/
H
A
D
wifi_wpa_common.c
205
static int Hex2byte(const char *
hex
)
in Hex2byte()
argument
207
int a = Hex2num(*
hex
++);
in Hex2byte()
211
int b = Hex2num(*
hex
++);
in Hex2byte()
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/net_helper/
H
A
D
ip_tools.cpp
75
stream << std::
hex
<< std::setw(POS_2) << std::setfill('0') << static_cast<int>(addressIpv6[0]);
in ConvertIpv6Address()
76
stream << std::
hex
<< std::setw(POS_2) << std::setfill('0') << static_cast<int>(addressIpv6[1]);
in ConvertIpv6Address()
79
stream << std::
hex
<< std::setw(POS_2) << std::setfill('0') << static_cast<int>(addressIpv6[i]);
in ConvertIpv6Address()
80
stream << std::
hex
<< std::setw(POS_2) << std::setfill('0') << static_cast<int>(addressIpv6[i + 1]);
in ConvertIpv6Address()
/foundation/distributeddatamgr/relational_store/frameworks/native/dfx/src/
H
A
D
rdb_fault_hiview_reporter.cpp
107
oss << " dev:0x" << std::
hex
<< debugInfo.dev_ << " ino:0x" << std::
hex
<< debugInfo.inode_;
in GetFileStatInfo()
109
oss << "<>0x" << std::
hex
<< debugInfo.oldInode_;
in GetFileStatInfo()
262
oss << "<" << name << ",0x" << std::
hex
<< debugInfo.inode_ << "," << std::dec << debugInfo.size_ << ">";
in FormatBrief()
/foundation/CastEngine/castengine_wifi_display/services/utils/
H
A
D
crypto.cpp
32
ss << std::
hex
<< std::setw(2) << std::setfill('0') << (int32_t)MD5Hash[i] << std::endl; // 2: fix offset
in GetMD5()
/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fs/
H
A
D
common_func.cpp
316
int
hex
= 0;
in Decode()
local
318
inputStream >> std::
hex
>>
hex
;
in Decode()
local
319
outPutStream << static_cast<char>(
hex
);
in Decode()
/foundation/communication/wifi/wifi/utils/src/
H
A
D
wifi_common_util.cpp
463
int Hex2byte(const char *
hex
)
in Hex2byte()
argument
465
int a = Hex2num(*
hex
++);
in Hex2byte()
469
int b = Hex2num(*
hex
++);
in Hex2byte()
476
int HexString2Byte(const char *
hex
, uint8_t *buf, size_t len)
in HexString2Byte()
argument
480
const char *ipos =
hex
;
in HexString2Byte()
/foundation/arkui/ace_engine/build/tools/
H
A
D
build_resource_to_bytecode.py
35
seq.append(str(
hex
(content)))
/foundation/multimedia/drm_framework/services/utils/
H
A
D
drm_dfx_utils.cpp
65
stream << std::
hex
<< std::setw(minimumDigit) << std::setfill('0') << static_cast<int>(binary);
in CastToHexString()
/foundation/filemanagement/app_file_service/utils/src/b_filesystem/
H
A
D
b_file_hash.cpp
38
ss << std::uppercase << std::setfill('0') << std::setw(hexPerByte) << std::
hex
<<
in HashFinal()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/overdraw/
H
A
D
rs_overdraw_controller.cpp
117
while (ss >> std::
hex
>> color) {
in OnColorChange()
/foundation/distributedhardware/distributed_camera/common/src/utils/
H
A
D
anonymous_string.cpp
45
ss << std::
hex
<< std::nouppercase << std::setfill('0');
in GetRandomID()
/foundation/filemanagement/file_api/interfaces/kits/js/src/common/file_helper/
H
A
D
hash_file.cpp
40
ss << std::uppercase << std::setfill('0') << std::setw(hexPerByte) << std::
hex
<<
in HashFinal()
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/utils/
H
A
D
wifi_randommac_helper.cpp
279
inputSsMac << std::
hex
<<inputStrMac;
in GetWifi2RandomMac()
282
WIFI_LOGD("%{public}s conver pos 3 mac to
hex
success", __func__);
in GetWifi2RandomMac()
284
WIFI_LOGE("%{public}s conver pos 3 mac to
hex
fail", __func__);
in GetWifi2RandomMac()
289
outSsMac << std::
hex
<<outputHexMac;
in GetWifi2RandomMac()
Completed in 12 milliseconds
1
2
3
4