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:STAT_MODE_REG
(Results
1 - 5
of
5
) sorted by relevance
/foundation/filemanagement/dfs_service/services/clouddisk_database/src/
H
A
D
clouddisk_rdb_utils.cpp
33
static const uint32_t
STAT_MODE_REG
= 0660;
member
118
info.mode = (info.IsDirectory) ? (S_IFDIR | STAT_MODE_DIR) : (S_IFREG |
STAT_MODE_REG
);
in FillFileInfo()
162
info.mode = (info.IsDirectory) ? (S_IFDIR | STAT_MODE_DIR) : (S_IFREG |
STAT_MODE_REG
);
in ResultSetToFileInfos()
H
A
D
clouddisk_rdbstore.cpp
61
static const uint32_t
STAT_MODE_REG
= 0660;
member
1714
m.mode = (info.IsDirectory) ? (S_IFDIR | STAT_MODE_DIR) : (S_IFREG |
STAT_MODE_REG
);
in GenerateDentryRecursively()
1765
m.mode = (info.IsDirectory) ? (S_IFDIR | STAT_MODE_DIR) : (S_IFREG |
STAT_MODE_REG
);
in GenerateRecycleDentryRecursively()
/foundation/filemanagement/dfs_service/test/unittests/cloud_disk/mock/
H
A
D
file_operations_cloud_mock.cpp
56
static const uint32_t
STAT_MODE_REG
= 0660;
member
231
int32_t fd = open(path.c_str(), (mode & O_NOFOLLOW) | O_CREAT | O_RDWR,
STAT_MODE_REG
);
in CreateLocalFile()
/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/cloud_disk/
H
A
D
file_operations_cloud.cpp
58
static const uint32_t
STAT_MODE_REG
= 0660;
member
92
childInode->stat.st_mode = S_IFREG |
STAT_MODE_REG
;
in InitInodeAttr()
423
int32_t fd = open(path.c_str(), (mode & O_NOFOLLOW) | O_CREAT | O_RDWR,
STAT_MODE_REG
);
in CreateLocalFile()
665
static const struct stat statInfoReg = { .st_mode = S_IFREG |
STAT_MODE_REG
};
in AddDirEntryToBuf()
/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/fuse_manager/
H
A
D
fuse_manager.cpp
82
static const unsigned int
STAT_MODE_REG
= 0770;
member
412
stbuf->st_mode = S_IFREG |
STAT_MODE_REG
;
in GetMetaAttr()
Completed in 10 milliseconds