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:f_oflags
(Results
1 - 19
of
19
) sorted by relevance
/third_party/NuttX/fs/vfs/
H
A
D
fs_fcntl.c
108
ret = (filep->
f_oflags
& O_CLOEXEC) ? FD_CLOEXEC : 0;
in file_vfcntl()
125
filep->
f_oflags
|= O_CLOEXEC;
in file_vfcntl()
145
ret = filep->
f_oflags
;
in file_vfcntl()
163
filep->
f_oflags
&= ~FFCNTL;
in file_vfcntl()
164
filep->
f_oflags
|= oflags;
in file_vfcntl()
H
A
D
fs_write.c
79
if ((((unsigned int)(filep->
f_oflags
)) & O_ACCMODE) == O_RDONLY)
in file_write()
226
if (filep->
f_oflags
& O_DIRECTORY)
in write()
232
if (filep->
f_oflags
& O_APPEND)
in write()
H
A
D
fs_truncate64.c
70
if (((unsigned int)(filep->
f_oflags
) & O_ACCMODE) == O_RDONLY)
in file_truncate64()
166
if (filep->
f_oflags
& O_DIRECTORY)
in ftruncate64()
H
A
D
fs_truncate.c
52
if (((unsigned int)(filep->
f_oflags
) & O_ACCMODE) == O_RDONLY)
in file_truncate()
150
if (filep->
f_oflags
& O_DIRECTORY)
in ftruncate()
H
A
D
fs_read.c
75
else if (((unsigned int)(filep->
f_oflags
) & O_ACCMODE) == O_WRONLY)
in file_read()
207
if (filep->
f_oflags
& O_DIRECTORY)
in read()
H
A
D
fs_dupfd.c
93
filep2 = files_allocate(filep->f_vnode, filep->
f_oflags
, filep->f_pos, filep->f_priv, minfd);
in file_dup()
H
A
D
fs_fsync.c
56
if ((filep->
f_oflags
& O_ACCMODE) == 0)
in file_fsync()
H
A
D
fs_pread64.c
159
if (filep->
f_oflags
& O_DIRECTORY)
in pread64()
H
A
D
fs_pread.c
142
if (filep->
f_oflags
& O_DIRECTORY)
in pread()
H
A
D
fs_pwrite64.c
163
if (filep->
f_oflags
& O_DIRECTORY)
in pwrite64()
H
A
D
fs_pwrite.c
146
if (filep->
f_oflags
& O_DIRECTORY)
in pwrite()
/third_party/NuttX/drivers/pipes/
H
A
D
pipe_common.c
210
if ((filep->
f_oflags
& O_WRONLY) != 0)
in pipecommon_open()
229
if ((filep->
f_oflags
& O_WRONLY) == 0)
in pipecommon_open()
241
if ((filep->
f_oflags
& O_WRONLY) == 0 && /* Read-only */
in pipecommon_open()
308
if ((filep->
f_oflags
& O_WRONLY) != 0)
in pipecommon_close()
331
if ((filep->
f_oflags
& O_WRONLY) == 0)
in pipecommon_close()
414
if (filep->
f_oflags
& O_NONBLOCK)
in pipecommon_read()
669
if (filep->
f_oflags
& O_NONBLOCK)
in pipecommon_write()
733
if (((filep->
f_oflags
& O_WRONLY) != 0) && (nbytes < (dev->d_bufsize - 1)))
in pipecommon_poll()
740
if (((filep->
f_oflags
& O_WRONLY) == 0) && (nbytes > 0))
in pipecommon_poll()
/third_party/musl/porting/uniproton/kernel/src/stdio/
H
A
D
__stdio_seek.c
20
if (filep->
f_oflags
& O_DIRECTORY) {
/third_party/musl/porting/liteos_m/kernel/src/stdio/
H
A
D
__stdio_seek.c
20
if (filep->
f_oflags
& O_DIRECTORY) {
/third_party/NuttX/fs/inode/
H
A
D
fs_files.c
196
if (filep->
f_oflags
& O_DIRECTORY)
in _files_close()
362
filep2->
f_oflags
= filep1->
f_oflags
;
in file_dup2()
449
filep->
f_oflags
= oflags;
in files_allocate()
/third_party/NuttX/fs/driver/
H
A
D
fs_devsyslog.c
309
g_sysdev.sl_file.
f_oflags
= SYSLOG_OFLAGS;
in syslog_initialize()
/third_party/NuttX/fs/vfs/include/
H
A
D
file.h
94
int
f_oflags
; /* Open mode flags */
member
/third_party/FreeBSD/sys/dev/usb/
H
A
D
usb_dev.c
791
if (((unsigned int)filep->
f_oflags
& O_ACCMODE) == O_RDWR) {
in usb_open()
793
} else if (((unsigned int)filep->
f_oflags
& O_ACCMODE) == O_WRONLY) {
in usb_open()
/third_party/NuttX/fs/nfs/
H
A
D
nfs_adapter.c
1590
if (filep->
f_oflags
& O_APPEND)
in vfs_nfs_write()
Completed in 19 milliseconds