OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SHF_ERROR
(Results
1 - 2
of
2
) sorted by null
/external/mksh/src/
shf.c
292
if (shf->flags &
SHF_ERROR
) {
323
if (shf->flags &
SHF_ERROR
) {
365
shf->flags |=
SHF_ERROR
;
409
if (shf->flags & (SHF_EOF |
SHF_ERROR
)) {
410
if (shf->flags &
SHF_ERROR
)
428
shf->flags |=
SHF_ERROR
;
469
return (orig_bsize == bsize ? (
shf_error
(shf) ? EOF : 0) :
541
if ((shf->flags &
SHF_ERROR
) || c == EOF ||
587
if (shf->flags &
SHF_ERROR
) {
596
shf->flags |=
SHF_ERROR
;
[
all
...]
sh.h
906
#define
shf_error
(shf) ((shf)->flags &
SHF_ERROR
)
macro
908
#define shf_clearerr(shf) ((shf)->flags &= ~(SHF_EOF |
SHF_ERROR
))
926
#define
SHF_ERROR
0x0800 /* read()/write() error */
[
all
...]
Completed in 29 milliseconds