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

1 2 3

  /external/curl/src/
tool_binmode.c 42 _setmode(stream, O_BINARY);
  /external/libdivsufsort/android_include/
config.h 57 # define _setmode setmode macro
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/prettyauto/
prettyauto.cpp 21 _setmode(_fileno(stdin), _O_BINARY); // NEW
22 _setmode(_fileno(stdout), _O_BINARY); // NEW
  /external/python/cpython3/PC/
generrmap.c 12 _setmode(fileno(stdout), O_BINARY);
  /external/boringssl/src/tool/
tool.cc 95 if (_setmode(_fileno(stdin), _O_BINARY) == -1) {
96 perror("_setmode(_fileno(stdin), O_BINARY)");
99 if (_setmode(_fileno(stdout), _O_BINARY) == -1) {
100 perror("_setmode(_fileno(stdout), O_BINARY)");
103 if (_setmode(_fileno(stderr), _O_BINARY) == -1) {
104 perror("_setmode(_fileno(stderr), O_BINARY)");
  /toolchain/binutils/binutils-2.27/include/
binary-io.h 42 # define setmode _setmode
  /external/libdivsufsort/include/
config.h.cmake 57 # define _setmode setmode
  /external/python/cpython2/Launcher/
launcher_main.cpp 62 _setmode(fileno(stdin), O_BINARY);
63 _setmode(fileno(stdout), O_BINARY);
  /external/skia/tools/
skp_parser.cpp 66 (void)_setmode(_fileno(stdout), _O_BINARY);
  /external/skqp/tools/
skp_parser.cpp 66 (void)_setmode(_fileno(stdout), _O_BINARY);
  /external/libdivsufsort/examples/
mksary.c 97 if(_setmode(_fileno(stdin), _O_BINARY) == -1) {
121 if(_setmode(_fileno(stdout), _O_BINARY) == -1) {
unbwt.c 111 if(_setmode(_fileno(stdin), _O_BINARY) == -1) {
135 if(_setmode(_fileno(stdout), _O_BINARY) == -1) {
suftest.c 97 if(_setmode(_fileno(stdin), _O_BINARY) == -1) {
bwt.c 118 if(_setmode(_fileno(stdin), _O_BINARY) == -1) {
143 if(_setmode(_fileno(stdout), _O_BINARY) == -1) {
  /external/protobuf/src/google/protobuf/compiler/
plugin.cc 163 _setmode(STDIN_FILENO, _O_BINARY);
164 _setmode(STDOUT_FILENO, _O_BINARY);
  /external/clang/tools/c-arcmt-test/
c-arcmt-test.c 117 _setmode( _fileno(stdout), _O_BINARY );
  /external/lz4/programs/
platform.h 122 # include <io.h> /* _setmode, _fileno, _get_osfhandle */
126 # define SET_BINARY_MODE(file) { int unused=_setmode(_fileno(file), _O_BINARY); (void)unused; }
  /external/curl/tests/libtest/
first.c 139 _setmode(stdout, O_BINARY);
  /external/python/cpython2/PC/
pyconfig.h 263 #define _setmode setmode macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
main.c 471 _setmode(fileno(stdin), O_BINARY);
472 _setmode(fileno(stdout), O_BINARY);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
main.c 494 _setmode(fileno(stdin), O_BINARY);
495 _setmode(fileno(stdout), O_BINARY);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
main.c 456 _setmode(fileno(stdin), O_BINARY);
457 _setmode(fileno(stdout), O_BINARY);
  /external/python/cpython2/Modules/
main.c 497 _setmode(fileno(stdin), O_BINARY);
498 _setmode(fileno(stdout), O_BINARY);
  /external/python/cpython3/Modules/
main.c 618 _setmode(fileno(stdin), O_BINARY);
619 _setmode(fileno(stdout), O_BINARY);
620 _setmode(fileno(stderr), O_BINARY);
  /external/libvpx/libvpx/
tools_common.c 32 #define _setmode setmode macro
52 _setmode(_fileno(stream), _O_BINARY);

Completed in 638 milliseconds

1 2 3