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:OPT_SCAN_SOURCE
(Results
1 - 8
of
8
) sorted by relevance
/third_party/backends/backend/
H
A
D
kvs1025_opt.c
271
"
OPT_SCAN_SOURCE
", /* Scan source, fixed to ADF */
559
dev->opt[
OPT_SCAN_SOURCE
].name = SANE_NAME_SCAN_SOURCE;
in kv_init_options()
560
dev->opt[
OPT_SCAN_SOURCE
].title = SANE_TITLE_SCAN_SOURCE;
in kv_init_options()
561
dev->opt[
OPT_SCAN_SOURCE
].desc = SANE_I18N ("Sets the scan source");
in kv_init_options()
562
dev->opt[
OPT_SCAN_SOURCE
].type = SANE_TYPE_STRING;
in kv_init_options()
563
dev->opt[
OPT_SCAN_SOURCE
].size = max_string_size (go_scan_source_list);
in kv_init_options()
564
dev->opt[
OPT_SCAN_SOURCE
].constraint_type = SANE_CONSTRAINT_STRING_LIST;
in kv_init_options()
565
dev->opt[
OPT_SCAN_SOURCE
].constraint.string_list = go_scan_source_list;
in kv_init_options()
566
dev->val[
OPT_SCAN_SOURCE
].s = strdup (go_scan_source_list[0]);
in kv_init_options()
567
dev->opt[
OPT_SCAN_SOURCE
]
in kv_init_options()
[all...]
H
A
D
hs2p-saneopts.h
298
OPT_SCAN_SOURCE
, /* scan source (eg. Flatbed, ADF) */
enumerator
H
A
D
hs2p.c
431
s->opt[
OPT_SCAN_SOURCE
].name = SANE_NAME_SCAN_SOURCE;
in init_options()
432
s->opt[
OPT_SCAN_SOURCE
].title = SANE_TITLE_SCAN_SOURCE;
in init_options()
433
s->opt[
OPT_SCAN_SOURCE
].desc = SANE_DESC_SCAN_SOURCE;
in init_options()
434
s->opt[
OPT_SCAN_SOURCE
].type = SANE_TYPE_STRING;
in init_options()
435
s->opt[
OPT_SCAN_SOURCE
].cap = SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT;
in init_options()
436
s->opt[
OPT_SCAN_SOURCE
].size = max_string_size (scan_source_list);
in init_options()
437
s->opt[
OPT_SCAN_SOURCE
].constraint_type = SANE_CONSTRAINT_STRING_LIST;
in init_options()
438
s->opt[
OPT_SCAN_SOURCE
].constraint.string_list =
in init_options()
440
s->val[
OPT_SCAN_SOURCE
].s = strdup (scan_source_list[0]);
in init_options()
442
s->opt[
OPT_SCAN_SOURCE
]
in init_options()
[all...]
H
A
D
kvs1025_low.h
101
OPT_SCAN_SOURCE
, /* Scan source, fixed to ADF */
enumerator
H
A
D
bh.c
2503
s->opt[
OPT_SCAN_SOURCE
].name = SANE_NAME_SCAN_SOURCE;
in init_options()
2504
s->opt[
OPT_SCAN_SOURCE
].title = SANE_TITLE_SCAN_SOURCE;
in init_options()
2505
s->opt[
OPT_SCAN_SOURCE
].desc = SANE_DESC_SCAN_SOURCE;
in init_options()
2506
s->opt[
OPT_SCAN_SOURCE
].type = SANE_TYPE_STRING;
in init_options()
2507
s->opt[
OPT_SCAN_SOURCE
].size = max_string_size (scan_source_list);
in init_options()
2508
s->opt[
OPT_SCAN_SOURCE
].constraint_type = SANE_CONSTRAINT_STRING_LIST;
in init_options()
2509
s->opt[
OPT_SCAN_SOURCE
].constraint.string_list = scan_source_list;
in init_options()
2510
s->val[
OPT_SCAN_SOURCE
].s = strdup (scan_source_list[0]);
in init_options()
3404
case
OPT_SCAN_SOURCE
:
in sane_control_option()
3516
case
OPT_SCAN_SOURCE
in sane_control_option()
[all...]
H
A
D
bh.h
133
OPT_SCAN_SOURCE
,
enumerator
/third_party/backends/backend/escl/
H
A
D
escl.c
806
if (s->val[
OPT_SCAN_SOURCE
].s)
in init_options_small()
807
free (s->val[
OPT_SCAN_SOURCE
].s);
in init_options_small()
808
s->val[
OPT_SCAN_SOURCE
].s = strdup (s->scanner->Sources[s->scanner->source]);
in init_options_small()
1012
/*
OPT_SCAN_SOURCE
*/
in init_options()
1013
s->opt[
OPT_SCAN_SOURCE
].name = SANE_NAME_SCAN_SOURCE;
in init_options()
1014
s->opt[
OPT_SCAN_SOURCE
].title = SANE_TITLE_SCAN_SOURCE;
in init_options()
1015
s->opt[
OPT_SCAN_SOURCE
].desc = SANE_DESC_SCAN_SOURCE;
in init_options()
1016
s->opt[
OPT_SCAN_SOURCE
].type = SANE_TYPE_STRING;
in init_options()
1017
s->opt[
OPT_SCAN_SOURCE
].size = _source_size_max(s->scanner->Sources);
in init_options()
1018
s->opt[
OPT_SCAN_SOURCE
]
in init_options()
[all...]
H
A
D
escl.h
201
OPT_SCAN_SOURCE
,
enumerator
Completed in 12 milliseconds