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:streamInfoPre
(Results
1 - 14
of
14
) sorted by relevance
/drivers/peripheral/camera/test/ut/v4l2/
H
A
D
logic_camera_test.cpp
61
std::shared_ptr<StreamInfo>
streamInfoPre
= std::make_shared<StreamInfo>();
in TEST_F()
local
62
streamInfoPre
->streamId_ = cameraBase->STREAM_ID_PREVIEW;
in TEST_F()
63
streamInfoPre
->width_ = DEFAULT_TEST_WIDTH_VALUE;
in TEST_F()
64
streamInfoPre
->height_ = DEFAULT_TEST_HEIGHT_VALUE;
in TEST_F()
65
streamInfoPre
->format_ = CAMERA_FORMAT_YUYV_422_PKG;
in TEST_F()
66
streamInfoPre
->dataspace_ = DEFAULT_TEST_DATASPACE_VALUE;
in TEST_F()
67
streamInfoPre
->intent_ = PREVIEW;
in TEST_F()
68
streamInfoPre
->tunneledMode_ = DEFAULT_TEST_TUNNELEDMODE_VALUE;
in TEST_F()
69
streamInfoPre
->bufferQueue_ = producer;
in TEST_F()
70
cameraBase->streamInfos.push_back(
streamInfoPre
);
in TEST_F()
[all...]
H
A
D
test_camera_base.cpp
531
streamInfoPre
.streamId_ = STREAM_ID_PREVIEW;
in StartStream()
532
streamInfoPre
.width_ = PREVIEW_WIDTH; // 640:picture width
in StartStream()
533
streamInfoPre
.height_ = PREVIEW_HEIGHT; // 480:picture height
in StartStream()
534
streamInfoPre
.format_ = PIXEL_FMT_RGBA_8888;
in StartStream()
535
streamInfoPre
.dataspace_ = 8; // 8:picture dataspace
in StartStream()
536
streamInfoPre
.intent_ = intent;
in StartStream()
537
streamInfoPre
.tunneledMode_ = 5; // 5:tunnel mode
in StartStream()
538
streamInfoPre
.bufferQueue_ = new BufferProducerSequenceable(streamCustomerPreview_->CreateProducer());
in StartStream()
539
ASSERT_NE(
streamInfoPre
.bufferQueue_, nullptr);
in StartStream()
540
streamInfoPre
in StartStream()
[all...]
H
A
D
test_camera_base.h
112
StreamInfo
streamInfoPre
= {};
member in TestCameraBase
/drivers/peripheral/camera/test/hdi/v1_3/src/
H
A
D
camera_hdi_uttest_securestream_v1_3.cpp
69
cameraTest->
streamInfoPre
= std::make_shared<OHOS::HDI::Camera::V1_1::StreamInfo_V1_1>();
in HWTEST_F()
70
cameraTest->DefaultInfosPreview(cameraTest->
streamInfoPre
);
in HWTEST_F()
86
cameraTest->
streamInfoPre
->extendedStreamInfos = {extendedStreamInfo};
in HWTEST_F()
87
cameraTest->streamInfos.push_back(*(cameraTest->
streamInfoPre
));
in HWTEST_F()
H
A
D
camera_hdi_uttest_v1_3.cpp
114
cameraTest->
streamInfoPre
= std::make_shared<OHOS::HDI::Camera::V1_1::StreamInfo_V1_1>();
in CreateAndCommitStreamsForHighFrameRate()
115
cameraTest->DefaultInfosPreview(cameraTest->
streamInfoPre
);
in CreateAndCommitStreamsForHighFrameRate()
116
cameraTest->
streamInfoPre
->v1_0.width_ = STREAMINFO_WIDTH;
in CreateAndCommitStreamsForHighFrameRate()
117
cameraTest->
streamInfoPre
->v1_0.height_ = STREAMINFO_HEIGHT;
in CreateAndCommitStreamsForHighFrameRate()
118
cameraTest->streamInfosV1_1.push_back(*cameraTest->
streamInfoPre
);
in CreateAndCommitStreamsForHighFrameRate()
239
cameraTest->
streamInfoPre
= std::make_shared<OHOS::HDI::Camera::V1_1::StreamInfo_V1_1>();
in CreateAndCommitStreamsForSlowMotion()
240
cameraTest->DefaultInfosPreview(cameraTest->
streamInfoPre
);
in CreateAndCommitStreamsForSlowMotion()
241
cameraTest->
streamInfoPre
->v1_0.width_ = STREAMINFO_WIDTH;
in CreateAndCommitStreamsForSlowMotion()
242
cameraTest->
streamInfoPre
->v1_0.height_ = STREAMINFO_HEIGHT;
in CreateAndCommitStreamsForSlowMotion()
243
cameraTest->streamInfosV1_1.push_back(*cameraTest->
streamInfoPre
);
in CreateAndCommitStreamsForSlowMotion()
[all...]
H
A
D
camera_professional_uttest_v1_3.cpp
1493
cameraTest->
streamInfoPre
= std::make_shared<OHOS::HDI::Camera::V1_1::StreamInfo_V1_1>();
in HWTEST_F()
1494
cameraTest->DefaultInfosPreview(cameraTest->
streamInfoPre
);
in HWTEST_F()
1495
cameraTest->
streamInfoPre
->v1_0.width_ = g_supportedResolution[i][0];
in HWTEST_F()
1496
cameraTest->
streamInfoPre
->v1_0.height_ = g_supportedResolution[i][1];
in HWTEST_F()
1497
cameraTest->streamInfosV1_1.push_back(*cameraTest->
streamInfoPre
);
in HWTEST_F()
/drivers/peripheral/camera/test/benchmarktest/v1_0/src/
H
A
D
camera_benchmark_test.cpp
171
std::shared_ptr<StreamInfo>
streamInfoPre
= std::make_shared<StreamInfo>();
in BENCHMARK_F()
local
172
streamInfoPre
->streamId_ = cameraTest->streamIdPreview;
in BENCHMARK_F()
173
streamInfoPre
->width_ = cameraTest->previewWidth;
in BENCHMARK_F()
174
streamInfoPre
->height_ = cameraTest->previewHeight;
in BENCHMARK_F()
175
streamInfoPre
->format_ = cameraTest->previewFormat;
in BENCHMARK_F()
176
streamInfoPre
->dataspace_ = OHOS::Camera::UT_DATA_SIZE;
in BENCHMARK_F()
177
streamInfoPre
->intent_ = PREVIEW;
in BENCHMARK_F()
178
streamInfoPre
->tunneledMode_ = OHOS::Camera::UT_TUNNEL_MODE;
in BENCHMARK_F()
181
if (
streamInfoPre
->bufferQueue_ == nullptr) {
in BENCHMARK_F()
182
streamInfoPre
in BENCHMARK_F()
211
std::shared_ptr<StreamInfo>
streamInfoPre
= std::make_shared<StreamInfo>();
BENCHMARK_F()
local
[all...]
/drivers/peripheral/camera/test/hdi/v1_2/src/
H
A
D
camera_stream_uttest_v1_2.cpp
94
cameraTest->
streamInfoPre
= std::make_shared<OHOS::HDI::Camera::V1_1::StreamInfo_V1_1>();
in HWTEST_F()
95
cameraTest->DefaultInfosPreview(cameraTest->
streamInfoPre
);
in HWTEST_F()
96
cameraTest->streamInfosV1_1.push_back(*cameraTest->
streamInfoPre
);
in HWTEST_F()
150
cameraTest->
streamInfoPre
= std::make_shared<OHOS::HDI::Camera::V1_1::StreamInfo_V1_1>();
in HWTEST_F()
151
cameraTest->DefaultInfosPreview(cameraTest->
streamInfoPre
);
in HWTEST_F()
152
cameraTest->streamInfosV1_1.push_back(*cameraTest->
streamInfoPre
);
in HWTEST_F()
206
cameraTest->
streamInfoPre
= std::make_shared<OHOS::HDI::Camera::V1_1::StreamInfo_V1_1>();
in HWTEST_F()
207
cameraTest->DefaultInfosPreview(cameraTest->
streamInfoPre
);
in HWTEST_F()
208
cameraTest->streamInfosV1_1.push_back(*cameraTest->
streamInfoPre
);
in HWTEST_F()
/drivers/peripheral/camera/test/ut/usb_camera/
H
A
D
test_camera_base.cpp
553
streamInfoPre
.streamId_ = STREAM_ID_PREVIEW;
in StartStream()
554
streamInfoPre
.width_ = PREVIEW_WIDTH; // 640:picture width
in StartStream()
555
streamInfoPre
.height_ = PREVIEW_HEIGHT; // 480:picture height
in StartStream()
556
streamInfoPre
.format_ = PIXEL_FMT_RGBA_8888;
in StartStream()
557
streamInfoPre
.dataspace_ = 8; // 8:picture dataspace
in StartStream()
558
streamInfoPre
.intent_ = intent;
in StartStream()
559
streamInfoPre
.tunneledMode_ = 5; // 5:tunnel mode
in StartStream()
560
streamInfoPre
.bufferQueue_ = new BufferProducerSequenceable(streamCustomerPreview_->CreateProducer());
in StartStream()
561
ASSERT_NE(
streamInfoPre
.bufferQueue_, nullptr);
in StartStream()
562
streamInfoPre
in StartStream()
[all...]
/drivers/peripheral/camera/test/common/v1_3/src/
H
A
D
hdi_common_v1_3.cpp
190
streamInfoPre
= std::make_shared<OHOS::HDI::Camera::V1_1::StreamInfo_V1_1>();
in StartProfessionalStream()
196
DefaultInfosPreview(
streamInfoPre
);
in StartProfessionalStream()
197
streamInfos.push_back(*
streamInfoPre
);
in StartProfessionalStream()
241
streamInfoPre
= std::make_shared<OHOS::HDI::Camera::V1_1::StreamInfo_V1_1>();
in StartStream()
247
DefaultInfosPreview(
streamInfoPre
);
in StartStream()
248
streamInfos.push_back(*
streamInfoPre
);
in StartStream()
/drivers/peripheral/camera/test/common/v1_1/include/
H
A
D
hdi_common_v1_1.h
63
std::shared_ptr<StreamInfo_V1_1>
streamInfoPre
= nullptr;
member in OHOS::Camera::HdiCommonV1_1
/drivers/peripheral/camera/test/common/v1_1/src/
H
A
D
hdi_common_v1_1.cpp
220
streamInfoPre
= std::make_shared<StreamInfo_V1_1>();
in StartStream()
226
DefaultInfosPreview(
streamInfoPre
);
in StartStream()
227
streamInfos.push_back(*
streamInfoPre
);
in StartStream()
/drivers/peripheral/camera/test/common/v1_0/src/
H
A
D
hdi_common.cpp
259
streamInfoPre
= std::make_shared<StreamInfo>();
in StartStream()
265
DefaultInfosPreview(
streamInfoPre
);
in StartStream()
266
streamInfos.push_back(*
streamInfoPre
);
in StartStream()
/drivers/peripheral/camera/test/common/v1_0/include/
H
A
D
hdi_common.h
87
std::shared_ptr<StreamInfo>
streamInfoPre
= nullptr;
member in OHOS::Camera::HdiCommon
Completed in 13 milliseconds