Searched refs:EOF (Results 1 - 11 of 11) sorted by relevance

/darwin-on-arm/xnu/SETUP/config/
H A Dmain.c224 * returns EOF on end of file
235 while ((ch = getc(fp)) != EOF)
238 if (ch == EOF)
239 return ((char *)EOF);
246 while ((ch = getc(fp)) != EOF) {
252 if (ch == EOF)
253 return ((char *)EOF);
260 * returns EOF on end of file
272 while ((ch = getc(fp)) != EOF) {
278 if (ch == EOF)
[all...]
H A Dmkheaders.c194 if ((inw = get_word(inf)) == 0 || inw == (char *)EOF)
196 if ((inw = get_word(inf)) == 0 || inw == (char *)EOF)
200 if (cp == 0 || cp == (char *)EOF)
208 if (cp == (char *)EOF)
H A Dmkmakefile.c98 if (word == (char *)EOF) \
401 if (wd == (char *)EOF) {
424 while ((wd=get_word(fp)) && wd != (char *)EOF)
858 while ((c = fgetc(tfp)) != EOF)
861 if (fgetc(ofp) == EOF)
875 while ((c = fgetc(tfp)) != EOF)
/darwin-on-arm/xnu/bsd/miscfs/devfs/
H A Dreproto.sh7 exec /usr/bin/perl << *EOF*
73 *EOF*
/darwin-on-arm/xnu/
H A Dxnu-build183 cat <<-EOF > $SCRIPT
197 EOF
229 cat <<-EOF >> $SCRIPT
231 EOF
233 cat <<-EOF >> $SCRIPT
235 EOF
238 cat <<-EOF >> $SCRIPT
245 EOF
265 cat <<-EOF >> $SCRIPT
268 EOF
[all...]
/darwin-on-arm/xnu/bsd/sys/
H A Dmake_posix_availability.sh39 cat <<EOF
71 EOF
H A Dmake_symbol_aliasing.sh43 cat <<EOF
75 EOF
/darwin-on-arm/xnu/SETUP/decomment/
H A Ddecomment.c85 if (bufchar == EOF)
/darwin-on-arm/xnu/libkern/zlib/
H A Dgzio.c149 s->back = EOF;
284 Read a byte from a gz_stream; update next_in and avail_in. Return EOF
291 if (s->z_eof) return EOF;
298 return EOF;
363 /* len is garbage if EOF but the loop below will quit anyway */
364 while (len-- != 0 && get_byte(s) != EOF) ;
367 while ((c = get_byte(s)) != 0 && c != EOF) ;
370 while ((c = get_byte(s)) != 0 && c != EOF) ;
433 if (s->z_err == Z_STREAM_END) return 0; /* EOF */
439 if (s->stream.avail_out && s->back != EOF) {
[all...]
/darwin-on-arm/xnu/tools/
H A Dremote_build.sh152 cat > "${BUILDSCRIPTDIR}/${BUILDSCRIPTNAME}" <<EOF
173 EOF
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_cluster.c194 static int cluster_push_now(vnode_t vp, struct cl_extent *, off_t EOF, int flags, int (*)(buf_t, void *), void *callback_arg);
196 static int cluster_try_push(struct cl_writebehind *, vnode_t vp, off_t EOF, int push_flag, int flags, int (*)(buf_t, void *), void *callback_arg);
198 static void sparse_cluster_switch(struct cl_writebehind *, vnode_t vp, off_t EOF, int (*)(buf_t, void *), void *callback_arg);
199 static void sparse_cluster_push(void **cmapp, vnode_t vp, off_t EOF, int push_flag, int io_flags, int (*)(buf_t, void *), void *callback_arg);
200 static void sparse_cluster_add(void **cmapp, vnode_t vp, struct cl_extent *, off_t EOF, int (*)(buf_t, void *), void *callback_arg);
957 * has blocks allocated to back the page beyond the EOF, we want to
958 * make sure to write out the zero's that are sitting beyond the EOF
960 * if a hole is created via a lseek/write beyond the current EOF,
1293 * if this upl contains the EOF and it is not a multiple of PAGE_SIZE
1299 * of the page beyond the EOF, sinc
5158 cluster_try_push(struct cl_writebehind *wbp, vnode_t vp, off_t EOF, int push_flag, int io_flags, int (*callback)(buf_t, void *), void *callback_arg) argument
5334 cluster_push_now(vnode_t vp, struct cl_extent *cl, off_t EOF, int flags, int (*callback)(buf_t, void *), void *callback_arg) argument
5507 sparse_cluster_switch(struct cl_writebehind *wbp, vnode_t vp, off_t EOF, int (*callback)(buf_t, void *), void *callback_arg) argument
5540 sparse_cluster_push(void **scmap, vnode_t vp, off_t EOF, int push_flag, int io_flags, int (*callback)(buf_t, void *), void *callback_arg) argument
5571 sparse_cluster_add(void **scmap, vnode_t vp, struct cl_extent *cl, off_t EOF, int (*callback)(buf_t, void *), void *callback_arg) argument
[all...]

Completed in 43 milliseconds