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:pwmDevice
(Results
1 - 3
of
3
) sorted by relevance
/drivers/hdf_core/adapter/platform/pwm/
H
A
D
pwm_bes.c
61
struct PwmDevice *
pwmDevice
= NULL;
in InitPwmDevice()
local
68
pwmDevice
= (struct PwmDevice *)host->priv;
in InitPwmDevice()
69
resource = &
pwmDevice
->resource;
in InitPwmDevice()
157
struct PwmDevice *
pwmDevice
= NULL;
local
167
pwmDevice
= (struct PwmDevice *)OsalMemAlloc(sizeof(struct PwmDevice));
168
if (
pwmDevice
== NULL) {
169
HDF_LOGE("%s: OsalMemAlloc
pwmDevice
error\r\n", __func__);
173
ret = GetPwmDeviceResource(
pwmDevice
, device->deviceMatchAttr);
175
ret = GetPwmDeviceResource(
pwmDevice
, device->property);
178
(void)OsalMemFree(
pwmDevice
);
[all...]
H
A
D
pwm_wm.c
102
struct PwmDevice *
pwmDevice
= NULL;
in AttachPwmDevice()
local
108
pwmDevice
= (struct PwmDevice *)OsalMemAlloc(sizeof(struct PwmDevice));
in AttachPwmDevice()
109
if (
pwmDevice
== NULL) {
in AttachPwmDevice()
110
HDF_LOGE("%s: OsalMemAlloc
pwmDevice
error\r\n", __func__);
in AttachPwmDevice()
114
ret = GetPwmDeviceResource(
pwmDevice
, device->property);
in AttachPwmDevice()
116
(void)OsalMemFree(
pwmDevice
);
in AttachPwmDevice()
120
host->priv =
pwmDevice
;
in AttachPwmDevice()
H
A
D
pwm_stm32f4xx.c
280
PwmDevice *
pwmDevice
= NULL;
local
289
pwmDevice
= (PwmDevice *)OsalMemAlloc(sizeof(PwmDevice));
290
if (
pwmDevice
== NULL) {
291
HDF_LOGE("%s: OsalMemAlloc
pwmDevice
error\r\n", __func__);
295
ret = GetPwmDeviceResource(
pwmDevice
, device->deviceMatchAttr);
297
ret = GetPwmDeviceResource(
pwmDevice
, device->property);
300
(void)OsalMemFree(
pwmDevice
);
303
host->priv =
pwmDevice
;
304
host->num =
pwmDevice
->resource.pwmTim;
Completed in 3 milliseconds