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:srcStatInfo
(Results
1 - 2
of
2
) sorted by relevance
/foundation/multimedia/ringtone_library/services/utils/src/
H
A
D
ringtone_file_utils.cpp
185
struct stat
srcStatInfo
{};
in IsSameFile()
struct
191
if (stat(srcPath.c_str(), &
srcStatInfo
) != 0) {
in IsSameFile()
199
if (
srcStatInfo
.st_size != dstStatInfo.st_size) { /* file size */
in IsSameFile()
200
RINGTONE_INFO_LOG("Size differs,
srcStatInfo
.st_size != dstStatInfo.st_size");
in IsSameFile()
/foundation/multimedia/media_library/frameworks/services/media_backup_extension/src/
H
A
D
base_restore.cpp
625
struct stat
srcStatInfo
{};
in IsSameAudioFile()
struct
631
if (stat(srcPath.c_str(), &
srcStatInfo
) != 0) {
in IsSameAudioFile()
639
if ((
srcStatInfo
.st_size != dstStatInfo.st_size ||
srcStatInfo
.st_mtime != dstStatInfo.st_mtime) &&
in IsSameAudioFile()
642
(long long)
srcStatInfo
.st_size, (long long)dstStatInfo.st_size, (long long)
srcStatInfo
.st_mtime,
in IsSameAudioFile()
Completed in 4 milliseconds