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:incExcFile
(Results
1 - 4
of
4
) sorted by relevance
/foundation/filemanagement/storage_service/services/storage_daemon/quota/test/
H
A
D
quota_manager_test.cpp
291
std::ofstream
incExcFile
;
in HWTEST_F()
local
292
incExcFile
.open(incExFilePath.data(), std::ios::out | std::ios::trunc);
in HWTEST_F()
293
if (!
incExcFile
.is_open()) {
in HWTEST_F()
296
incExcFile
<< BACKUP_INCLUDE << std::endl;
in HWTEST_F()
298
incExcFile
<< include << std::endl;
in HWTEST_F()
300
incExcFile
<< BACKUP_EXCLUDE << std::endl;
in HWTEST_F()
302
incExcFile
<< exclude << std::endl;
in HWTEST_F()
303
incExcFile
.close();
in HWTEST_F()
/foundation/filemanagement/storage_service/services/storage_daemon/ipc/test/
H
A
D
storage_daemon_test.cpp
517
std::ofstream
incExcFile
;
in HWTEST_F()
local
518
incExcFile
.open(incExFilePath.data(), std::ios::out | std::ios::trunc);
in HWTEST_F()
519
if (!
incExcFile
.is_open()) {
in HWTEST_F()
522
incExcFile
<< BACKUP_INCLUDE << std::endl;
in HWTEST_F()
524
incExcFile
<< include << std::endl;
in HWTEST_F()
526
incExcFile
<< BACKUP_EXCLUDE << std::endl;
in HWTEST_F()
528
incExcFile
<< exclude << std::endl;
in HWTEST_F()
529
incExcFile
.close();
in HWTEST_F()
/foundation/filemanagement/app_file_service/services/backup_sa/src/module_external/
H
A
D
bms_adapter.cpp
216
ofstream
incExcFile
;
in CreateIPCInteractionFiles()
local
217
incExcFile
.open(incExFilePath.data(), ios::out | ios::trunc);
in CreateIPCInteractionFiles()
218
if (!
incExcFile
.is_open()) {
in CreateIPCInteractionFiles()
222
incExcFile
<< BConstants::BACKUP_INCLUDE << endl;
in CreateIPCInteractionFiles()
224
incExcFile
<< include << endl;
in CreateIPCInteractionFiles()
226
incExcFile
<< BConstants::BACKUP_EXCLUDE << endl;
in CreateIPCInteractionFiles()
228
incExcFile
<< exclude << endl;
in CreateIPCInteractionFiles()
230
incExcFile
.close();
in CreateIPCInteractionFiles()
/foundation/filemanagement/storage_service/services/storage_daemon/quota/
H
A
D
quota_manager.cpp
310
std::ifstream
incExcFile
;
in ReadIncludesExcludesPath()
local
311
incExcFile
.open(filePath.data());
in ReadIncludesExcludesPath()
312
if (!
incExcFile
.is_open()) {
in ReadIncludesExcludesPath()
320
while (
incExcFile
) {
in ReadIncludesExcludesPath()
322
std::getline(
incExcFile
, line);
in ReadIncludesExcludesPath()
338
incExcFile
.close();
in ReadIncludesExcludesPath()
Completed in 5 milliseconds