OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VSTREAM_RW_FN
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/ibm-public/postfix/dist/src/util/
vstream.h
36
typedef ssize_t (*
VSTREAM_RW_FN
) (int, void *, size_t, int, void *);
48
VSTREAM_RW_FN
read_fn; /* buffer fill action */
49
VSTREAM_RW_FN
write_fn; /* buffer flush action */
167
#define CA_VSTREAM_CTL_READ_FN(v) VSTREAM_CTL_READ_FN, CHECK_VAL(VSTREAM_CTL,
VSTREAM_RW_FN
, (v))
168
#define CA_VSTREAM_CTL_WRITE_FN(v) VSTREAM_CTL_WRITE_FN, CHECK_VAL(VSTREAM_CTL,
VSTREAM_RW_FN
, (v))
190
CHECK_VAL_HELPER_DCL(VSTREAM_CTL,
VSTREAM_RW_FN
);
vstream.c
576
}, STDIN_FILENO, (
VSTREAM_RW_FN
) timed_read, (
VSTREAM_RW_FN
) timed_write,
582
}, STDOUT_FILENO, (
VSTREAM_RW_FN
) timed_read, (
VSTREAM_RW_FN
) timed_write,
588
}, STDERR_FILENO, (
VSTREAM_RW_FN
) timed_read, (
VSTREAM_RW_FN
) timed_write,
1388
stream->read_fn = VSTREAM_CAN_READ(flags) ? (
VSTREAM_RW_FN
) timed_read : 0;
1389
stream->write_fn = VSTREAM_CAN_WRITE(flags) ? (
VSTREAM_RW_FN
) timed_write : 0;
1638
stream->read_fn = va_arg(ap,
VSTREAM_RW_FN
);
1641
stream->write_fn = va_arg(ap,
VSTREAM_RW_FN
);
[
all
...]
Completed in 21 milliseconds
Indexes created Sat Jun 20 00:25:23 UTC 2026