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:realOldPath
(Results
1 - 2
of
2
) sorted by relevance
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/bundle_daemon/src/
H
A
D
bundle_daemon_handler.cpp
101
char
realOldPath
[PATH_MAX + 1] = { '\0' };
in RenameFile()
local
102
if (oldFile == nullptr || realpath(oldFile,
realOldPath
) == nullptr) {
in RenameFile()
106
if (!(IsValideCodePath(
realOldPath
) && IsValideCodePath(newFile)) &&
in RenameFile()
107
!(IsValideJsonPath(
realOldPath
) && IsValideJsonPath(newFile))) {
in RenameFile()
111
if (!BundleFileUtils::RenameFile(
realOldPath
, newFile)) {
in RenameFile()
194
char
realOldPath
[PATH_MAX + 1] = { '\0' };
in MoveFile()
local
195
if (oldFile == nullptr || realpath(oldFile, static_cast<char *>(
realOldPath
)) == nullptr) {
in MoveFile()
200
if (BundleFileUtils::IsExistFile(static_cast<char *>(
realOldPath
))) {
in MoveFile()
201
if (!BundleFileUtils::RenameFile(static_cast<char *>(
realOldPath
), newFile)) {
in MoveFile()
215
DIR *dir = opendir(static_cast<char *>(
realOldPath
));
in MoveFile()
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/
H
A
D
installd_operator.cpp
631
std::string
realOldPath
;
in RenameDir()
local
632
realOldPath
.reserve(PATH_MAX);
in RenameDir()
633
realOldPath
.resize(PATH_MAX - 1);
in RenameDir()
634
if (realpath(oldPath.c_str(), &(
realOldPath
[0])) == nullptr) {
in RenameDir()
635
LOG_NOFUNC_E(BMS_TAG_INSTALLD, "
realOldPath
:%{public}s errno:%{public}d",
realOldPath
.c_str(), errno);
in RenameDir()
639
if (!(IsValidCodePath(
realOldPath
) && IsValidCodePath(newPath))) {
in RenameDir()
643
return RenameFile(
realOldPath
, newPath);
in RenameDir()
Completed in 4 milliseconds