Home
last modified time | relevance | path

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

/AliOS-Things-master/components/oss/include/alibabacloud/oss/
A DOssClient.h59 …nst AlibabaCloud::OSS::OssClient*, const ListObjectsRequest&, const ListObjectOutcome&, const std:…
66 using ListObjectOutcomeCallable = std::future<ListObjectOutcome>;
165 ListObjectOutcome ListObjects(const std::string& bucket) const;
166 ListObjectOutcome ListObjects(const std::string& bucket, const std::string& prefix) const;
167 ListObjectOutcome ListObjects(const ListObjectsRequest& request) const;
A DOssFwd.h212 using ListObjectOutcome = Outcome<OssError, ListObjectsResult>; variable
/AliOS-Things-master/components/oss/src/
A DOssClient.cc460 ListObjectOutcome OssClient::ListObjects(const std::string &bucket) const in ListObjects()
465 ListObjectOutcome OssClient::ListObjects(const std::string &bucket, const std::string &prefix) const in ListObjects()
472 ListObjectOutcome OssClient::ListObjects(const ListObjectsRequest &request) const in ListObjects()
827 auto task = std::make_shared<std::packaged_task<ListObjectOutcome()>>( in ListObjectsCallable()
A DOssClientImpl.h97 ListObjectOutcome ListObjects(const ListObjectsRequest &request) const;
A DOssClientImpl.cc945 ListObjectOutcome OssClientImpl::ListObjects(const ListObjectsRequest &request) const in ListObjects()
951 return result.ParseDone() ? ListObjectOutcome(std::move(result)) : in ListObjects()
952 ListObjectOutcome(OssError("ParseXMLError", "Parsing ListObject result fail.")); in ListObjects()
955 return ListObjectOutcome(outcome.error()); in ListObjects()

Completed in 12 milliseconds