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:frozen
(Results
1 - 7
of
7
) sorted by relevance
/device/soc/rockchip/common/sdk_linux/include/linux/
H
A
D
freezer.h
23
* Check if a process has been
frozen
25
static inline bool
frozen
(struct task_struct *p)
in frozen()
function
95
* complete. However, we don't want kernel threads to be
frozen
in unexpected
99
* (the child) does a little before exec/exit and it can't be
frozen
before
107
* target
frozen
state is reached. IOW, the current task will be
108
* considered
frozen
enough by freezers.
110
* The caller shouldn't do anything which isn't allowed for a
frozen
task
147
* freezer_should_skip - whether to skip a task when determining
frozen
152
* test whether a task should be skipped when determining the target
frozen
154
*
frozen
enoug
278
static inline bool
frozen
(struct task_struct *p)
frozen()
function
[all...]
H
A
D
sched.h
948
/* task is
frozen
/stopped (used by the cgroup freezer) */
949
unsigned
frozen
: 1;
member
1681
#define PF_NOFREEZE 0x00008000 /* This thread should not be
frozen
*/
1696
#define PF_SUSPEND_TASK 0x80000000 /* This thread called freeze_processes() and should not be
frozen
*/
H
A
D
bpf.h
151
bool
frozen
; /* write-once; write-protected by freeze_mutex */
member
/device/soc/rockchip/common/sdk_linux/kernel/power/
H
A
D
process.c
116
if (p != current && !freezer_should_skip(p) && freezing(p) && !
frozen
(p)) {
in try_to_freeze_tasks()
131
* The current thread will not be
frozen
. The same process that calls
145
/* Make sure this task doesn't get
frozen
*/
in freeze_processes()
164
* Now that the whole userspace is
frozen
we need to disable
in freeze_processes()
/device/soc/rockchip/common/sdk_linux/kernel/cgroup/
H
A
D
legacy_freezer.c
37
CGROUP_FROZEN = (1 << 3), /* this and its descendants
frozen
*/
175
* current state before executing the following - !
frozen
tasks may
in freezer_attach()
176
* be visible in a FROZEN cgroup and
frozen
tasks in a THAWED one.
in freezer_attach()
263
/* are all (live) children
frozen
? */
in update_if_frozen()
276
/* are all tasks
frozen
? */
in update_if_frozen()
284
* completion. Consider it
frozen
in addition to
in update_if_frozen()
285
* the usual
frozen
condition.
in update_if_frozen()
287
if (!
frozen
(task) && !freezer_should_skip(task)) {
in update_if_frozen()
/device/soc/rockchip/common/sdk_linux/kernel/bpf/
H
A
D
syscall.c
525
if (READ_ONCE(map->
frozen
)) {
in map_get_sys_perms()
554
"
frozen
:\t%u\n",
in bpf_map_show_fdinfo()
556
map->memory.pages * 1ULL << PAGE_SHIFT, map->id, READ_ONCE(map->
frozen
));
in bpf_map_show_fdinfo()
625
if (map->
frozen
) {
in bpf_map_mmap()
1595
if (READ_ONCE(map->
frozen
)) {
in map_freeze()
1604
WRITE_ONCE(map->
frozen
, true);
in map_freeze()
H
A
D
verifier.c
3471
return (map->map_flags & BPF_F_RDONLY_PROG) && map->
frozen
;
in bpf_map_is_rdonly()
Completed in 35 milliseconds