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:opened_fds
(Results
1 - 4
of
4
) sorted by relevance
/third_party/ltp/testcases/kernel/syscalls/pipe/
H
A
D
pipe06.c
20
static int *
opened_fds
, num_opened_fds;
variable
28
opened_fds
= SAFE_MALLOC(max_fds * sizeof(int));
in setup()
32
opened_fds
[num_opened_fds++] = fds[0];
in setup()
33
opened_fds
[num_opened_fds++] = fds[1];
in setup()
47
SAFE_CLOSE(
opened_fds
[i]);
in cleanup()
49
if (
opened_fds
)
in cleanup()
50
free(
opened_fds
);
in cleanup()
H
A
D
pipe07.c
19
static int *
opened_fds
, *pipe_fds;
variable
43
opened_fds
= SAFE_REALLOC(
opened_fds
, arr_size * sizeof(int));
in record_open_fds()
45
opened_fds
[num_opened_fds++] = fd;
in record_open_fds()
93
if (
opened_fds
)
in cleanup()
94
free(
opened_fds
);
in cleanup()
/third_party/ltp/testcases/kernel/syscalls/creat/
H
A
D
creat05.c
23
static int *
opened_fds
, num_opened_fds;
variable
50
opened_fds
= SAFE_MALLOC(max_open * sizeof(int));
in setup()
56
opened_fds
[num_opened_fds++] = fd;
in setup()
67
if (close(
opened_fds
[i])) {
in cleanup()
69
opened_fds
[i]);
in cleanup()
73
free(
opened_fds
);
in cleanup()
/third_party/python/Lib/test/
H
A
D
test_subprocess.py
2908
opened_fds
= set(map(int, output_lines[0].strip().split(b',')))
2911
self.assertFalse(remaining_fds &
opened_fds
,
Completed in 6 milliseconds