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:printerIdList
(Results
1 - 3
of
3
) sorted by relevance
/base/print/print_fwk/frameworks/ohprint/src/
H
A
D
print_capi.cpp
225
Print_ErrorCode OH_Print_QueryPrinterList(Print_StringList *
printerIdList
)
in OH_Print_QueryPrinterList()
argument
227
if (
printerIdList
== nullptr) {
in OH_Print_QueryPrinterList()
228
PRINT_HILOGW("
printerIdList
is null.");
in OH_Print_QueryPrinterList()
238
printerIdList
->list = new (std::nothrow) char *[count];
in OH_Print_QueryPrinterList()
239
if (
printerIdList
->list == nullptr) {
in OH_Print_QueryPrinterList()
240
PRINT_HILOGW("
printerIdList
->list is null");
in OH_Print_QueryPrinterList()
243
if (memset_s(
printerIdList
->list, count * sizeof(char *), 0, count * sizeof(char *)) != 0) {
in OH_Print_QueryPrinterList()
244
delete[]
printerIdList
->list;
in OH_Print_QueryPrinterList()
245
printerIdList
->list = nullptr;
in OH_Print_QueryPrinterList()
250
printerIdList
in OH_Print_QueryPrinterList()
256
OH_Print_ReleasePrinterList(Print_StringList *
printerIdList
)
OH_Print_ReleasePrinterList()
argument
[all...]
/base/print/print_fwk/frameworks/ohprint/include/
H
A
D
ohprint.h
666
* @param
printerIdList
A pointer to a {@link Print_StringList} instance to store the queried printer id list.
669
* {@link PRINT_ERROR_INVALID_PARAMETER}
printerIdList
is NULL.
675
Print_ErrorCode OH_Print_QueryPrinterList(Print_StringList *
printerIdList
);
680
* @param
printerIdList
The queried printer id list to be released.
684
void OH_Print_ReleasePrinterList(Print_StringList *
printerIdList
);
/base/print/print_fwk/services/print_service/src/
H
A
D
print_service_ability.cpp
434
std::vector<std::string>
printerIdList
= printSystemData_.QueryAddedPrinterIdList();
in StartDiscoverPrinter()
local
435
for (auto &printerId :
printerIdList
) {
in StartDiscoverPrinter()
Completed in 8 milliseconds