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:ENTRY
(Results
1 - 9
of
9
) sorted by relevance
/developtools/packing_tool/packing_tool/frameworks/src/json/
H
A
D
hap_verify_utils.cpp
28
const std::string
ENTRY
= "entry";
member
181
return ((moduleType ==
ENTRY
) || (moduleType == FEATURE));
in IsEntryOrFeature()
316
if (hapVerifyInfo.GetModuleType() ==
ENTRY
) {
in CheckEntryIsValid()
666
if (layerHapVerifyInfo.GetModuleType() == FEATURE || layerHapVerifyInfo.GetModuleType() ==
ENTRY
) {
in DfsTraverseDependency()
834
(moduleNameWithType[preloadItem.moduleName] ==
ENTRY
||
in CheckAtomicServicePreloadsIsValid()
855
if (hapVerifyInfo.GetModuleType() ==
ENTRY
&&
in CheckFileSizeIsValid()
862
if (hapVerifyInfo.GetModuleType() !=
ENTRY
&&
in CheckFileSizeIsValid()
910
if (hapVerifyInfo.GetModuleType() ==
ENTRY
&& (fileSize >= entryLimit * FILE_LENGTH_1M)) {
in CheckAtomicServiceModuleSize()
917
if (hapVerifyInfo.GetModuleType() !=
ENTRY
&& (fileSize >= notEntryLimit * FILE_LENGTH_1M)) {
in CheckAtomicServiceModuleSize()
H
A
D
module_json_stage.cpp
49
const std::string
ENTRY
= "entry";
member
354
if (moduleType.compare(
ENTRY
) == 0) {
in GetStageEntry()
H
A
D
module_json_fa.cpp
49
const std::string
ENTRY
= "entry";
member
508
if (moduleType.compare(
ENTRY
) == 0) {
in GetFaEntry()
H
A
D
module_json.cpp
49
const std::string
ENTRY
= "entry";
member
1106
if (moduleType.compare(
ENTRY
) == 0 && abilityNames.empty()) {
in CheckEntryInAtomicService()
/developtools/global_resource_tool/src/
H
A
D
resource_merge.cpp
26
ConfigParser::ModuleType::
ENTRY
,
H
A
D
config_parser.cpp
28
{ "entry", ModuleType::
ENTRY
},
/developtools/global_resource_tool/include/
H
A
D
config_parser.h
32
ENTRY
= 2,
member in OHOS::Global::Restool::ConfigParser::ModuleType
/developtools/packing_tool/adapter/ohos/
H
A
D
HapVerify.java
39
private static final String
ENTRY
= "entry";
field in HapVerify
320
return
ENTRY
.equals(moduleType) || FEATURE.equals(moduleType);
in isEntryOrFeature()
529
if (
ENTRY
.equals(hapVerifyInfo.getModuleType())) {
in checkEntryIsValid()
1149
if (FEATURE.equals(item.getModuleType()) ||
ENTRY
.equals(item.getModuleType())) {
in dfsTraverseDependency()
1273
if (hapVerifyInfo.getModuleType().equals(
ENTRY
) && (fileSize >= entryLimit * FILE_LENGTH_1M)) {
in checkAtomicServiceModuleSize()
1278
if (!hapVerifyInfo.getModuleType().equals(
ENTRY
) && (fileSize >= notEntryLimit * FILE_LENGTH_1M)) {
in checkAtomicServiceModuleSize()
1405
if (moduleNameWithType.get(moduleName).equals(
ENTRY
)
in checkAtomicServicePreloadsIsValid()
1445
if (hapVerifyInfo.getModuleType().equals(
ENTRY
) &&
in checkFileSize()
1452
if (!hapVerifyInfo.getModuleType().equals(
ENTRY
) &&
in checkFileSize()
H
A
D
ModuleJsonUtil.java
61
private static final String
ENTRY
= "entry";
field in ModuleJsonUtil
810
if (
ENTRY
.equals(moduleType)) {
in parseFaEntry()
840
if (type != null && type.equals(
ENTRY
)) {
in parseStageEntry()
1854
if (parseModuleType(jsonString).equals(
ENTRY
) && parseAbilityNames(jsonString).isEmpty()) {
in checkEntryInAtomicService()
Completed in 14 milliseconds