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:dupfd
(Results
1 - 3
of
3
) sorted by relevance
/third_party/mesa3d/src/gallium/winsys/nouveau/drm/
H
A
D
nouveau_drm_winsys.c
48
int ret,
dupfd
;
in nouveau_drm_screen_create()
local
75
dupfd
= os_dupfd_cloexec(fd);
in nouveau_drm_screen_create()
77
ret = nouveau_drm_new(
dupfd
, &drm);
in nouveau_drm_screen_create()
122
/* Use
dupfd
in hash table, to avoid errors if the original fd gets
in nouveau_drm_screen_create()
126
_mesa_hash_table_insert(fd_tab, intptr_to_pointer(
dupfd
), screen);
in nouveau_drm_screen_create()
137
close(
dupfd
);
in nouveau_drm_screen_create()
/third_party/musl/Benchmark/musl/
H
A
D
libc_fcntl.cpp
105
int
dupfd
= fcntl(fd, F_DUPFD, 0);
in Bm_function_Fcntl_dupfd()
local
106
if (
dupfd
< 0) {
in Bm_function_Fcntl_dupfd()
109
benchmark::DoNotOptimize(
dupfd
);
in Bm_function_Fcntl_dupfd()
111
close(
dupfd
);
in Bm_function_Fcntl_dupfd()
/third_party/python/Lib/multiprocessing/
H
A
D
heap.py
106
def rebuild_arena(size,
dupfd
):
107
return Arena(size,
dupfd
.detach())
Completed in 4 milliseconds