Home
last modified time | relevance | path

Searched refs:Runnable (Results 1 – 25 of 28) sorted by relevance

12

/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/test/core/
A Dexecutor_ut.cc34 Runnable* rf0 = new Runnable(func0); in TEST()
35 Runnable* rf1 = new Runnable(func1); in TEST()
36 Runnable* rf2 = new Runnable(func2); in TEST()
59 rf0 = new Runnable(func0); in TEST()
60 rf1 = new Runnable(func1); in TEST()
61 rf2 = new Runnable(func2); in TEST()
A Drunnable_ut.cc16 TEST(Runnable, basic) { in TEST() argument
18 Runnable f(func); in TEST()
A Dcommonclient_ut.cc154 Runnable* rf = new Runnable(func); in TEST()
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/facebody/src/
A DFacebodyClient.cc75 asyncExecute(new Runnable(fn)); in addFaceAsync()
111 asyncExecute(new Runnable(fn)); in addFaceEntityAsync()
147 asyncExecute(new Runnable(fn)); in blurFaceAsync()
183 asyncExecute(new Runnable(fn)); in bodyPostureAsync()
219 asyncExecute(new Runnable(fn)); in compareFaceAsync()
255 asyncExecute(new Runnable(fn)); in countCrowdAsync()
291 asyncExecute(new Runnable(fn)); in createFaceDbAsync()
327 asyncExecute(new Runnable(fn)); in deleteFaceAsync()
363 asyncExecute(new Runnable(fn)); in deleteFaceDbAsync()
399 asyncExecute(new Runnable(fn)); in deleteFaceEntityAsync()
[all …]
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/ocr/src/
A DOcrClient.cc75 asyncExecute(new Runnable(fn)); in detectCardScreenshotAsync()
111 asyncExecute(new Runnable(fn)); in getAsyncJobResultAsync()
147 asyncExecute(new Runnable(fn)); in recognizeAccountPageAsync()
183 asyncExecute(new Runnable(fn)); in recognizeBankCardAsync()
219 asyncExecute(new Runnable(fn)); in recognizeBusinessCardAsync()
255 asyncExecute(new Runnable(fn)); in recognizeBusinessLicenseAsync()
291 asyncExecute(new Runnable(fn)); in recognizeCharacterAsync()
327 asyncExecute(new Runnable(fn)); in recognizeChinapassportAsync()
363 asyncExecute(new Runnable(fn)); in recognizeDriverLicenseAsync()
399 asyncExecute(new Runnable(fn)); in recognizeDrivingLicenseAsync()
[all …]
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/imageseg/src/
A DImagesegClient.cc75 asyncExecute(new Runnable(fn)); in changeSkyAsync()
111 asyncExecute(new Runnable(fn)); in getAsyncJobResultAsync()
147 asyncExecute(new Runnable(fn)); in parseFaceAsync()
183 asyncExecute(new Runnable(fn)); in refineMaskAsync()
219 asyncExecute(new Runnable(fn)); in segmentAnimalAsync()
255 asyncExecute(new Runnable(fn)); in segmentBodyAsync()
291 asyncExecute(new Runnable(fn)); in segmentClothAsync()
327 asyncExecute(new Runnable(fn)); in segmentCommodityAsync()
363 asyncExecute(new Runnable(fn)); in segmentCommonImageAsync()
399 asyncExecute(new Runnable(fn)); in segmentFaceAsync()
[all …]
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/imageenhan/src/
A DImageenhanClient.cc75 asyncExecute(new Runnable(fn)); in assessCompositionAsync()
111 asyncExecute(new Runnable(fn)); in assessExposureAsync()
147 asyncExecute(new Runnable(fn)); in assessSharpnessAsync()
183 asyncExecute(new Runnable(fn)); in changeImageSizeAsync()
219 asyncExecute(new Runnable(fn)); in colorizeImageAsync()
255 asyncExecute(new Runnable(fn)); in enhanceImageColorAsync()
291 asyncExecute(new Runnable(fn)); in erasePersonAsync()
327 asyncExecute(new Runnable(fn)); in extendImageStyleAsync()
363 asyncExecute(new Runnable(fn)); in generateDynamicImageAsync()
399 asyncExecute(new Runnable(fn)); in getAsyncJobResultAsync()
[all …]
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/objectdet/src/
A DObjectdetClient.cc75 asyncExecute(new Runnable(fn)); in classifyVehicleInsuranceAsync()
111 asyncExecute(new Runnable(fn)); in detectMainBodyAsync()
147 asyncExecute(new Runnable(fn)); in detectObjectAsync()
183 asyncExecute(new Runnable(fn)); in detectTransparentImageAsync()
219 asyncExecute(new Runnable(fn)); in detectVehicleAsync()
255 asyncExecute(new Runnable(fn)); in detectWhiteBaseImageAsync()
291 asyncExecute(new Runnable(fn)); in generateVehicleRepairPlanAsync()
327 asyncExecute(new Runnable(fn)); in getVehicleRepairPlanAsync()
363 asyncExecute(new Runnable(fn)); in recognizeVehicleDamageAsync()
399 asyncExecute(new Runnable(fn)); in recognizeVehicleDashboardAsync()
[all …]
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/imagerecog/src/
A DImagerecogClient.cc75 asyncExecute(new Runnable(fn)); in classifyingRubbishAsync()
86 asyncExecute(new Runnable([task]() { (*task)(); })); in classifyingRubbishCallable()
111 asyncExecute(new Runnable(fn)); in detectFruitsAsync()
122 asyncExecute(new Runnable([task]() { (*task)(); })); in detectFruitsCallable()
147 asyncExecute(new Runnable(fn)); in detectImageElementsAsync()
183 asyncExecute(new Runnable(fn)); in recognizeImageColorAsync()
219 asyncExecute(new Runnable(fn)); in recognizeImageStyleAsync()
255 asyncExecute(new Runnable(fn)); in recognizeLogoAsync()
291 asyncExecute(new Runnable(fn)); in recognizeSceneAsync()
327 asyncExecute(new Runnable(fn)); in recognizeVehicleTypeAsync()
[all …]
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/src/
A DRunnable.cc21 Runnable::Runnable(const std::function<void()> f) : f_(f) {} in Runnable() function in AlibabaCloud::Runnable
23 void Runnable::run() const { f_(); } in run()
A DExecutor.h28 class Runnable; variable
35 void execute(Runnable *task);
44 std::queue<Runnable *> tasksQueue_;
A DExecutor.cc44 Runnable *task = nullptr; in start()
73 void Executor::execute(Runnable *task) { in execute()
A DCoreClient.cc45 void CoreClient::asyncExecute(Runnable *r) const { in asyncExecute()
A DCommonClient.cc87 asyncExecute(new Runnable(fn)); in commonResponseAsync()
95 asyncExecute(new Runnable([task]() { (*task)(); })); in commonResponseCallable()
/AliOS-Things-master/components/oss/src/utils/
A DRunnable.cc21 Runnable::Runnable(const std::function<void()> f) : in Runnable() function in Runnable
26 void Runnable::run() const in run()
A DThreadExecutor.h30 void execute(Runnable* task);
A DThreadExecutor.cc47 void ThreadExecutor::execute(Runnable* task) in execute()
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/src/sts/
A DStsClient.cc69 asyncExecute(new Runnable(fn)); in assumeRoleAsync()
77 asyncExecute(new Runnable([task]() { (*task)(); })); in assumeRoleCallable()
99 asyncExecute(new Runnable(fn)); in getCallerIdentityAsync()
108 asyncExecute(new Runnable([task]() { (*task)(); })); in getCallerIdentityCallable()
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/include/alibabacloud/core/
A DRunnable.h24 class ALIBABACLOUD_CORE_EXPORT Runnable {
26 explicit Runnable(const std::function<void()> f);
A DCoreClient.h51 void asyncExecute(Runnable *r) const;
/AliOS-Things-master/components/oss/include/alibabacloud/oss/utils/
A DRunnable.h26 class ALIBABACLOUD_OSS_EXPORT Runnable
29 explicit Runnable(const std::function<void()> f);
A DExecutor.h38 virtual void execute(Runnable* task) = 0;
/AliOS-Things-master/components/oss/src/encryption/
A DOssEncryptionClient.cc407 client_->asyncExecute(new Runnable(fn)); in GetObjectAsync()
417 client_->asyncExecute(new Runnable(fn)); in PutObjectAsync()
427 client_->asyncExecute(new Runnable(fn)); in UploadPartAsync()
437 client_->asyncExecute(new Runnable(fn)); in UploadPartCopyAsync()
448 client_->asyncExecute(new Runnable([task]() { (*task)(); })); in GetObjectCallable()
459 client_->asyncExecute(new Runnable([task]() { (*task)(); })); in PutObjectCallable()
470 client_->asyncExecute(new Runnable([task]() { (*task)(); })); in UploadPartCallable()
481 client_->asyncExecute(new Runnable([task]() { (*task)(); })); in UploadPartCopyCallable()
/AliOS-Things-master/components/oss/src/
A DOssClient.cc780 client_->asyncExecute(new Runnable(fn)); in ListObjectsAsync()
790 client_->asyncExecute(new Runnable(fn)); in GetObjectAsync()
800 client_->asyncExecute(new Runnable(fn)); in PutObjectAsync()
810 client_->asyncExecute(new Runnable(fn)); in UploadPartAsync()
820 client_->asyncExecute(new Runnable(fn)); in UploadPartCopyAsync()
832 client_->asyncExecute(new Runnable([task]() { (*task)(); })); in ListObjectsCallable()
843 client_->asyncExecute(new Runnable([task]() { (*task)(); })); in GetObjectCallable()
855 client_->asyncExecute(new Runnable([task]() { (*task)(); })); in PutObjectCallable()
866 client_->asyncExecute(new Runnable([task]() { (*task)(); })); in UploadPartCallable()
877 client_->asyncExecute(new Runnable([task]() { (*task)(); })); in UploadPartCopyCallable()
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/src/location/
A DLocationClient.cc80 asyncExecute(new Runnable([task]() { (*task)(); })); in describeEndpointsCallable()

Completed in 50 milliseconds

12