| /base/print/print_fwk/interfaces/kits/napi/print_napi/include/ |
| H A D | napi_inner_print.h | 49 static napi_value NotifyPrintService(napi_env env, napi_callback_info info);
|
| /base/print/print_fwk/frameworks/innerkitsimpl/print_impl/include/ |
| H A D | iprint_service.h | 72 virtual int32_t NotifyPrintService(const std::string &jobId, const std::string &type) = 0;
|
| H A D | print_service_proxy.h | 65 int32_t NotifyPrintService(const std::string &jobId, const std::string &type) override;
|
| H A D | print_manager_client.h | 104 int32_t NotifyPrintService(const std::string &jobId, const std::string &type);
|
| /base/print/print_fwk/test/unittest/service_test/mock/ |
| H A D | mock_print_service.h | 144 int32_t NotifyPrintService(const std::string &jobId, const std::string &type) override
|
| /base/print/print_fwk/interfaces/kits/napi/print_napi/src/ |
| H A D | print_module.cpp | 346 PRINT_NAPI_METHOD(FUNCTION_NOTIFY_PRINT_SERVICE, NapiInnerPrint::NotifyPrintService), in Init()
|
| H A D | napi_inner_print.cpp | 640 napi_value NapiInnerPrint::NotifyPrintService(napi_env env, napi_callback_info info) in NotifyPrintService() function in OHOS::Print::NapiInnerPrint 642 PRINT_HILOGI("Enter NotifyPrintService---->"); in NotifyPrintService() 670 int32_t ret = PrintManagerClient::GetInstance()->NotifyPrintService(context->jobId, context->type); in NotifyPrintService() 673 PRINT_HILOGE("Failed to NotifyPrintService"); in NotifyPrintService()
|
| /base/print/print_fwk/frameworks/innerkitsimpl/print_impl/src/ |
| H A D | print_manager_client.cpp | 650 int32_t PrintManagerClient::NotifyPrintService(const std::string &jobId, const std::string &type) in NotifyPrintService() function in OHOS::Print::PrintManagerClient 653 PRINT_HILOGD("PrintManagerClient NotifyPrintService start."); in NotifyPrintService() 656 ret = printServiceProxy_->NotifyPrintService(jobId, type); in NotifyPrintService() 657 PRINT_HILOGD("PrintManagerClient NotifyPrintService out ret = [%{public}d].", ret); in NotifyPrintService()
|
| H A D | print_service_proxy.cpp | 928 int32_t PrintServiceProxy::NotifyPrintService(const std::string &jobId, const std::string &type) in NotifyPrintService() function in OHOS::Print::PrintServiceProxy 930 PRINT_HILOGD("PrintServiceProxy::NotifyPrintService in"); in NotifyPrintService() 939 PRINT_HILOGE("PrintServiceProxy NotifyPrintService remote is null"); in NotifyPrintService() 945 PRINT_HILOGD("PrintServiceProxy NotifyPrintService out. ret = [%{public}d]", ret); in NotifyPrintService()
|
| /base/print/print_fwk/services/print_service/include/ |
| H A D | print_service_ability.h | 91 int32_t NotifyPrintService(const std::string &jobId, const std::string &type) override;
|
| /base/print/print_fwk/test/unittest/fwk_print_service_ability_test/ |
| H A D | print_service_ability_test.cpp | 319 EXPECT_EQ(service->NotifyPrintService(printJobId, type), E_PRINT_NO_PERMISSION); in HWTEST_F() 819 EXPECT_EQ(service->NotifyPrintService(jobId, type), E_PRINT_NONE); in HWTEST_F() 821 EXPECT_EQ(service->NotifyPrintService(jobId, type), E_PRINT_NONE); in HWTEST_F() 823 EXPECT_EQ(service->NotifyPrintService(jobId, type), E_PRINT_NONE); in HWTEST_F() 825 EXPECT_EQ(service->NotifyPrintService(jobId, type), E_PRINT_INVALID_PARAMETER); in HWTEST_F()
|
| /base/print/print_fwk/services/print_service/src/ |
| H A D | print_service_stub.cpp | 743 int32_t ret = NotifyPrintService(jobId, type); in OnNotifyPrintService()
|
| H A D | print_service_ability.cpp | 2470 int32_t PrintServiceAbility::NotifyPrintService(const std::string &jobId, const std::string &type) in NotifyPrintService() function in OHOS::Print::PrintServiceAbility
|
| /base/print/print_fwk/test/unittest/fwk_inner_napi_test/ |
| H A D | print_manager_client_test.cpp | 2337 PrintManagerClient::GetInstance()->NotifyPrintService(jobId, type); in HWTEST_F() 2502 mockPrintManagerClient.NotifyPrintService(jobId, type); in HWTEST_F()
|
| /base/print/print_fwk/test/unittest/service_test/ |
| H A D | print_service_stub_test.cpp | 1137 ON_CALL(*stub, NotifyPrintService).WillByDefault(Return(E_PRINT_NONE)); in HWTEST_F()
|
| /base/print/print_fwk/test/fuzztest/printserviceability_fuzzer/ |
| H A D | printserviceability_fuzzer.cpp | 343 PrintServiceAbility::GetInstance()->NotifyPrintService(jobId, type); in TestNotifyPrintService()
|