OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:f_iflags
(Results
1 - 8
of
8
) sorted by null
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
SysCalls.c
65
retval = (BOOLEAN)((filp->
f_iflags
!= 0) && // TRUE if OPEN
94
if(Mfd[i].
f_iflags
== 0) {
95
Mfd[i].
f_iflags
= FIF_LARVAL; // Temporarily mark this fd as reserved
110
gMD->fdarray[fd].
f_iflags
|= FIF_DELCLOSE;
136
retval = (Fp->
f_iflags
& _S_ITTY) ? 1 : 0;
198
if(Fp->
f_iflags
& FIF_DELCLOSE) {
208
Fp->
f_iflags
= NewState; // Close this FD or reserve it
265
Fp->
f_iflags
= 0; // Close this FD
394
retval = MyFd->
f_iflags
;
401
retval = MyFd->
f_iflags
;
[
all
...]
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
socket.c
147
pDescriptor->
f_iflags
= DTYPE_SOCKET;
289
if ( DTYPE_SOCKET == ( pDescriptor->
f_iflags
& DTYPE_MASK )) {
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/
TerminalFunctions.c
156
if((filp->
f_iflags
& _S_ITTY) != 0) {
214
if((filp->
f_iflags
& _S_ITTY) != 0) {
IIOutilities.c
138
if(((pStdOut->
f_iflags
& _S_ITTY) != 0) && // file is a TTY
181
if(((filp->
f_iflags
& _S_ITTY) != 0) && // file is a TTY
227
if(((pStdOut->
f_iflags
& _S_ITTY) != 0) && // file is a TTY
IIO.c
88
if(filp->
f_iflags
& _S_IWTTY) {
212
if(filp->
f_iflags
& _S_IWTTY) {
301
if(filp->
f_iflags
& _S_IWTTY) {
/device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/
kfile.h
65
/* Organization of the
f_iflags
member of the __filedes structure. */
98
UINT32
f_iflags
; // In use if non-zero
member in struct:__filedes
151
#define FILE_IS_USABLE(fp) (((fp)->
f_iflags
& \
156
(fp)->
f_iflags
&= ~FIF_LARVAL; \
224
UINT32
f_iflags
; /* internal flags; FIF_* */
263
if ((fp)->
f_iflags
& FIF_WANTCLOSE) { \
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/UefiShell/
daShell.c
529
filp->
f_iflags
= 0; // Release our reservation on this FD
538
filp->
f_iflags
= 0; // Release our reservation on this FD
547
filp->
f_iflags
= 0; // Release our reservation on this FD
555
filp->
f_iflags
|= S_IFREG;
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Console/
daConsole.c
11
f_iflags
.
430
Buffer->st_mode = filp->
f_iflags
;
517
filp->
f_iflags
|= (_S_IFCHR | _S_ITTY | _S_IWTTY | _S_ICONSOLE);
Completed in 125 milliseconds