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:curFsmState_
(Results
1 - 4
of
4
) sorted by relevance
/foundation/multimedia/media_foundation/engine/scene/recorder/standard/
H
A
D
hirecorder_impl.cpp
38
fsm_(*this),
curFsmState_
(StateId::INIT)
in HiRecorderImpl()
192
if (
curFsmState_
== StateId::RECORDING_SETTING) { // Wait state change to ready
in Prepare()
193
cond_.Wait(lock, [this] { return
curFsmState_
!= StateId::RECORDING_SETTING; });
in Prepare()
197
if (
curFsmState_
== StateId::READY) {
in Prepare()
211
if (
curFsmState_
== StateId::PAUSE) {
in Start()
253
return
curFsmState_
== StateId::ERROR ||
curFsmState_
== StateId::INIT;
in Stop()
255
FALSE_RETURN_V_MSG_E(
curFsmState_
== StateId::INIT, ERR_UNKNOWN_REASON, "stop fail");
in Stop()
264
if (
curFsmState_
== StateId::RECORDING) {
in Reset()
307
MEDIA_LOG_I("OnStateChanged from " PUBLIC_LOG_D32 " to " PUBLIC_LOG_D32,
curFsmState_
in OnStateChanged()
[all...]
H
A
D
hirecorder_impl.h
106
std::atomic<StateId>
curFsmState_
;
member in OHOS::Media::Record::HiRecorderImpl
/foundation/multimedia/media_foundation/engine/scene/player/lite/
H
A
D
hiplayer_impl.cpp
33
curFsmState_
(StateId::IDLE),
in HiPlayerImpl()
158
if (
curFsmState_
== StateId::PREPARING) { // Wait state change to ready
in Prepare()
159
cond_.Wait(lock, [this] { return
curFsmState_
!= StateId::PREPARING; });
in Prepare()
163
if (
curFsmState_
== StateId::READY) {
in Prepare()
622
MEDIA_LOG_I("OnStateChanged from " PUBLIC_LOG_D32 " to " PUBLIC_LOG_D32,
curFsmState_
.load(), state);
in OnStateChanged()
626
curFsmState_
= state;
in OnStateChanged()
H
A
D
hiplayer_impl.h
137
std::atomic<StateId>
curFsmState_
;
member in OHOS::Media::HiPlayerImpl
Completed in 4 milliseconds