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:pidList
(Results
1 - 3
of
3
) sorted by relevance
/kernel/liteos_a/fs/proc/os_adapt/
H
A
D
fd_proc.c
95
unsigned int *
pidList
= NULL;
in FdProcFill()
local
100
pidList
= (unsigned int *)malloc(pidMaxNum * sizeof(unsigned int));
in FdProcFill()
101
if (
pidList
== NULL) {
in FdProcFill()
104
pidNum = LOS_GetUsedPIDList(
pidList
, pidMaxNum);
in FdProcFill()
109
pidList
= (unsigned int *)malloc(pidNum * sizeof(unsigned int));
in FdProcFill()
110
if (
pidList
== NULL) {
in FdProcFill()
113
pidList
[0] = LOS_GetCurrProcessID();
in FdProcFill()
122
FillFdInfo(seqBuf, fileList,
pidList
[i], hasPrivilege);
in FdProcFill()
125
free(
pidList
);
in FdProcFill()
/kernel/liteos_a/kernel/include/
H
A
D
los_process.h
78
extern INT32 LOS_GetUsedPIDList(UINT32 *
pidList
, INT32 pidMaxNum);
/kernel/liteos_a/kernel/base/core/
H
A
D
los_process.c
2308
LITE_OS_SEC_TEXT INT32 LOS_GetUsedPIDList(UINT32 *
pidList
, INT32 pidMaxNum)
in LOS_GetUsedPIDList()
argument
2315
if (
pidList
== NULL) {
in LOS_GetUsedPIDList()
2325
pidList
[num] = pcb->processID;
in LOS_GetUsedPIDList()
Completed in 4 milliseconds