HomeSort by relevance Sort by last modified time
    Searched refs:setmode (Results 1 - 25 of 26) sorted by null

1 2

  /external/netcat/data/
xor.c 57 x = setmode (0, O_BINARY); /* make stdin raw */
59 fprintf (stderr, "stdin binary setmode oops: %d\n", x);
62 x = setmode (1, O_BINARY); /* make stdout raw */
64 fprintf (stderr, "stdout binary setmode oops: %d\n", x);
data.c 106 /* Aha: *here's* where that setmode() lib call conflict in ?BSD came from */
107 x = setmode (0, O_BINARY); /* make stdin raw */
109 fprintf (stderr, "stdin binary setmode oops: %d\n", x);
112 x = setmode (1, O_BINARY); /* make stdout raw */
114 fprintf (stderr, "stdout binary setmode oops: %d\n", x);
  /external/openssl/crypto/rc4/
rc4.c 149 setmode(fileno(in),O_BINARY);
150 setmode(fileno(out),O_BINARY);
  /external/jpeg/
cdjpeg.c 18 #include <fcntl.h> /* to declare setmode()'s parameter macros */
19 /* If you have setmode() but not <io.h>, just delete this line: */
20 #include <io.h> /* to declare setmode() */
154 setmode(fileno(stdin), O_BINARY);
172 setmode(fileno(stdout), O_BINARY);
wrjpgcom.c 22 #include <fcntl.h> /* to declare setmode()'s parameter macros */
23 /* If you have setmode() but not <io.h>, just delete this line: */
24 #include <io.h> /* to declare setmode() */
492 setmode(fileno(stdin), O_BINARY);
524 setmode(fileno(stdout), O_BINARY);
rdjpgcom.c 19 #include <fcntl.h> /* to declare setmode()'s parameter macros */
20 /* If you have setmode() but not <io.h>, just delete this line: */
21 #include <io.h> /* to declare setmode() */
478 setmode(fileno(stdin), O_BINARY);
  /external/openssl/crypto/bio/
bss_file.c 328 setmode(fd,O_TEXT);
330 setmode(fd,O_BINARY);
350 setmode(fd, O_TEXT);
352 setmode(fd, O_BINARY);
  /external/quake/quake/src/WinQuake/
vid_dos.h 33 int (*setmode)(viddef_t *vid, struct vmode_s *pcurrentmode); member in struct:vmode_s
vid_dos.cpp 236 stat = (*pcurrentmode->setmode) (&vid, pcurrentmode);
261 Sys_Error ("VID_SetMode: invalid setmode return code %d");
vid_ext.cpp 377 vesa_modes[nummodes].setmode = VID_ExtraInitMode;
  /external/zlib/examples/
zpipe.c 23 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
  /external/libpng/contrib/pngminus/
png2pnm.c 135 setmode (STDIN, O_BINARY);
139 setmode (STDOUT, O_BINARY);
pnm2png.c 134 setmode (STDIN, O_BINARY);
138 setmode (STDOUT, O_BINARY);
  /external/openssl/
e_os.h 236 # define _setmode setmode
346 # define _setmode setmode
431 # define _setmode setmode
  /external/icu4c/extra/uconv/
uconv.cpp 52 #ifndef setmode
53 #define setmode _setmode macro
661 if (setmode(fileno(stdin), O_BINARY) == -1) {
    [all...]
  /external/zlib/contrib/iostream2/
zstream.h 35 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
  /external/libpcap/
savefile.c 110 #define SET_BINMODE(f) setmode(f, O_BINARY)
112 #define SET_BINMODE(f) setmode(fileno(f), O_BINARY)
    [all...]
  /external/libpng/contrib/gregbook/
wpng.c 109 # include <io.h> /* for isatty(), setmode() prototypes */
307 /* some buggy C libraries require BOTH setmode() and fdopen(bin) */
308 setmode(fileno(stdin), O_BINARY);
309 setmode(fileno(stdout), O_BINARY);
  /external/openssl/crypto/des/
des.c 310 setmode(fileno(DES_IN),O_BINARY);
312 setmode(fileno(DES_OUT),O_BINARY);
  /external/zlib/
minigzip.c 38 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
  /external/chromium/third_party/icu/source/tools/genrb/
derb.c 41 #ifndef setmode
42 #define setmode _setmode macro
297 if (setmode(fileno(out), O_BINARY) == -1) {
  /external/icu4c/tools/genrb/
derb.c 41 #ifndef setmode
42 #define setmode _setmode macro
297 if (setmode(fileno(out), O_BINARY) == -1) {
  /external/bzip2/
bzip2.c 107 int retVal = setmode ( fileno ( fd ), \
119 int retVal = setmode ( fileno ( fd ), \
148 int retVal = setmode ( fileno ( fd ), \
    [all...]
  /external/dropbear/
scp.c 382 setmode(0, O_BINARY);
  /external/giflib/
dgif_lib.c 114 setmode(FileHandle, O_BINARY); /* Make sure it is in binary mode. */
    [all...]

Completed in 838 milliseconds

1 2