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:acmDevice
(Results
1 - 6
of
6
) sorted by relevance
/drivers/hdf_core/framework/test/unittest/model/usb/device/src/
H
A
D
usb_device_lite_sdk_io_test.c
15
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
in ReadComplete()
local
16
if ((req == NULL) || (
acmDevice
== NULL)) {
in ReadComplete()
24
acmDevice
->submitExit = 1;
in ReadComplete()
27
acmDevice
->submit = 1;
in ReadComplete()
48
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
in UsbFnDviceTestRequestAsync002()
local
49
if (
acmDevice
== NULL ||
acmDevice
->dataIface.handle == NULL) {
in UsbFnDviceTestRequestAsync002()
55
UsbFnAllocRequest(
acmDevice
->dataIface.handle,
acmDevice
->dataOutPipe.id,
acmDevice
in UsbFnDviceTestRequestAsync002()
93
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
UsbFnDviceTestRequestAsync003()
local
133
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
WriteComplete()
local
145
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
UsbFnDviceTestRequestAsync004()
local
192
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
UsbFnDviceTestRequestAsync005()
local
253
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
UsbFnDviceTestRequestSync002()
local
287
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
UsbFnDviceTestRequestSync003()
local
324
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
UsbFnDviceTestRequestSync004()
local
357
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
UsbFnDviceTestRequestSync005()
local
393
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
UsbFnDviceTestRequestSync006()
local
434
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
TestCancelComplete()
local
458
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
UsbFnDviceTestCancelRequest002()
local
491
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
UsbFnDviceTestCancelRequest003()
local
524
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
UsbFnDviceTestCancelRequest004()
local
557
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
UsbFnDviceTestCancelRequest005()
local
634
struct AcmDevice *
acmDevice
= UsbGetAcmDevice();
UsbFnDviceTestCancelRequest006()
local
[all...]
H
A
D
usb_device_lite_cdcacm_test.c
328
static void ParsePipes(struct AcmDevice *
acmDevice
, const struct UsbFnInterface *fnIface, UsbFnInterfaceHandle handle)
in ParsePipes()
argument
337
acmDevice
->notifyPipe.id = pipeInfo.id;
in ParsePipes()
338
acmDevice
->notifyPipe.maxPacketSize = pipeInfo.maxPacketSize;
in ParsePipes()
339
acmDevice
->ctrlIface.fn = (struct UsbFnInterface *)fnIface;
in ParsePipes()
340
acmDevice
->ctrlIface.handle = handle;
in ParsePipes()
343
acmDevice
->dataInPipe.id = pipeInfo.id;
in ParsePipes()
344
acmDevice
->dataInPipe.maxPacketSize = pipeInfo.maxPacketSize;
in ParsePipes()
345
acmDevice
->dataIface.fn = (struct UsbFnInterface *)fnIface;
in ParsePipes()
346
acmDevice
->dataIface.handle = handle;
in ParsePipes()
348
acmDevice
in ParsePipes()
357
ParseInterfaces(struct AcmDevice *
acmDevice
)
ParseInterfaces()
argument
399
AllocCtrlRequests(struct AcmDevice *
acmDevice
)
AllocCtrlRequests()
argument
501
AllocNotifyRequest(struct AcmDevice *
acmDevice
)
AllocNotifyRequest()
argument
695
struct AcmDevice *
acmDevice
= NULL;
SetUpAcmDevice()
local
731
FreeNotifyRequest(struct AcmDevice *
acmDevice
)
FreeNotifyRequest()
argument
750
FreeCtrlRequests(struct AcmDevice *
acmDevice
)
FreeCtrlRequests()
argument
[all...]
/drivers/peripheral/usb/test/unittest/device_sdk/
H
A
D
usb_device_cdcacm_test.cpp
340
static int32_t ParseInterfaces(struct AcmDevice * const
acmDevice
)
in ParseInterfaces()
argument
347
for (i = 0; i <
acmDevice
->fnDev->numInterfaces; i++) {
in ParseInterfaces()
348
fnIface = const_cast<UsbFnInterface *>(UsbFnGetInterface(
acmDevice
->fnDev, i));
in ParseInterfaces()
363
acmDevice
->notifyPipe.id = pipeInfo.id;
in ParseInterfaces()
364
acmDevice
->notifyPipe.maxPacketSize = pipeInfo.maxPacketSize;
in ParseInterfaces()
365
acmDevice
->ctrlIface.fn = fnIface;
in ParseInterfaces()
366
acmDevice
->ctrlIface.handle = handle;
in ParseInterfaces()
370
acmDevice
->dataInPipe.id = pipeInfo.id;
in ParseInterfaces()
371
acmDevice
->dataInPipe.maxPacketSize = pipeInfo.maxPacketSize;
in ParseInterfaces()
372
acmDevice
in ParseInterfaces()
411
AllocCtrlRequests(struct AcmDevice *
acmDevice
)
AllocCtrlRequests()
argument
511
AllocNotifyRequest(struct AcmDevice *
acmDevice
)
AllocNotifyRequest()
argument
702
struct AcmDevice *
acmDevice
= nullptr;
SetUpAcmDevice()
local
738
FreeNotifyRequest(struct AcmDevice *
acmDevice
)
FreeNotifyRequest()
argument
757
FreeCtrlRequests(struct AcmDevice * const
acmDevice
)
FreeCtrlRequests()
argument
[all...]
H
A
D
usb_device_cdcacm_test.h
134
void AcmDeviceRelease(struct AcmDevice *
acmDevice
);
/drivers/hdf_core/framework/test/unittest/model/usb/device/include/
H
A
D
usb_device_lite_cdcacm_test.h
127
void AcmDeviceRelease(struct AcmDevice *
acmDevice
);
/drivers/peripheral/usb/gadget/function/acm/
H
A
D
cdcacm.c
757
static int32_t UsbSerialGetProp(struct UsbAcmDevice *
acmDevice
, struct HdfSBuf *data, struct HdfSBuf *reply)
in UsbSerialGetProp()
argument
759
struct UsbFnInterface *intf =
acmDevice
->ctrlIface.fn;
in UsbSerialGetProp()
779
static int32_t UsbSerialSetProp(struct UsbAcmDevice *
acmDevice
, struct HdfSBuf *data)
in UsbSerialSetProp()
argument
781
struct UsbFnInterface *intf =
acmDevice
->ctrlIface.fn;
in UsbSerialSetProp()
824
static int32_t UsbSerialRegistProp(struct UsbAcmDevice *
acmDevice
, struct HdfSBuf *data)
in UsbSerialRegistProp()
argument
826
struct UsbFnInterface *intf =
acmDevice
->ctrlIface.fn;
in UsbSerialRegistProp()
Completed in 7 milliseconds