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:posix_openpt
(Results
1 - 18
of
18
) sorted by relevance
/third_party/rust/crates/nix/test/
H
A
D
test_pty.rs
19
let m =
posix_openpt
(OFlag::O_RDWR).unwrap();
in test_explicit_close()
35
let master_fd =
posix_openpt
(OFlag::O_RDWR).unwrap();
in test_ptsname_equivalence()
52
let master_fd =
posix_openpt
(OFlag::O_RDWR).unwrap();
in test_ptsname_copy()
69
let master_fd =
posix_openpt
(OFlag::O_RDWR).unwrap();
in test_ptsname_r_copy()
86
let master1_fd =
posix_openpt
(OFlag::O_RDWR).unwrap();
in test_ptsname_unique()
90
let master2_fd =
posix_openpt
(OFlag::O_RDWR).unwrap();
in test_ptsname_unique()
104
let master =
posix_openpt
(OFlag::O_RDWR).expect("
posix_openpt
failed");
in open_ptty_pair()
H
A
D
test_ptymaster_drop.rs
16
let m =
posix_openpt
(OFlag::O_RDWR).unwrap();
in test_double_close()
H
A
D
test_unistd.rs
13
use nix::pty::{grantpt,
posix_openpt
, ptsname, unlockpt};
1238
let fd =
posix_openpt
(OFlag::O_RDWR).expect("
posix_openpt
failed");
in test_ttyname()
/third_party/musl/libc-test/src/functionalext/supplement/misc/
H
A
D
pty.c
111
int ret =
posix_openpt
(O_RDWR);
in posix_openpt_0100()
124
int ret =
posix_openpt
(O_RDWR | O_NOCTTY);
in posix_openpt_0200()
/third_party/musl/porting/liteos_a/user/src/misc/
H
A
D
pty.c
9
int
posix_openpt
(int flags)
in posix_openpt()
function
/third_party/musl/src/misc/
H
A
D
pty.c
9
int
posix_openpt
(int flags)
in posix_openpt()
function
/third_party/rust/crates/nix/src/
H
A
D
pty.rs
127
/// [`
posix_openpt
(3)`](https://pubs.opengroup.org/onlinepubs/9699919799/functions/
posix_openpt
.html))
129
/// `
posix_openpt
()` returns a file descriptor to an existing unused pseudoterminal master device.
139
/// use nix::pty::{grantpt,
posix_openpt
, ptsname, unlockpt};
145
/// let master_fd =
posix_openpt
(OFlag::O_RDWR)?;
160
pub fn
posix_openpt
(flags: fcntl::OFlag) -> Result<PtyMaster> {
in posix_openpt()
functions
161
let fd = unsafe { libc::
posix_openpt
(flags.bits()) };
in posix_openpt()
177
/// `
posix_openpt
()`.
205
/// `
posix_openpt
()`.
/third_party/musl/porting/liteos_m/kernel/include/
H
A
D
stdlib.h
120
int
posix_openpt
(int);
/third_party/musl/porting/liteos_m/user/include/
H
A
D
stdlib.h
119
int
posix_openpt
(int);
/third_party/musl/porting/liteos_a/kernel/include/
H
A
D
stdlib.h
122
int
posix_openpt
(int);
/third_party/musl/porting/uniproton/kernel/include/
H
A
D
stdlib.h
120
int
posix_openpt
(int);
/third_party/musl/libc-test/src/api/
H
A
D
stdlib.c
101
{int(*p)(int) =
posix_openpt
;}
in g()
/third_party/musl/porting/linux/user/include/
H
A
D
stdlib.h
125
int
posix_openpt
(int);
/third_party/musl/include/
H
A
D
stdlib.h
126
int
posix_openpt
(int);
/third_party/rust/crates/libc/src/unix/solarish/
H
A
D
compat.rs
64
let fdm = ::
posix_openpt
(O_RDWR | O_NOCTTY);
in openpty()
/third_party/rust/crates/libc/src/unix/
H
A
D
mod.rs
1400
pub fn
posix_openpt
(flags: ::c_int) -> ::c_int;
in posix_openpt()
functions
/third_party/rust/crates/libc/src/fuchsia/
H
A
D
mod.rs
3856
pub fn
posix_openpt
(flags: ::c_int) -> ::c_int;
in posix_openpt()
functions
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H
A
D
stylo.hpp
6761
extern int
posix_openpt
(int __oflag) ;
[all...]
Completed in 43 milliseconds