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:printerIds
(Results
1 - 16
of
16
) sorted by relevance
/base/print/print_fwk/interfaces/kits/napi/print_napi/include/
H
A
D
napi_print_ext.h
55
std::vector<std::string>
printerIds
;
member
/base/print/print_fwk/services/print_service/src/
H
A
D
print_service_stub.cpp
358
std::vector<std::string>
printerIds
;
in OnRemovePrinters()
local
359
data.ReadStringVector(&
printerIds
);
in OnRemovePrinters()
360
PRINT_HILOGD("OnStartDiscoverPrinter len = %{public}zd",
printerIds
.size());
in OnRemovePrinters()
362
if (
printerIds
.size() > PRINT_MAX_PRINT_COUNT) {
in OnRemovePrinters()
363
PRINT_HILOGE("
printerIds
'size is out of range.");
in OnRemovePrinters()
367
int32_t ret = RemovePrinters(
printerIds
);
in OnRemovePrinters()
H
A
D
print_service_ability.cpp
1468
int32_t PrintServiceAbility::RemovePrinters(const std::vector<std::string> &
printerIds
)
in RemovePrinters()
argument
1481
for (const auto& printerId :
printerIds
) {
in RemovePrinters()
/base/print/print_fwk/frameworks/innerkitsimpl/print_impl/include/
H
A
D
iprint_service.h
46
virtual int32_t RemovePrinters(const std::vector<std::string> &
printerIds
) = 0;
H
A
D
print_service_proxy.h
40
int32_t RemovePrinters(const std::vector<std::string> &
printerIds
) override;
H
A
D
print_manager_client.h
55
int32_t RemovePrinters(const std::vector<std::string> &
printerIds
);
/base/print/print_fwk/test/unittest/service_test/
H
A
D
print_service_stub_test.cpp
499
std::vector<std::string>
printerIds
;
in HWTEST_F()
local
500
printerIds
.resize(1001);
in HWTEST_F()
503
EXPECT_TRUE(data.WriteStringVector(
printerIds
));
in HWTEST_F()
525
std::vector<std::string>
printerIds
;
in HWTEST_F()
local
526
printerIds
.emplace_back(testPrinterId);
in HWTEST_F()
529
EXPECT_TRUE(data.WriteStringVector(
printerIds
));
in HWTEST_F()
/base/print/print_fwk/test/unittest/service_test/mock/
H
A
D
mock_print_service.h
67
int32_t RemovePrinters(const std::vector<std::string> &
printerIds
) override
/base/print/print_fwk/interfaces/kits/napi/print_napi/src/
H
A
D
napi_print_ext.cpp
99
context->
printerIds
.emplace_back(printerId);
in RemovePrinters()
102
if (context->
printerIds
.empty()) {
in RemovePrinters()
115
int32_t ret = PrintManagerClient::GetInstance()->RemovePrinters(context->
printerIds
);
in RemovePrinters()
/base/print/print_fwk/test/unittest/fwk_print_service_ability_test/
H
A
D
print_service_ability_test.cpp
290
std::vector<std::string>
printerIds
;
in HWTEST_F()
local
291
EXPECT_EQ(service->RemovePrinters(
printerIds
), E_PRINT_NO_PERMISSION);
in HWTEST_F()
485
std::vector<std::string>
printerIds
;
in HWTEST_F()
local
486
InitExtPrinterIdList(
printerIds
, 1);
in HWTEST_F()
488
info->SetPrinterId(
printerIds
[0]);
in HWTEST_F()
489
std::string printerId =
printerIds
[0];
in HWTEST_F()
491
EXPECT_EQ(service->RemovePrinters(
printerIds
), E_PRINT_NONE);
in HWTEST_F()
/base/print/print_fwk/frameworks/innerkitsimpl/print_impl/src/
H
A
D
print_manager_client.cpp
221
int32_t PrintManagerClient::RemovePrinters(const std::vector<std::string> &
printerIds
)
in RemovePrinters()
argument
227
ret = printServiceProxy_->RemovePrinters(
printerIds
);
in RemovePrinters()
H
A
D
print_service_proxy.cpp
278
int32_t PrintServiceProxy::RemovePrinters(const std::vector<std::string> &
printerIds
)
in RemovePrinters()
argument
283
data.WriteStringVector(
printerIds
);
in RemovePrinters()
/base/print/print_fwk/test/unittest/fwk_inner_napi_test/
H
A
D
print_service_proxy_test.cpp
418
[&testPrinterIds](const std::vector<std::string> &
printerIds
) {
in HWTEST_F()
419
EXPECT_EQ(testPrinterIds.size(),
printerIds
.size());
in HWTEST_F()
H
A
D
print_manager_client_test.cpp
601
[&testPrinterIds](const std::vector<std::string> &
printerIds
) {
in HWTEST_F()
602
EXPECT_EQ(testPrinterIds.size(),
printerIds
.size());
in HWTEST_F()
/base/print/print_fwk/test/fuzztest/printserviceability_fuzzer/
H
A
D
printserviceability_fuzzer.cpp
151
std::vector<std::string>
printerIds
;
in TestRemovePrinters()
local
152
printerIds
.push_back(printerId);
in TestRemovePrinters()
153
PrintServiceAbility::GetInstance()->RemovePrinters(
printerIds
);
in TestRemovePrinters()
/base/print/print_fwk/services/print_service/include/
H
A
D
print_service_ability.h
65
int32_t RemovePrinters(const std::vector<std::string> &
printerIds
) override;
Completed in 29 milliseconds