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:listDevices
(Results
1 - 2
of
2
) sorted by relevance
/developtools/hdc/hdc_rust/src/cffi/host/
H
A
D
host_usb.cpp
338
libusb_device **
listDevices
= nullptr;
in OpenDeviceMyNeed()
local
346
int deviceNum = libusb_get_device_list(ctxUSB, &
listDevices
);
in OpenDeviceMyNeed()
348
libusb_free_device_list(
listDevices
, 1);
in OpenDeviceMyNeed()
362
if (LIBUSB_SUCCESS != libusb_get_device_descriptor(
listDevices
[i], &desc)) {
in OpenDeviceMyNeed()
365
curBus = libusb_get_bus_number(
listDevices
[i]);
in OpenDeviceMyNeed()
366
curDev = libusb_get_device_address(
listDevices
[i]);
in OpenDeviceMyNeed()
368
hUSB->device =
listDevices
[i];
in OpenDeviceMyNeed()
379
libusb_free_device_list(
listDevices
, 1);
in OpenDeviceMyNeed()
/developtools/hdc/src/host/
H
A
D
host_usb.cpp
677
libusb_device **
listDevices
= nullptr;
in FindDeviceByID()
local
685
int device_num = libusb_get_device_list(ctxUSB, &
listDevices
);
in FindDeviceByID()
688
libusb_free_device_list(
listDevices
, 1);
in FindDeviceByID()
704
if (LIBUSB_SUCCESS != libusb_get_device_descriptor(
listDevices
[i], &desc)) {
in FindDeviceByID()
708
curBus = libusb_get_bus_number(
listDevices
[i]);
in FindDeviceByID()
709
curDev = libusb_get_device_address(
listDevices
[i]);
in FindDeviceByID()
712
hUSB->device =
listDevices
[i];
in FindDeviceByID()
724
libusb_free_device_list(
listDevices
, 1);
in FindDeviceByID()
Completed in 4 milliseconds