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:devService
(Results
1 - 6
of
6
) sorted by relevance
/drivers/hdf_core/adapter/uhdf2/host/src/
H
A
D
hdf_device_thread.c
30
struct HdfDeviceNode *
devService
= (struct HdfDeviceNode *)msg->data[1];
in DeviceThreadMessageHandler()
local
31
if (
devService
!= NULL &&
devService
->super.LaunchNode != NULL) {
in DeviceThreadMessageHandler()
32
devService
->super.LaunchNode(
devService
);
in DeviceThreadMessageHandler()
/drivers/hdf_core/adapter/platform/pwm/
H
A
D
pwm_wm.c
127
static struct PwmDev
devService
;
in PwmDriverBind()
local
134
device->service = &
devService
.service;
in PwmDriverBind()
135
devService
.device = device;
in PwmDriverBind()
H
A
D
pwm_stm32f4xx.c
324
struct PwmDev *
devService
= NULL;
local
330
devService
= (struct PwmDev *)OsalMemCalloc(sizeof(struct PwmDev));
331
if (
devService
== NULL) {
335
device->service = &
devService
->service;
336
devService
->device = device;
H
A
D
pwm_bes.c
206
static struct PwmDev
devService
;
local
213
device->service = &
devService
.service;
214
devService
.device = device;
/drivers/hdf_core/adapter/platform/uart/
H
A
D
uart_wm.c
330
struct UartHost *
devService
;
in UartDriverBind()
local
335
devService
= (struct UartHost *)OsalMemAlloc(sizeof(*
devService
));
in UartDriverBind()
336
if (
devService
== NULL) {
in UartDriverBind()
340
devService
->device = device;
in UartDriverBind()
341
device->service = &(
devService
->service);
in UartDriverBind()
342
devService
->priv = NULL;
in UartDriverBind()
343
devService
->method = NULL;
in UartDriverBind()
H
A
D
uart_bes.c
601
struct UartHost *
devService
= NULL;
local
606
devService
= (struct UartHost *)OsalMemAlloc(sizeof(*
devService
));
607
if (
devService
== NULL) {
611
devService
->device = device;
612
device->service = &(
devService
->service);
613
devService
->priv = NULL;
614
devService
->method = NULL;
Completed in 5 milliseconds