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:BYTE_TO_HEX_LEN
(Results
1 - 6
of
6
) sorted by relevance
/base/telephony/core_service/utils/codec/src/
H
A
D
asn1_utils.cpp
125
oss << std::hex << std::uppercase << std::setw(
BYTE_TO_HEX_LEN
) << std::setfill('0') << (bytes[i] & MAX_UINT8);
in BytesToHexStr()
133
oss << std::hex << std::uppercase << std::setw(
BYTE_TO_HEX_LEN
) << std::setfill('0') << (src & MAX_UINT8);
in ByteToHexStr()
141
if (hexStr.length() > (MAX_UINT16 *
BYTE_TO_HEX_LEN
)) {
in HexStrToBytes()
145
if ((hexStr.length() %
BYTE_TO_HEX_LEN
) != 0) {
in HexStrToBytes()
149
for (size_t i = 0; i < hexStr.length(); i +=
BYTE_TO_HEX_LEN
) {
in HexStrToBytes()
150
uint8_t byte = static_cast<uint8_t>(strtol((hexStr.substr(i,
BYTE_TO_HEX_LEN
)).c_str(),
in HexStrToBytes()
173
oss << std::hex << std::uppercase << std::setw(len *
BYTE_TO_HEX_LEN
) << std::setfill('0') << value;
in UintToBytes()
183
oss << std::hex << std::uppercase << std::setw(len *
BYTE_TO_HEX_LEN
) << std::setfill('0') << value;
in IntToBytes()
265
if (hexStr.length() > (MAX_UINT8 *
BYTE_TO_HEX_LEN
)) {
in SwapHexCharPair()
270
if (tmphexStr.length() %
BYTE_TO_HEX_LEN
!
in SwapHexCharPair()
[all...]
H
A
D
request_apdu_build.cpp
56
int32_t cmdLen = MAX_UINT8 *
BYTE_TO_HEX_LEN
;
in BuildStoreData()
58
uint32_t totalLen = static_cast<uint32_t>(cmdHex.length() /
BYTE_TO_HEX_LEN
);
in BuildStoreData()
H
A
D
reset_response.cpp
104
if (atr.empty() || atr.length() %
BYTE_TO_HEX_LEN
!= 0) {
in CheckAtrDataParam()
/base/telephony/core_service/utils/codec/include/
H
A
D
asn1_constants.h
24
const uint32_t
BYTE_TO_HEX_LEN
= 2;
member
/base/telephony/core_service/test/unittest/utils_codec_gtest/
H
A
D
asn1_utils_test.cpp
280
ret = res ==
BYTE_TO_HEX_LEN
? true : false;
in HWTEST_F()
/base/telephony/core_service/services/sim/src/
H
A
D
esim_file.cpp
2785
if (imeiLen < AUTH_SERVER_IMEI_LEN *
BYTE_TO_HEX_LEN
- 1) {
in GetImeiBytes()
2788
if (imeiLen != AUTH_SERVER_IMEI_LEN *
BYTE_TO_HEX_LEN
) {
in GetImeiBytes()
Completed in 7 milliseconds