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:devNode
(Results
1 - 9
of
9
) sorted by relevance
/foundation/multimodalinput/input/intention/services/device_manager/src/
H
A
D
enumerator.cpp
54
const std::string
devNode
{ dent->d_name };
in ScanAndAddDevices()
55
const std::string devPath { DEV_INPUT_PATH +
devNode
};
in ScanAndAddDevices()
64
AddDevice(
devNode
);
in ScanAndAddDevices()
70
void Enumerator::AddDevice(const std::string &
devNode
) const
in AddDevice()
74
devMgr_->AddDevice(
devNode
);
in AddDevice()
H
A
D
monitor.cpp
147
std::string
devNode
{ event->name };
in HandleInotifyEvent()
150
AddDevice(
devNode
);
in HandleInotifyEvent()
152
RemoveDevice(
devNode
);
in HandleInotifyEvent()
156
void Monitor::AddDevice(const std::string &
devNode
) const
in AddDevice()
160
devMgr_->AddDevice(
devNode
);
in AddDevice()
163
void Monitor::RemoveDevice(const std::string &
devNode
) const
in RemoveDevice()
167
devMgr_->RemoveDevice(
devNode
);
in RemoveDevice()
H
A
D
device_manager.cpp
50
void DeviceManager::HotplugHandler::AddDevice(const std::string &
devNode
)
in AddDevice()
argument
52
devMgr_.AddDevice(
devNode
);
in AddDevice()
55
void DeviceManager::HotplugHandler::RemoveDevice(const std::string &
devNode
)
in RemoveDevice()
argument
57
devMgr_.RemoveDevice(
devNode
);
in RemoveDevice()
158
int32_t DeviceManager::ParseDeviceId(const std::string &
devNode
)
in ParseDeviceId()
argument
164
if (std::regex_match(
devNode
, mr, pattern)) {
in ParseDeviceId()
172
std::shared_ptr<IDevice> DeviceManager::AddDevice(const std::string &
devNode
)
in AddDevice()
argument
176
const std::string devPath { DEV_INPUT_PATH +
devNode
};
in AddDevice()
188
int32_t deviceId = ParseDeviceId(
devNode
);
in AddDevice()
190
FI_HILOGE("Parsing device name failed:%{public}s",
devNode
in AddDevice()
222
RemoveDevice(const std::string &
devNode
)
RemoveDevice()
argument
[all...]
/foundation/multimodalinput/input/intention/services/test/unittest/src/
H
A
D
enumerator_test.cpp
62
void AddDevice(const std::string &
devNode
) override
64
devMgr_.DeviceManager::AddDevice(
devNode
);
66
void RemoveDevice(const std::string &
devNode
) override
68
devMgr_.DeviceManager::RemoveDevice(
devNode
);
H
A
D
monitor_test.cpp
62
void AddDevice(const std::string &
devNode
) override
64
devMgr_.DeviceManager::AddDevice(
devNode
);
66
void RemoveDevice(const std::string &
devNode
) override
68
devMgr_.DeviceManager::RemoveDevice(
devNode
);
/foundation/multimodalinput/input/intention/services/device_manager/include/
H
A
D
device_manager.h
64
void AddDevice(const std::string &
devNode
) override;
65
void RemoveDevice(const std::string &
devNode
) override;
76
int32_t ParseDeviceId(const std::string &
devNode
);
84
std::shared_ptr<IDevice> AddDevice(const std::string &
devNode
);
85
std::shared_ptr<IDevice> RemoveDevice(const std::string &
devNode
);
H
A
D
i_device_mgr.h
24
virtual void AddDevice(const std::string &
devNode
) = 0;
25
virtual void RemoveDevice(const std::string &
devNode
) = 0;
H
A
D
monitor.h
50
void AddDevice(const std::string &
devNode
) const;
51
void RemoveDevice(const std::string &
devNode
) const;
H
A
D
enumerator.h
39
void AddDevice(const std::string &
devNode
) const;
Completed in 3 milliseconds