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:MAX_FILE_NAME
(Results
1 - 4
of
4
) sorted by relevance
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/
H
A
D
zip_file.cpp
37
constexpr uint32_t
MAX_FILE_NAME
= 256;
member
118
fileName.reserve(
MAX_FILE_NAME
);
in ParseAllEntries()
119
fileName.resize(
MAX_FILE_NAME
- 1);
in ParseAllEntries()
144
(directoryEntry.nameSize >=
MAX_FILE_NAME
) ? (
MAX_FILE_NAME
- 1) : (directoryEntry.nameSize);
in ParseAllEntries()
352
fileName.reserve(
MAX_FILE_NAME
);
in CheckCoherencyLocalHeader()
353
fileName.resize(
MAX_FILE_NAME
- 1);
in CheckCoherencyLocalHeader()
354
size_t fileLength = (localHeader.nameSize >=
MAX_FILE_NAME
) ? (
MAX_FILE_NAME
- 1) : localHeader.nameSize;
in CheckCoherencyLocalHeader()
/foundation/graphic/graphic_2d/frameworks/bootanimation/src/
H
A
D
util.cpp
212
char filename[
MAX_FILE_NAME
] = {0};
in ReadZipFile()
213
if (unzGetCurrentFileInfo(zipFile, &fileInfo, filename,
MAX_FILE_NAME
, nullptr, 0, nullptr, 0) != UNZ_OK) {
in ReadZipFile()
217
if (length >
MAX_FILE_NAME
|| length == 0) {
in ReadZipFile()
/foundation/graphic/graphic_2d/frameworks/bootanimation/include/
H
A
D
util.h
36
static const int
MAX_FILE_NAME
= 512;
member
/foundation/ability/ability_base/interfaces/kits/native/extractortool/src/
H
A
D
zip_file.cpp
32
constexpr uint32_t
MAX_FILE_NAME
= 4096;
member
179
size_t fileLength = (directoryEntry.nameSize >=
MAX_FILE_NAME
) ? (
MAX_FILE_NAME
- 1) : directoryEntry.nameSize;
in ParseOneEntry()
677
if (localHeader.nameSize != nameSize && nameSize <
MAX_FILE_NAME
- 1) {
in CheckCoherencyLocalHeader()
Completed in 4 milliseconds