Home
last modified time | relevance | path

Searched refs:owners_ (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/base/account/os_account/frameworks/appaccount/native/src/
H A Dapp_account_subscribe_info.cpp25 AppAccountSubscribeInfo::AppAccountSubscribeInfo(std::vector<std::string> &owners) : owners_(owners) in AppAccountSubscribeInfo()
30 owners = owners_; in GetOwners()
37 owners_ = owners; in SetOwners()
44 if (!parcel.WriteStringVector(owners_)) { in Marshalling()
67 if (!parcel.ReadStringVector(&owners_)) { in ReadFromParcel()
/ohos5.0/drivers/peripheral/camera/vdi_base/v4l2/src/stream_operator/
H A Dcapture_request.cpp37 owners_.clear(); in ~CaptureRequest()
46 owners_[stream->GetStreamId()] = stream; in AddOwner()
54 auto stream = owners_[id].lock(); in Process()
63 auto stream = owners_[id].lock(); in OnResult()
88 for (auto it : owners_) { in Cancel()
/ohos5.0/base/account/os_account/services/accountmgr/test/unittest/app_account/
H A Dapp_account_subscribe_info_test.cpp104 EXPECT_EQ(owners.size(), subscribeInfo.owners_.size());
106 EXPECT_EQ(owners.front(), subscribeInfo.owners_.front());
/ohos5.0/base/account/os_account/frameworks/appaccount/native/include/
H A Dapp_account_subscribe_info.h40 std::vector<std::string> owners_;
/ohos5.0/drivers/peripheral/camera/vdi_base/v4l2/include/stream_operator/
H A Dcapture_request.h75 std::map<int32_t, std::weak_ptr<IStream>> owners_ = {}; variable