/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/test/core/ |
A D | executor_ut.cc | 34 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 D | runnable_ut.cc | 16 TEST(Runnable, basic) { in TEST() argument 18 Runnable f(func); in TEST()
|
A D | commonclient_ut.cc | 154 Runnable* rf = new Runnable(func); in TEST()
|
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/facebody/src/ |
A D | FacebodyClient.cc | 75 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 D | OcrClient.cc | 75 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 D | ImagesegClient.cc | 75 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 D | ImageenhanClient.cc | 75 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 D | ObjectdetClient.cc | 75 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 D | ImagerecogClient.cc | 75 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 D | Runnable.cc | 21 Runnable::Runnable(const std::function<void()> f) : f_(f) {} in Runnable() function in AlibabaCloud::Runnable 23 void Runnable::run() const { f_(); } in run()
|
A D | Executor.h | 28 class Runnable; variable 35 void execute(Runnable *task); 44 std::queue<Runnable *> tasksQueue_;
|
A D | Executor.cc | 44 Runnable *task = nullptr; in start() 73 void Executor::execute(Runnable *task) { in execute()
|
A D | CoreClient.cc | 45 void CoreClient::asyncExecute(Runnable *r) const { in asyncExecute()
|
A D | CommonClient.cc | 87 asyncExecute(new Runnable(fn)); in commonResponseAsync() 95 asyncExecute(new Runnable([task]() { (*task)(); })); in commonResponseCallable()
|
/AliOS-Things-master/components/oss/src/utils/ |
A D | Runnable.cc | 21 Runnable::Runnable(const std::function<void()> f) : in Runnable() function in Runnable 26 void Runnable::run() const in run()
|
A D | ThreadExecutor.h | 30 void execute(Runnable* task);
|
A D | ThreadExecutor.cc | 47 void ThreadExecutor::execute(Runnable* task) in execute()
|
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/src/sts/ |
A D | StsClient.cc | 69 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 D | Runnable.h | 24 class ALIBABACLOUD_CORE_EXPORT Runnable { 26 explicit Runnable(const std::function<void()> f);
|
A D | CoreClient.h | 51 void asyncExecute(Runnable *r) const;
|
/AliOS-Things-master/components/oss/include/alibabacloud/oss/utils/ |
A D | Runnable.h | 26 class ALIBABACLOUD_OSS_EXPORT Runnable 29 explicit Runnable(const std::function<void()> f);
|
A D | Executor.h | 38 virtual void execute(Runnable* task) = 0;
|
/AliOS-Things-master/components/oss/src/encryption/ |
A D | OssEncryptionClient.cc | 407 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 D | OssClient.cc | 780 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 D | LocationClient.cc | 80 asyncExecute(new Runnable([task]() { (*task)(); })); in describeEndpointsCallable()
|