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:S_ISCHR
(Results
1 - 25
of
62
) sorted by relevance
1
2
3
/third_party/node/deps/uvwasi/src/
H
A
D
uv_mapping.c
19
#if !defined(
S_ISCHR
) && defined(S_IFMT) && defined(S_IFCHR)
20
# define
S_ISCHR
(m) (((m) & S_IFMT) == S_IFCHR)
macro
213
if (
S_ISCHR
(mode))
in uvwasi__stat_to_filetype()
/third_party/curl/src/
H
A
D
tool_doswin.c
50
#ifndef
S_ISCHR
52
# define
S_ISCHR
(m) (((m) & S_IFMT) == S_IFCHR)
macro
54
# define
S_ISCHR
(m) (0) /* cannot tell if file is a device */
macro
567
if(base && ((stat(base, &st_buf)) == 0) && (
S_ISCHR
(st_buf.st_mode))) {
in rename_if_reserved_dos_device_name()
/third_party/eudev/src/udev/
H
A
D
udevadm-util.c
39
else if (
S_ISCHR
(statbuf.st_mode))
in find_device()
H
A
D
udev-builtin-blkid.c
111
if (!
S_ISCHR
(st.st_mode) &&
in probe_superblocks()
/third_party/ltp/testcases/kernel/syscalls/mknod/
H
A
D
mknod01.c
36
if (
S_ISCHR
(tcases[i]) || S_ISBLK(tcases[i]))
in run()
/third_party/libuv/src/unix/
H
A
D
random-devurandom.c
48
if (!
S_ISCHR
(s.st_mode)) {
in uv__random_readpath()
H
A
D
tty.c
120
if (!
S_ISCHR
(sb.st_mode))
in uv__tty_is_slave()
390
if (
S_ISCHR
(s.st_mode))
in uv_guess_handle()
/third_party/node/deps/uv/src/unix/
H
A
D
random-devurandom.c
48
if (!
S_ISCHR
(s.st_mode)) {
in uv__random_readpath()
H
A
D
tty.c
120
if (!
S_ISCHR
(sb.st_mode))
in uv__tty_is_slave()
385
if (
S_ISCHR
(s.st_mode))
in uv_guess_handle()
/third_party/musl/libc-test/src/api/
H
A
D
ftw.c
45
C(
S_ISCHR
(0))
in f()
H
A
D
sys_stat.c
69
C(
S_ISCHR
(0))
in f()
/third_party/python/Include/
H
A
D
pyport.h
268
#ifndef
S_ISCHR
269
#define
S_ISCHR
(x) (((x) & S_IFMT) == S_IFCHR)
macro
/third_party/python/Modules/
H
A
D
_stat.c
88
* pyport.h defines S_ISDIR(), S_ISREG() and
S_ISCHR
()
285
stat_S_ISFUNC(
S_ISCHR
,
286
"
S_ISCHR
(mode) -> bool\n\n"
359
if (
S_ISCHR
(mode)) return 'c';
in filetype()
417
{"
S_ISCHR
", stat_S_ISCHR, METH_O, stat_S_ISCHR_doc},
/third_party/toybox/porting/liteos_a/toys/posix/
H
A
D
ls.c
147
if (S_ISBLK(st->st_mode) ||
S_ISCHR
(st->st_mode)) {
in entrylen()
277
else if (S_ISBLK(mode) ||
S_ISCHR
(mode)) color = 256+33;
in color_from_mode()
474
if (!zap && (
S_ISCHR
(st->st_mode) || S_ISBLK(st->st_mode)))
in listfiles()
/third_party/toybox/toys/posix/
H
A
D
ls.c
148
if (S_ISBLK(st->st_mode) ||
S_ISCHR
(st->st_mode)) {
in entrylen()
287
else if (S_ISBLK(mode) ||
S_ISCHR
(mode)) color = 256+33;
in color_from_mode()
486
if (!zap && (
S_ISCHR
(st->st_mode) || S_ISBLK(st->st_mode)))
in listfiles()
/third_party/eudev/src/shared/
H
A
D
smack-util.c
183
else if (
S_ISCHR
(st.st_mode))
in mac_smack_fix()
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
H
A
D
stat.h
45
#define
S_ISCHR
(mode) (((mode) & S_IFMT) == S_IFCHR)
macro
/third_party/musl/porting/linux/user/include/sys/
H
A
D
stat.h
45
#define
S_ISCHR
(mode) (((mode) & S_IFMT) == S_IFCHR)
macro
/third_party/musl/porting/liteos_m/kernel/include/sys/
H
A
D
stat.h
45
#define
S_ISCHR
(mode) (((mode) & S_IFMT) == S_IFCHR)
macro
/third_party/musl/porting/liteos_a/kernel/include/sys/
H
A
D
stat.h
45
#define
S_ISCHR
(mode) (((mode) & S_IFMT) == S_IFCHR)
macro
/third_party/musl/porting/uniproton/kernel/include/sys/
H
A
D
stat.h
45
#define
S_ISCHR
(mode) (((mode) & S_IFMT) == S_IFCHR)
macro
/third_party/musl/libc-test/src/functional/
H
A
D
stat.c
39
TEST(
S_ISCHR
(st.st_mode), "\n");
in main()
/third_party/python/Lib/
H
A
D
stat.py
54
def
S_ISCHR
(mode):
function
/third_party/musl/include/sys/
H
A
D
stat.h
52
#define
S_ISCHR
(mode) (((mode) & S_IFMT) == S_IFCHR)
macro
/third_party/libwebsockets/win32port/dirent/
H
A
D
dirent-win32.h
202
#if !defined(
S_ISCHR
)
203
# define
S_ISCHR
(mode) (((mode) & S_IFMT) == S_IFCHR)
macro
Completed in 14 milliseconds
1
2
3