Home
last modified time | relevance | path

Searched refs:UnsupportedData (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/want/include/
H A Dwant_params.h44 class UnsupportedData {
51 ~UnsupportedData();
53 UnsupportedData();
54 UnsupportedData(const UnsupportedData &other);
55 UnsupportedData(UnsupportedData &&other);
57 UnsupportedData &operator=(const UnsupportedData &other);
58 UnsupportedData &operator=(UnsupportedData &&other);
114 void GetCachedUnsupportedData(std::vector<UnsupportedData> &cachedUnsuppertedData) const;
116 void SetCachedUnsupportedData(const std::vector<UnsupportedData> &cachedUnsuppertedData);
218 std::vector<UnsupportedData> cachedUnsupportedData_;
/ohos5.0/foundation/ability/ability_base/test/fuzztest/wantparamsfirst_fuzzer/
H A Dwantparamsfirst_fuzzer.cpp44 UnsupportedData other; in DoSomethingInterestingWithMyAPI()
45 std::shared_ptr<UnsupportedData> unsupportedData = std::make_shared<UnsupportedData>(other); in DoSomethingInterestingWithMyAPI()
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/want/src/
H A Dwant_params.cpp47 UnsupportedData::~UnsupportedData() in ~UnsupportedData()
55 UnsupportedData::UnsupportedData() = default;
57 UnsupportedData::UnsupportedData(const UnsupportedData &other) : key(other.key), type(other.type), … in UnsupportedData() function in OHOS::AAFwk::UnsupportedData
71 UnsupportedData::UnsupportedData(UnsupportedData &&other) in UnsupportedData() function in OHOS::AAFwk::UnsupportedData
79 UnsupportedData &UnsupportedData::operator=(const UnsupportedData &other) in operator =()
100 UnsupportedData &UnsupportedData::operator=(UnsupportedData &&other) in operator =()
738 for (const UnsupportedData &data : cachedUnsupportedData_) { in DoMarshalling()
1431 UnsupportedData data; in ReadUnsupportedData()
1590 void WantParams::GetCachedUnsupportedData(std::vector<UnsupportedData> &cachedUnsupportedData) const in GetCachedUnsupportedData()
1592 for (UnsupportedData item : cachedUnsupportedData_) { in GetCachedUnsupportedData()
[all …]
/ohos5.0/foundation/ability/ability_base/test/unittest/want/
H A Dwant_params_test.cpp1056 std::shared_ptr<UnsupportedData> unsupportedData_ = nullptr;
1067 unsupportedData_ = std::make_shared<UnsupportedData>(); in SetUp()
1207 UnsupportedData other;
1208 std::shared_ptr<UnsupportedData> unsupportedData = std::make_shared<UnsupportedData>(other);
1220 AAFwk::UnsupportedData data;
1226 std::vector<AAFwk::UnsupportedData> cacheData;
1229 std::vector<AAFwk::UnsupportedData> getCacheData;