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:PKGDIFF_MAGIC
(Results
1 - 4
of
4
) sorted by relevance
/base/update/updater/services/diffpatch/patch/
H
A
D
update_patch.cpp
58
if (param.patchSize < (std::char_traits<char>::length(
PKGDIFF_MAGIC
) + sizeof(int32_t))) {
in PreCheck()
62
if (memcmp(param.patch,
PKGDIFF_MAGIC
, std::char_traits<char>::length(
PKGDIFF_MAGIC
)) != 0) {
in PreCheck()
75
size_t offset = std::char_traits<char>::length(
PKGDIFF_MAGIC
);
in ApplyImagePatch()
247
if (patchData.length < std::char_traits<char>::length(
PKGDIFF_MAGIC
)) {
in ApplyPatch()
251
if (memcmp(patchData.memory,
PKGDIFF_MAGIC
, std::char_traits<char>::length(
PKGDIFF_MAGIC
)) == 0) {
in ApplyPatch()
/base/update/updater/services/diffpatch/
H
A
D
diffpatch.h
131
constexpr const char *
PKGDIFF_MAGIC
= "PKGDIFF0";
member
/base/update/updater/test/unittest/diffpatch/
H
A
D
diffpatch_unittest.cpp
99
if (memcmp(patchData.memory, UpdatePatch::
PKGDIFF_MAGIC
,
in TestApplyPatch()
100
std::char_traits<char>::length(UpdatePatch::
PKGDIFF_MAGIC
)) == 0) {
in TestApplyPatch()
/base/update/updater/services/diffpatch/diff/
H
A
D
image_diff.cpp
216
patchFile.write(
PKGDIFF_MAGIC
, std::char_traits<char>::length(
PKGDIFF_MAGIC
));
in DiffImage()
217
size_t dataOffset = std::char_traits<char>::length(
PKGDIFF_MAGIC
);
in DiffImage()
Completed in 4 milliseconds