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:file_version
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/runtime_core/isa/
H
A
D
check_version.py
32
file_version
= data.get('version')
34
if
file_version
== cur_version:
37
print(f"[IMPORTANT] Version change detected ({cur_version} -> {
file_version
}), please contact the relevant domain.")
/arkcompiler/runtime_core/abc2program/
H
A
D
abc2program_compiler.cpp
49
const auto &
file_version
= file_->GetHeader()->version;
in CheckFileVersionIsSupported()
local
50
return panda::panda_file::IsVersionLessOrEqual(min_version,
file_version
) &&
in CheckFileVersionIsSupported()
51
panda::panda_file::IsVersionLessOrEqual(
file_version
, target_version.value());
in CheckFileVersionIsSupported()
/arkcompiler/runtime_core/libpandafile/
H
A
D
file.cpp
664
void CheckFileVersion(const std::array<uint8_t, File::VERSION_SIZE> &
file_version
, const std::string_view &filename)
in CheckFileVersion()
argument
671
if (
file_version
== version) {
in CheckFileVersion()
674
if (
file_version
< minVersion) {
in CheckFileVersion()
676
<< VersionToString(
file_version
)
in CheckFileVersion()
680
} else if (
file_version
> version) {
in CheckFileVersion()
682
<< VersionToString(
file_version
)
in CheckFileVersion()
685
} else if (incompatibleVersion.count(
file_version
) != 0) {
in CheckFileVersion()
687
<< VersionToString(
file_version
) << ". Current system image version is "
in CheckFileVersion()
688
<< VersionToString(version) << ", while abc file version is " << VersionToString(
file_version
)
in CheckFileVersion()
689
<< ". The version "<< VersionToString(
file_version
)
in CheckFileVersion()
[all...]
H
A
D
file.h
524
void CheckFileVersion(const std::array<uint8_t, File::VERSION_SIZE> &
file_version
, const std::string_view &filename);
Completed in 7 milliseconds