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:hasFlash
(Results
1 - 11
of
11
) sorted by relevance
/foundation/multimedia/camera_framework/frameworks/native/ndk/impl/
H
A
D
capture_session_impl.h
96
Camera_ErrorCode HasFlash(bool*
hasFlash
);
H
A
D
capture_session_impl.cpp
433
Camera_ErrorCode Camera_CaptureSession::HasFlash(bool*
hasFlash
)
in HasFlash()
argument
437
*
hasFlash
= innerCaptureSession_->HasFlash();
in HasFlash()
/foundation/multimedia/camera_framework/frameworks/native/ndk/
H
A
D
capture_session.cpp
344
Camera_ErrorCode OH_CaptureSession_HasFlash(Camera_CaptureSession* session, bool*
hasFlash
)
in OH_CaptureSession_HasFlash()
argument
347
CHECK_AND_RETURN_RET_LOG(
hasFlash
!= nullptr, CAMERA_INVALID_ARGUMENT, "Invaild argument,
hasFlash
is null!");
in OH_CaptureSession_HasFlash()
349
return session->HasFlash(
hasFlash
);
in OH_CaptureSession_HasFlash()
/foundation/multimedia/camera_framework/interfaces/inner_api/native/camera/include/session/
H
A
D
profession_session.h
239
int32_t HasFlash(bool&
hasFlash
);
H
A
D
capture_session.h
863
int32_t HasFlash(bool&
hasFlash
);
/foundation/multimedia/camera_framework/interfaces/kits/native/include/camera/
H
A
D
capture_session.h
388
* @param
hasFlash
the result of whether flash supported.
394
Camera_ErrorCode OH_CaptureSession_HasFlash(Camera_CaptureSession* session, bool*
hasFlash
);
/foundation/multimedia/camera_framework/frameworks/native/camera/test/ndktest/camera_ndk_demo/entry/src/main/cpp/
H
A
D
camera_manager.cpp
135
bool
hasFlash
= false;
in HasFlashFn()
local
136
Camera_ErrorCode ret = OH_CaptureSession_HasFlash(captureSession_, &
hasFlash
);
in HasFlashFn()
140
if (
hasFlash
) {
in HasFlashFn()
141
OH_LOG_INFO(LOG_APP, "
hasFlash
succeeed");
in HasFlashFn()
143
OH_LOG_ERROR(LOG_APP, "
hasFlash
failed");
in HasFlashFn()
/foundation/multimedia/camera_framework/test/fuzztest/capturesession_fuzzer/
H
A
D
capture_session_fuzzer.cpp
283
bool
hasFlash
;
in TestFlash()
local
284
session->HasFlash(
hasFlash
);
in TestFlash()
/foundation/multimedia/camera_framework/frameworks/native/camera/src/session/
H
A
D
profession_session.cpp
666
int32_t ProfessionSession::HasFlash(bool &
hasFlash
)
in HasFlash()
argument
668
hasFlash
= false;
in HasFlash()
675
hasFlash
= true;
in HasFlash()
H
A
D
capture_session.cpp
2465
bool
hasFlash
= false;
in HasFlash()
local
2466
HasFlash(
hasFlash
);
in HasFlash()
2467
return
hasFlash
;
in HasFlash()
2470
int32_t CaptureSession::HasFlash(bool&
hasFlash
)
in HasFlash()
argument
2472
hasFlash
= false;
in HasFlash()
2480
hasFlash
= true;
in HasFlash()
/foundation/multimedia/camera_framework/frameworks/native/camera/test/moduletest/src/
H
A
D
camera_framework_moduletest.cpp
4944
bool
hasFlash
= camSession->HasFlash();
in HWTEST_F()
local
4945
EXPECT_EQ(
hasFlash
, false);
in HWTEST_F()
4947
int32_t isFlash = camSession->HasFlash(
hasFlash
);
in HWTEST_F()
4991
isFlash = camSession->HasFlash(
hasFlash
);
in HWTEST_F()
Completed in 35 milliseconds