Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:StopPrint
(Results
1 - 15
of
15
) sorted by relevance
/base/print/print_fwk/test/unittest/service_test/mock/
H
A
D
mock_print_service.h
31
int32_t
StopPrint
(const std::string &taskId) override
219
MOCK_METHOD1(
StopPrint
, int32_t(const std::string&));
/base/print/print_fwk/frameworks/innerkitsimpl/print_impl/include/
H
A
D
iprint_service.h
37
virtual int32_t
StopPrint
(const std::string &taskId) = 0;
H
A
D
print_service_proxy.h
31
int32_t
StopPrint
(const std::string &taskId) override;
H
A
D
print_manager_client.h
50
int32_t
StopPrint
(const std::string &taskId);
/base/print/print_fwk/test/unittest/fwk_inner_napi_test/
H
A
D
print_manager_client_test.cpp
160
* @tc.desc:
StopPrint
failed case.
169
int32_t ret = PrintManagerClient::GetInstance()->
StopPrint
(testTaskId);
in HWTEST_F()
175
* @tc.desc:
StopPrint
failed case.
185
int32_t ret = PrintManagerClient::GetInstance()->
StopPrint
(testTaskId);
in HWTEST_F()
201
int32_t ret = PrintManagerClient::GetInstance()->
StopPrint
(testTaskId);
in HWTEST_F()
207
* @tc.desc:
StopPrint
succedd case.
216
EXPECT_CALL(*service,
StopPrint
(_)).Times(1);
in HWTEST_F()
217
ON_CALL(*service,
StopPrint
).WillByDefault(
in HWTEST_F()
226
int32_t ret = PrintManagerClient::GetInstance()->
StopPrint
(testTaskId);
in HWTEST_F()
2385
mockPrintManagerClient.
StopPrint
(testTaskI
in HWTEST_F()
[all...]
H
A
D
print_service_proxy_test.cpp
146
EXPECT_CALL(*service,
StopPrint
(_)).Times(Exactly(1)).WillOnce(
in HWTEST_F()
157
proxy->
StopPrint
(testTaskId);
in HWTEST_F()
/base/print/print_fwk/frameworks/innerkitsimpl/print_impl/src/
H
A
D
print_manager_client.cpp
113
int32_t PrintManagerClient::
StopPrint
(const std::string &taskId)
in StopPrint()
function in OHOS::Print::PrintManagerClient
116
PRINT_HILOGD("PrintManagerClient
StopPrint
start.");
in StopPrint()
119
ret = printServiceProxy_->
StopPrint
(taskId);
in StopPrint()
120
PRINT_HILOGD("PrintManagerClient
StopPrint
out ret = [%{public}d].", ret);
in StopPrint()
H
A
D
print_service_proxy.cpp
97
int32_t PrintServiceProxy::
StopPrint
(const std::string &taskId)
in StopPrint()
function in OHOS::Print::PrintServiceProxy
103
PRINT_HILOGD("PrintServiceProxy
StopPrint
started.");
in StopPrint()
106
PRINT_HILOGE("PrintServiceProxy
StopPrint
remote is null");
in StopPrint()
111
PRINT_HILOGD("PrintServiceProxy
StopPrint
out. ret = [%{public}d]", ret);
in StopPrint()
/base/print/print_fwk/interfaces/kits/napi/print_napi/src/
H
A
D
print_task.cpp
348
PrintManagerClient::GetInstance()->
StopPrint
(taskId_);
in Stop()
/base/print/print_fwk/services/print_service/include/
H
A
D
print_service_ability.h
56
int32_t
StopPrint
(const std::string &taskId) override;
/base/print/print_fwk/services/print_service/src/
H
A
D
print_service_stub.cpp
162
int32_t ret =
StopPrint
(taskId);
in OnStopPrint()
H
A
D
print_service_ability.cpp
319
int32_t PrintServiceAbility::
StopPrint
(const std::string &taskId)
in StopPrint()
function in OHOS::Print::PrintServiceAbility
326
PRINT_HILOGD("PrintServiceAbility
StopPrint
started.");
in StopPrint()
/base/print/print_fwk/test/unittest/fwk_print_service_ability_test/
H
A
D
print_service_ability_test.cpp
258
EXPECT_EQ(service->
StopPrint
(taskId), E_PRINT_NO_PERMISSION);
in HWTEST_F()
340
EXPECT_EQ(service->
StopPrint
(taskId), E_PRINT_NONE);
in HWTEST_F()
/base/print/print_fwk/test/unittest/service_test/
H
A
D
print_service_stub_test.cpp
217
ON_CALL(*stub,
StopPrint
).WillByDefault(Return(E_PRINT_NONE));
in HWTEST_F()
/base/print/print_fwk/test/fuzztest/printserviceability_fuzzer/
H
A
D
printserviceability_fuzzer.cpp
60
PrintServiceAbility::GetInstance()->
StopPrint
(taskId);
in TestStopPrint()
Completed in 28 milliseconds