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:para
(Results
1 - 3
of
3
) sorted by relevance
/applications/sample/wifi-iot/app/demolink/
H
A
D
demosdk_adapter.c
23
int DemoSdkCreateTask(unsigned int *handle, const struct TaskPara *
para
)
in DemoSdkCreateTask()
argument
27
if (handle == 0 ||
para
== 0) {
in DemoSdkCreateTask()
31
if (
para
->func == 0) {
in DemoSdkCreateTask()
35
if (
para
->name == 0) {
in DemoSdkCreateTask()
39
attr.name =
para
->name;
in DemoSdkCreateTask()
40
attr.priority =
para
->prio;
in DemoSdkCreateTask()
41
attr.stack_size =
para
->size;
in DemoSdkCreateTask()
42
threadId = osThreadNew((osThreadFunc_t)
para
->func,
para
->arg, &attr);
in DemoSdkCreateTask()
H
A
D
demosdk.c
36
struct TaskPara
para
= {0};
in DemoSdkEntry()
local
37
para
.name = "demotask";
in DemoSdkEntry()
38
para
.func = (void *)DemoSdkBiz;
in DemoSdkEntry()
39
para
.prio = TASK_PRIO;
in DemoSdkEntry()
40
para
.size = TASK_STACK_SIZE;
in DemoSdkEntry()
42
int ret = DemoSdkCreateTask(&handle, &
para
);
in DemoSdkEntry()
H
A
D
demosdk_adapter.h
30
int DemoSdkCreateTask(unsigned int *handle, const struct TaskPara *
para
);
Completed in 1 milliseconds