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:done_fd
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-5.10/tools/perf/
H
A
D
builtin-record.c
548
static int
done_fd
= -1;
variable
568
* done is set, use an eventfd (
done_fd
) to wake up the poll().
in sig_handler()
570
if (write(
done_fd
, &tmp, sizeof(tmp)) < 0)
in sig_handler()
1663
done_fd
= eventfd(0, EFD_NONBLOCK);
in __cmd_record()
1664
if (
done_fd
< 0) {
in __cmd_record()
1669
err = evlist__add_wakeup_eventfd(rec->evlist,
done_fd
);
in __cmd_record()
2062
if (
done_fd
>= 0)
in __cmd_record()
2063
close(
done_fd
);
in __cmd_record()
/kernel/linux/linux-6.6/tools/perf/
H
A
D
builtin-record.c
647
static volatile sig_atomic_t
done_fd
= -1;
variable
659
if (
done_fd
>= 0) {
in sig_handler()
670
* use an eventfd (
done_fd
) to wake up the poll().
in sig_handler()
672
if (write(
done_fd
, &tmp, sizeof(tmp)) < 0)
in sig_handler()
2373
done_fd
= eventfd(0, EFD_NONBLOCK);
in __cmd_record()
2374
if (
done_fd
< 0) {
in __cmd_record()
2379
err = evlist__add_wakeup_eventfd(rec->evlist,
done_fd
);
in __cmd_record()
2817
if (
done_fd
>= 0) {
in __cmd_record()
2818
fd =
done_fd
;
in __cmd_record()
2819
done_fd
in __cmd_record()
[all...]
Completed in 9 milliseconds