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:sane_device
(Results
1 - 6
of
6
) sorted by relevance
/third_party/backends/backend/
H
A
D
mustek_usb2.c
2060
SANE_Device *
sane_device
;
in sane_get_devices()
local
2062
sane_device
= malloc (sizeof (*
sane_device
));
in sane_get_devices()
2063
if (
sane_device
== NULL)
in sane_get_devices()
2065
sane_device
->name = strdup (device_name);
in sane_get_devices()
2066
sane_device
->vendor = strdup ("Mustek");
in sane_get_devices()
2067
sane_device
->model = strdup ("BearPaw 2448 TA Pro");
in sane_get_devices()
2068
sane_device
->type = strdup ("flatbed scanner");
in sane_get_devices()
2069
devlist[dev_num++] =
sane_device
;
in sane_get_devices()
H
A
D
p5.c
211
SANE_Device *
sane_device
;
in sane_get_devices()
local
272
sane_device
= malloc (sizeof (*
sane_device
));
in sane_get_devices()
273
if (!
sane_device
)
in sane_get_devices()
279
sane_device
->name = device->name;
in sane_get_devices()
280
sane_device
->vendor = device->model->vendor;
in sane_get_devices()
281
sane_device
->model = device->model->product;
in sane_get_devices()
282
sane_device
->type = device->model->type;
in sane_get_devices()
283
devlist[dev_num] =
sane_device
;
in sane_get_devices()
H
A
D
gt68xx.c
1411
SANE_Device *
sane_device
;
in sane_get_devices()
local
1416
sane_device
= malloc (sizeof (*
sane_device
));
in sane_get_devices()
1417
if (!
sane_device
)
in sane_get_devices()
1419
sane_device
->name = dev->file_name;
in sane_get_devices()
1420
sane_device
->vendor = dev->model->vendor;
in sane_get_devices()
1421
sane_device
->model = dev->model->model;
in sane_get_devices()
1422
sane_device
->type = strdup ("flatbed scanner");
in sane_get_devices()
1423
devlist[dev_num] =
sane_device
;
in sane_get_devices()
H
A
D
rts8891.c
359
SANE_Device *
sane_device
;
in sane_get_devices()
local
387
sane_device
= malloc (sizeof (*
sane_device
));
in sane_get_devices()
388
if (!
sane_device
)
in sane_get_devices()
390
sane_device
->name = device->file_name;
in sane_get_devices()
391
sane_device
->vendor = device->model->vendor;
in sane_get_devices()
392
sane_device
->model = device->model->product;
in sane_get_devices()
393
sane_device
->type = device->model->type;
in sane_get_devices()
394
devlist[dev_num++] =
sane_device
;
in sane_get_devices()
H
A
D
test.c
1647
SANE_Device *
sane_device
;
in sane_init()
local
1845
malloc ((size_t) (init_number_of_devices + 1) * sizeof (
sane_device
));
in sane_init()
/third_party/backends/backend/genesys/
H
A
D
genesys.cpp
5364
auto&
sane_device
= s_sane_devices->back();
5367
sane_device
.name = sane_device_data.name.c_str();
5368
sane_device
.vendor = dev_it->model->vendor;
5369
sane_device
.model = dev_it->model->model;
5370
sane_device
.type = "flatbed scanner";
5371
s_sane_devices_ptrs->push_back(&
sane_device
);
Completed in 26 milliseconds