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:decodedLen
(Results
1 - 2
of
2
) sorted by relevance
/base/security/device_security_level/baselib/utils/src/
H
A
D
utils_base64.c
196
uint32_t
decodedLen
= strlen((char *)src) / 4 * 3; /* Base64 Decode size */
in Base64DecodeApp()
local
197
if (
decodedLen
+ 1 > MAX_MALLOC_LEN) {
in Base64DecodeApp()
198
SECURITY_LOG_DEBUG("
decodedLen
error");
in Base64DecodeApp()
202
uint8_t *decoded = (uint8_t *)MALLOC(
decodedLen
+ 1);
in Base64DecodeApp()
208
int realLen = Base64Decode(src, decoded,
decodedLen
);
in Base64DecodeApp()
/base/tee/tee_client/services/authentication/
H
A
D
tee_auth_system.cpp
31
static int32_t Base64Decode(string& encodedStr, unsigned char *decodedStr, uint32_t *
decodedLen
)
in Base64Decode()
argument
38
if (*
decodedLen
< ((encodedLen / BASE_NUM_FOUR) * BASE_NUM_THREE)) {
in Base64Decode()
39
tloge("decode string len too short, %zu, %u\n", encodedLen, (unsigned int)*
decodedLen
);
in Base64Decode()
68
*
decodedLen
= ret - padLen;
in Base64Decode()
Completed in 2 milliseconds