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:dent
(Results
1 - 5
of
5
) sorted by relevance
/foundation/multimodalinput/input/intention/services/device_manager/src/
H
A
D
enumerator.cpp
51
struct dirent *
dent
;
in ScanAndAddDevices()
local
53
while ((
dent
= readdir(dir)) != nullptr) {
in ScanAndAddDevices()
54
const std::string devNode {
dent
->d_name };
in ScanAndAddDevices()
/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fs/properties/
H
A
D
rmdirent.cpp
72
uv_dirent_t
dent
;
73
while (uv_fs_scandir_next(scandir_req.get(), &
dent
) != UV_EOF) {
74
string filePath = fpath + "/" + string(
dent
.name);
75
if (
dent
.type == UV_DIRENT_FILE) {
87
} else if (
dent
.type == UV_DIRENT_DIR) {
/foundation/filemanagement/user_file_service/utils/
H
A
D
file_util.h
234
uv_dirent_t
dent
;
in RmDirent()
local
235
while (uv_fs_scandir_next(scandir_req.get(), &
dent
) != UV_EOF) {
in RmDirent()
236
string filePath = fpath + "/" + string(
dent
.name);
in RmDirent()
237
if (
dent
.type == UV_DIRENT_FILE) {
in RmDirent()
249
} else if (
dent
.type == UV_DIRENT_DIR) {
in RmDirent()
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/
H
A
D
wifi_manager.cpp
414
struct dirent *
dent
= nullptr;
in CheckAndStartSta()
local
424
while ((
dent
= readdir(dir)) != nullptr) {
in CheckAndStartSta()
425
if (
dent
->d_name[0] == '.') {
in CheckAndStartSta()
428
if (strncmp(
dent
->d_name, "wlan", strlen("wlan")) == 0) {
in CheckAndStartSta()
/foundation/filemanagement/file_api/interfaces/kits/cj/src/
H
A
D
file_fs_impl.cpp
343
uv_dirent_t
dent
;
in Rmdir()
local
344
while (uv_fs_scandir_next(scandir_req.get(), &
dent
) != UV_EOF) {
in Rmdir()
345
string filePath = path + "/" + string(
dent
.name);
in Rmdir()
346
if (
dent
.type == UV_DIRENT_FILE) {
in Rmdir()
358
} else if (
dent
.type == UV_DIRENT_DIR) {
in Rmdir()
Completed in 4 milliseconds