Home
last modified time | relevance | path

Searched refs:indexs (Results 1 - 25 of 27) sorted by relevance

12

/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/test/unittest/common/distributedcameramgr/
H A Ddcamera_source_dev_test.cpp361 std::vector<DCameraIndex> indexs; in HWTEST_F() local
365 indexs.push_back(index); in HWTEST_F()
368 camDev_->controller_->Init(indexs); in HWTEST_F()
410 std::vector<DCameraIndex> indexs; in HWTEST_F() local
413 int32_t ret = camDev_->controller_->Init(indexs); in HWTEST_F()
418 indexs.push_back(index); in HWTEST_F()
433 std::vector<DCameraIndex> indexs; in HWTEST_F() local
437 indexs.push_back(index); in HWTEST_F()
440 camDev_->controller_->Init(indexs); in HWTEST_F()
466 std::vector<DCameraIndex> indexs; in HWTEST_F() local
506 std::vector<DCameraIndex> indexs; HWTEST_F() local
538 std::vector<DCameraIndex> indexs; HWTEST_F() local
573 std::vector<DCameraIndex> indexs; HWTEST_F() local
614 std::vector<DCameraIndex> indexs; HWTEST_F() local
[all...]
H A Dmock_dcamera_source_controller.h68 int32_t Init(std::vector<DCameraIndex>& indexs) in Init() argument
/foundation/communication/netmanager_base/services/netmanagernative/bpf/include/
H A Dbitmap_manager.h504 std::vector<uint32_t> indexs; in AddMap() local
505 SearchIntersection(start, end, indexs); in AddMap()
506 if (indexs.empty()) { in AddMap()
511 GetMapList(start, end, bitmap, indexs, list); in AddMap()
512 DeleteSegBitmap(indexs); in AddMap()
527 * @param indexs has intersection index value in exist map
529 void SearchIntersection(uint16_t start, uint16_t end, std::vector<uint32_t> &indexs) in SearchIntersection() argument
534 indexs.push_back(i); in SearchIntersection()
539 void DeleteSegBitmap(std::vector<uint32_t> &indexs) in DeleteSegBitmap() argument
541 if (indexs in DeleteSegBitmap()
610 GetMapList(uint16_t start, uint16_t end, const Bitmap &bitmap, std::vector<uint32_t> &indexs, std::vector<SegmentBitmap> &list) GetMapList() argument
[all...]
/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/include/distributedcameramgr/dcameradata/
H A Ddcamera_source_input.h40 int32_t OpenChannel(std::vector<DCameraIndex>& indexs) override;
53 int32_t EstablishContinuousFrameSession(std::vector<DCameraIndex>& indexs);
54 int32_t EstablishSnapshotFrameSession(std::vector<DCameraIndex>& indexs);
/foundation/resourceschedule/ffrt/tools/ffrt_trace_process/
H A Dffrt_trace_process.py683 indexs = []
685 indexs.append(m.span()[0])
686 if len(indexs) > 1:
688 for j in range(len(indexs)):
689 begin = indexs[j]
690 end = indexs[j + 1] if j + 1 < len(indexs) else len(log)
693 num_line += len(indexs) - 1
694 i += len(indexs) - 1
H A Dffrt_trace_recover.py198 indexs = [m.span()[0] for m in re.finditer("\S+-\d+\s+\(", log)]
200 if len(indexs) > 1:
202 for j in range(len(indexs)):
203 begin = indexs[j]
204 end = indexs[j + 1] if j + 1 < len(indexs) else len(log)
206 if j + 1 < len(indexs):
215 lineno += len(indexs) - 1
/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/src/distributedcameramgr/dcameradata/
H A Ddcamera_source_input.cpp178 int32_t DCameraSourceInput::OpenChannel(std::vector<DCameraIndex>& indexs) in OpenChannel() argument
184 int32_t ret = EstablishContinuousFrameSession(indexs); in OpenChannel()
192 int32_t ret = EstablishSnapshotFrameSession(indexs); in OpenChannel()
404 int32_t DCameraSourceInput::EstablishContinuousFrameSession(std::vector<DCameraIndex>& indexs) in EstablishContinuousFrameSession() argument
407 int32_t ret = channels_[CONTINUOUS_FRAME]->CreateSession(indexs, CONTINUE_SESSION_FLAG, DCAMERA_SESSION_MODE_VIDEO, in EstablishContinuousFrameSession()
421 int32_t DCameraSourceInput::EstablishSnapshotFrameSession(std::vector<DCameraIndex>& indexs) in EstablishSnapshotFrameSession() argument
424 int32_t ret = channels_[SNAPSHOT_FRAME]->CreateSession(indexs, SNAP_SHOT_SESSION_FLAG, DCAMERA_SESSION_MODE_JPEG, in EstablishSnapshotFrameSession()
/foundation/distributedhardware/distributed_camera/services/cameraservice/sinkservice/src/distributedcameramgr/
H A Ddcamera_sink_dev.cpp49 std::vector<DCameraIndex> indexs; in Init() local
50 indexs.push_back(index); in Init()
51 int32_t ret = controller_->Init(indexs); in Init()
H A Ddcamera_sink_controller.cpp257 std::vector<DCameraIndex> indexs; in OpenChannel() local
258 indexs.push_back(DCameraIndex(srcDevId_, dhId_)); in OpenChannel()
262 ret = channel_->CreateSession(indexs, SESSION_FLAG, DCAMERA_SESSION_MODE_CTRL, listener); in OpenChannel()
328 int32_t DCameraSinkController::Init(std::vector<DCameraIndex>& indexs) in Init() argument
331 dhId_ = indexs[0].dhId_; in Init()
384 std::vector<DCameraIndex> indexs; in CreateCtrlSession() local
385 indexs.push_back(DCameraIndex("", dhId_)); in CreateCtrlSession()
389 int32_t ret = channel_->CreateSession(indexs, SESSION_FLAG, DCAMERA_SESSION_MODE_CTRL, listener); in CreateCtrlSession()
H A Ddcamera_sink_output.cpp85 std::vector<DCameraIndex> indexs; in OpenChannel() local
86 indexs.push_back(DCameraIndex(info->sourceDevId_, dhId_)); in OpenChannel()
99 int32_t ret = iterCh->second->CreateSession(indexs, iter->dataSessionFlag_, modeMaps[iter->streamType_], in OpenChannel()
/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/include/distributedcameramgr/dcamerainterface/
H A Dicamera_input.h34 virtual int32_t OpenChannel(std::vector<DCameraIndex>& indexs) = 0;
/foundation/distributedhardware/distributed_camera/services/cameraservice/base/include/
H A Dicamera_controller.h42 virtual int32_t Init(std::vector<DCameraIndex>& indexs) = 0;
/foundation/distributedhardware/distributed_camera/services/cameraservice/sinkservice/test/unittest/common/distributedcameramgr/
H A Dmock_dcamera_sink_controller.h73 int32_t Init(std::vector<DCameraIndex>& indexs) in Init() argument
/foundation/multimedia/av_codec/services/media_engine/filters/
H A Dsurface_decoder_adapter.cpp369 std::vector<uint32_t> indexs; in ReleaseBuffer() local
376 indexs = indexs_; in ReleaseBuffer()
381 for (auto &index : indexs) { in ReleaseBuffer()
H A Dvideo_resize_filter.cpp496 std::vector<std::pair<uint32_t, uint32_t>> indexs; in ReleaseBuffer() local
502 indexs = indexs_; in ReleaseBuffer()
507 for (auto &index : indexs) { in ReleaseBuffer()
H A Dsurface_encoder_adapter.cpp625 std::vector<uint32_t> indexs; in ReleaseBuffer() local
631 indexs = indexs_; in ReleaseBuffer()
634 for (auto &index : indexs) { in ReleaseBuffer()
/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/src/distributedcameramgr/dcameracontrol/
H A Ddcamera_source_controller.cpp351 std::vector<DCameraIndex> indexs; in OpenChannel() local
352 indexs.push_back(DCameraIndex(devId, dhId)); in OpenChannel()
354 int32_t ret = channel_->CreateSession(indexs, SESSION_FLAG, DCAMERA_SESSION_MODE_CTRL, listener_); in OpenChannel()
401 int32_t DCameraSourceController::Init(std::vector<DCameraIndex>& indexs) in Init() argument
404 if (indexs.size() > DCAMERA_MAX_NUM) { in Init()
418 indexs_.assign(indexs.begin(), indexs.end()); in Init()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_picker/
H A Dtextpicker_pattern.cpp893 const std::vector<uint32_t>& indexs, int32_t status) const in GetSelectedObjectMulti()
907 const size_t indexSize = indexs.size(); in GetSelectedObjectMulti()
909 result += std::to_string(indexs[i]); in GetSelectedObjectMulti()
923 std::vector<uint32_t> indexs; in GetSelectedObject() local
944 indexs.emplace_back(index); in GetSelectedObject()
951 return std::string("{\"value\":") + "\"" + values[0] + "\"" + ",\"index\":" + std::to_string(indexs[0]) + in GetSelectedObject()
954 return GetSelectedObjectMulti(values, indexs, status); in GetSelectedObject()
958 values[0] + "\"" + ",\"newSelected\":" + std::to_string(indexs[0]) + in GetSelectedObject()
892 GetSelectedObjectMulti(const std::vector<std::string>& values, const std::vector<uint32_t>& indexs, int32_t status) const GetSelectedObjectMulti() argument
H A Dtextpicker_pattern.h506 const std::vector<uint32_t>& indexs, int32_t status) const;
/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/include/distributedcameramgr/dcameracontrol/
H A Ddcamera_source_controller.h46 int32_t Init(std::vector<DCameraIndex>& indexs) override;
/foundation/distributedhardware/distributed_camera/services/cameraservice/sinkservice/include/distributedcameramgr/
H A Ddcamera_sink_controller.h51 int32_t Init(std::vector<DCameraIndex>& indexs) override;
/foundation/distributeddatamgr/pasteboard/services/core/src/
H A Dpasteboard_service.cpp1122 std::vector<size_t> indexs; in CheckAppUriPermission() local
1131 indexs.emplace_back(i); in CheckAppUriPermission()
1150 for (size_t i = 0; i < indexs.size(); i++) { in CheckAppUriPermission()
1151 auto item = data.GetRecordAt(indexs[i]); in CheckAppUriPermission()
2145 std::vector<size_t> indexs; in GenerateDistributedUri() local
2162 indexs.emplace_back(i); in GenerateDistributedUri()
2175 for (size_t i = 0; i < indexs.size(); i++) { in GenerateDistributedUri()
2176 auto item = data.GetRecordAt(indexs[i]); in GenerateDistributedUri()
/foundation/arkui/ace_engine/test/unittest/core/pattern/text_picker/
H A Dtext_picker_Extend_test_ng.cpp919 auto onSelectedChange = [](const std::vector<double>& indexs) { in HWTEST_F()
920 for (auto index : indexs) { in HWTEST_F()
944 std::vector<double> indexs { 1.0 }; in HWTEST_F()
945 textPickerEventHub->FireChangeEvent(values, indexs); in HWTEST_F()
/foundation/arkui/ace_engine/test/unittest/core/pattern/navigation/
H A Dnavigation_branch_test_ng.cpp1748 int32_t indexs = 0; in HWTEST_F() local
1749 EXPECT_EQ(NavigationTitleUtil::CreatePopupDialogNode(frameNode, toolBarItems, indexs), nullptr); in HWTEST_F()
1787 int32_t indexs = 0; in HWTEST_F() local
1788 EXPECT_EQ(NavigationTitleUtil::CreatePopupDialogNode(frameNode, toolBarItems, indexs), nullptr); in HWTEST_F()
/foundation/CastEngine/castengine_wifi_display/services/mediachannel/
H A Dbuffer_dispatcher.cpp1129 std::string indexs; in EraseOldGopDatas() local
1133 indexs += std::to_string(keyIndex) + ", "; in EraseOldGopDatas()
1137 MEDIA_LOGD("current keyIndex: %{public}s.", indexs.c_str()); in EraseOldGopDatas()

Completed in 27 milliseconds

12