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:stPingTask
(Results
1 - 2
of
2
) sorted by relevance
/kernel/liteos_m/components/net/lwip-2.1/porting/src/
H
A
D
api_shell.c
540
TSK_INIT_PARAM_S
stPingTask
;
in OsShellPing()
local
581
stPingTask
.pfnTaskEntry = (TSK_ENTRY_FUNC)ping_cmd;
in OsShellPing()
582
stPingTask
.uwStackSize = LOSCFG_BASE_CORE_TSK_DEFAULT_STACK_SIZE;
in OsShellPing()
583
stPingTask
.pcName = "ping_task";
in OsShellPing()
584
stPingTask
.usTaskPrio = 8; /* 8: higher than shell */
in OsShellPing()
585
stPingTask
.uwResved = LOS_TASK_STATUS_DETACHED;
in OsShellPing()
586
stPingTask
.uwArg = (UINTPTR)parg;
in OsShellPing()
587
ret = LOS_TaskCreate((UINT32 *)(&ping_taskid), &
stPingTask
);
in OsShellPing()
/kernel/liteos_a/net/lwip-2.1/enhancement/src/
H
A
D
api_shell.c
1845
TSK_INIT_PARAM_S
stPingTask
;
local
1937
stPingTask
.pfnTaskEntry = (TSK_ENTRY_FUNC)ping_cmd;
1938
stPingTask
.uwStackSize = LOSCFG_BASE_CORE_TSK_DEFAULT_STACK_SIZE;
1939
stPingTask
.pcName = "ping_task";
1940
stPingTask
.usTaskPrio = 8; /* higher than shell */
1941
stPingTask
.uwResved = LOS_TASK_STATUS_DETACHED;
1942
stPingTask
.auwArgs[0] = dst_ipaddr.addr; /* network order */
1943
stPingTask
.auwArgs[1] = count;
1944
stPingTask
.auwArgs[2] = interval;
1945
stPingTask
[all...]
Completed in 4 milliseconds