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:optionDesc
(Results
1 - 7
of
7
) sorted by relevance
/base/print/print_fwk/services/scan_service/src/
H
A
D
scan_service_ability.cpp
681
void ScanServiceAbility::SetScanOptionDescriptor(ScanOptionDescriptor &desc, const SANE_Option_Descriptor *
optionDesc
)
in SetScanOptionDescriptor()
argument
683
if (
optionDesc
->name != nullptr) {
in SetScanOptionDescriptor()
684
desc.SetOptionName(std::string(
optionDesc
->name));
in SetScanOptionDescriptor()
686
if (
optionDesc
->title != nullptr) {
in SetScanOptionDescriptor()
687
desc.SetOptionTitle(std::string(
optionDesc
->title));
in SetScanOptionDescriptor()
689
if (
optionDesc
->desc != nullptr) {
in SetScanOptionDescriptor()
690
desc.SetOptionDesc(std::string(
optionDesc
->desc));
in SetScanOptionDescriptor()
692
desc.SetOptionType(
optionDesc
->type);
in SetScanOptionDescriptor()
693
desc.SetOptionUnit(
optionDesc
->unit);
in SetScanOptionDescriptor()
694
desc.SetOptionSize(
optionDesc
in SetScanOptionDescriptor()
701
SelectScanOptionDesc( const SANE_Option_Descriptor* &
optionDesc
, ScanOptionDescriptor &desc)
SelectScanOptionDesc()
argument
756
const SANE_Option_Descriptor *
optionDesc
= sane_get_option_descriptor(scannerHandle, optionIndex);
GetScanOptionDesc()
local
[all...]
/base/print/print_fwk/test/fuzztest/scanserviceability_fuzzer/
H
A
D
scanserviceability_fuzzer.cpp
159
SANE_Option_Descriptor
optionDesc
;
in TestSelectScanOptionDesc()
local
160
const SANE_Option_Descriptor *optionDescPtr = &
optionDesc
;
in TestSelectScanOptionDesc()
162
optionDesc
.constraint_type = SANE_CONSTRAINT_RANGE;
in TestSelectScanOptionDesc()
168
optionDesc
.constraint.range = rangePtr;
in TestSelectScanOptionDesc()
283
SANE_Option_Descriptor
optionDesc
;
in TestSetScanOptionDescriptor()
local
284
optionDesc
.name = dataProvider->ConsumeRandomLengthString(MAX_STRING_LENGTH);
in TestSetScanOptionDescriptor()
285
optionDesc
.title = dataProvider->ConsumeRandomLengthString(MAX_STRING_LENGTH);
in TestSetScanOptionDescriptor()
286
optionDesc
.desc = dataProvider->ConsumeRandomLengthString(MAX_STRING_LENGTH);
in TestSetScanOptionDescriptor()
287
ScanServiceAbility::GetInstance()->SetScanOptionDescriptor(desc, &
optionDesc
);
in TestSetScanOptionDescriptor()
/base/print/print_fwk/frameworks/helper/scan_helper/include/
H
A
D
scan_option_descriptor.h
33
void SetOptionDesc(const std::string &
optionDesc
);
/base/print/print_fwk/frameworks/helper/scan_helper/src/
H
A
D
scan_option_descriptor.cpp
73
void ScanOptionDescriptor::SetOptionDesc(const std::string &
optionDesc
)
in SetOptionDesc()
argument
75
optionDesc_ =
optionDesc
;
in SetOptionDesc()
237
SCAN_HILOGD("
optionDesc
= %{public}s", optionDesc_.c_str());
in Dump()
H
A
D
scan_option_descriptor_helper.cpp
24
static constexpr const char *PARAM_OPTION_DESC = "
optionDesc
";
90
std::string
optionDesc
= NapiScanUtils::GetStringPropertyUtf8(env, jsValue, PARAM_OPTION_DESC);
in GetValueFromJs()
local
91
nativeObj->SetOptionDesc(
optionDesc
);
in GetValueFromJs()
/base/print/print_fwk/services/scan_service/include/
H
A
D
scan_service_ability.h
88
int32_t SelectScanOptionDesc(const SANE_Option_Descriptor* &
optionDesc
, ScanOptionDescriptor &desc);
119
void SetScanOptionDescriptor(ScanOptionDescriptor &desc, const SANE_Option_Descriptor *
optionDesc
);
/base/print/print_fwk/test/fuzztest/scanhelper_fuzzer/
H
A
D
scanhelper_fuzzer.cpp
59
std::string
optionDesc
= dataProvider->ConsumeRandomLengthString(MAX_STRING_LENGTH);
in TestSetOptionDesc()
local
60
scanOptDes.SetOptionDesc(
optionDesc
);
in TestSetOptionDesc()
61
optionDesc
= scanOptDes.GetOptionDesc();
in TestSetOptionDesc()
Completed in 9 milliseconds