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:ABI_MAP
(Results
1 - 5
of
5
) sorted by relevance
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/quick_fix/
H
A
D
patch_profile.cpp
211
auto iter = ServiceConstants::
ABI_MAP
.find(ServiceConstants::ARM64_V8A);
in DefaultNativeSo()
212
if (iter != ServiceConstants::
ABI_MAP
.end()) {
in DefaultNativeSo()
216
LOG_E(BMS_TAG_DEFAULT, "Can't find ARM64_V8A in
ABI_MAP
");
in DefaultNativeSo()
225
auto iter = ServiceConstants::
ABI_MAP
.find(ServiceConstants::ARM_EABI_V7A);
in DefaultNativeSo()
226
if (iter != ServiceConstants::
ABI_MAP
.end()) {
in DefaultNativeSo()
230
LOG_E(BMS_TAG_DEFAULT, "Can't find ARM_EABI_V7A in
ABI_MAP
");
in DefaultNativeSo()
236
auto iter = ServiceConstants::
ABI_MAP
.find(ServiceConstants::ARM_EABI);
in DefaultNativeSo()
237
if (iter != ServiceConstants::
ABI_MAP
.end()) {
in DefaultNativeSo()
241
LOG_E(BMS_TAG_DEFAULT, "Can't find ARM_EABI in
ABI_MAP
");
in DefaultNativeSo()
269
if (ServiceConstants::
ABI_MAP
in ParseNativeSo()
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H
A
D
bundle_service_constants.h
49
const std::map<std::string, std::string>
ABI_MAP
= {
member
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H
A
D
module_profile.cpp
1645
if (ServiceConstants::
ABI_MAP
.find(abi) != ServiceConstants::
ABI_MAP
.end()) {
in ParserNativeSo()
1661
soRelativePath = ServiceConstants::LIBS + ServiceConstants::
ABI_MAP
.at(ServiceConstants::ARM64_V8A);
in ParserNativeSo()
1671
soRelativePath = ServiceConstants::LIBS + ServiceConstants::
ABI_MAP
.at(ServiceConstants::ARM_EABI_V7A);
in ParserNativeSo()
1678
soRelativePath = ServiceConstants::LIBS + ServiceConstants::
ABI_MAP
.at(ServiceConstants::ARM_EABI);
in ParserNativeSo()
1689
if (ServiceConstants::
ABI_MAP
.find(abi) != ServiceConstants::
ABI_MAP
.end() &&
in ParserNativeSo()
1692
soRelativePath = ServiceConstants::LIBS + ServiceConstants::
ABI_MAP
.at(abi);
in ParserNativeSo()
1814
if (ServiceConstants::
ABI_MAP
.find(abi) != ServiceConstants::
ABI_MAP
in ParserArkNativeFilePath()
[all...]
H
A
D
bundle_profile.cpp
1919
if (ServiceConstants::
ABI_MAP
.find(abi) != ServiceConstants::
ABI_MAP
.end()) {
in ParserNativeSo()
1935
soRelativePath = ServiceConstants::LIBS + ServiceConstants::
ABI_MAP
.at(ServiceConstants::ARM64_V8A);
in ParserNativeSo()
1945
soRelativePath = ServiceConstants::LIBS + ServiceConstants::
ABI_MAP
.at(ServiceConstants::ARM_EABI_V7A);
in ParserNativeSo()
1952
soRelativePath = ServiceConstants::LIBS + ServiceConstants::
ABI_MAP
.at(ServiceConstants::ARM_EABI);
in ParserNativeSo()
1963
if (ServiceConstants::
ABI_MAP
.find(abi) != ServiceConstants::
ABI_MAP
.end() &&
in ParserNativeSo()
1966
soRelativePath = ServiceConstants::LIBS + ServiceConstants::
ABI_MAP
.at(abi);
in ParserNativeSo()
H
A
D
base_bundle_installer.cpp
3401
if (ServiceConstants::
ABI_MAP
.find(cpuAbi) == ServiceConstants::
ABI_MAP
.end()) {
in ExtractHnpFileDir()
3430
if (ServiceConstants::
ABI_MAP
.find(cpuAbi) == ServiceConstants::
ABI_MAP
.end()) {
in ExtractArkNativeFile()
3436
arkNativeFilePath.append(ServiceConstants::
ABI_MAP
.at(cpuAbi)).append(ServiceConstants::PATH_SEPARATOR);
in ExtractArkNativeFile()
Completed in 16 milliseconds