/haiku/src/libs/bsd/ |
H A D | getpass.c | 26 if (tcgetattr(fileno(stdin), &termios) == 0) { in getpass() 30 changed = tcsetattr(fileno(stdin), TCSAFLUSH, &noEchoTermios) == 0; in getpass() 38 if (fgets(password, sizeof(password), stdin) != NULL) { in getpass() 52 tcsetattr(fileno(stdin), TCSAFLUSH, &termios); in getpass()
|
/haiku/build/scripts/ |
H A D | bootstrap_client.py | 47 connections = [controlConnection, stdioConnection, stderrConnection, sys.stdin] 49 while connections and (len(connections) > 1 or not sys.stdin in connections): 53 if sys.stdin in readable: 54 data = sys.stdin.readline(bufferSize) 58 connections.remove(sys.stdin)
|
/haiku/src/system/libroot/posix/glibc/libio/ |
H A D | stdio.c | 31 #undef stdin 34 _IO_FILE *stdin = (FILE *) &_IO_2_1_stdin_; variable 51 AL(stdin);
|
H A D | wscanf.c | 33 done = _IO_vfwscanf (stdin, format, arg, NULL); in wscanf()
|
/haiku/src/libs/libtelnet/ |
H A D | read_password.c | 108 while (!fgets(s, max, stdin)); 115 if (!fgets(key_string, sizeof(key_string), stdin)) { 116 clearerr(stdin);
|
/haiku/src/system/libroot/posix/glibc/stdio-common/ |
H A D | scanf.c | 37 done = INTUSE(_IO_vfscanf) (stdin, format, arg, NULL); in scanf() 39 done = vfscanf (stdin, format, arg); in scanf()
|
/haiku/src/tests/system/libroot/posix/ |
H A D | tst-getwc.c | 32 while (!feof(stdin) && n < sizeof(buf) - 1) { in main() 33 buf[n] = getwc(stdin); in main()
|
H A D | truncate.cpp | 43 if (fgets(yes, sizeof(yes), stdin) == NULL || tolower(yes[0]) != 'y') in main()
|
/haiku/src/bin/multiuser/ |
H A D | login.cpp | 38 while ((c = fgetc(stdin)) != EOF && c != '\r' && c != '\n') { in read_string() 46 if (ferror(stdin) != 0) in read_string() 47 return ferror(stdin); in read_string()
|
/haiku/src/tests/system/network/ |
H A D | udp_client.c | 26 while (!feof(stdin)) { in udp_client() 27 status = fread(sendbuf, 1, MAXLEN, stdin); in udp_client()
|
H A D | tcp_client.c | 77 if (fgets(buffer, sizeof(buffer) - 1, stdin) == NULL) { in main()
|
/haiku/src/system/boot/platform/u-boot/ |
H A D | console.cpp | 48 FILE* stdin; variable 169 stdin = (FILE *)&sSerial; in console_init()
|
/haiku/src/tools/misc/ |
H A D | bin2h.c | 12 FILE *infp = stdin; in main()
|
H A D | bin2asm.c | 12 FILE *infp = stdin; in main()
|
/haiku/src/tests/add-ons/kernel/network/ |
H A D | net_stack_tester.cpp | 35 fgets(buffer,sizeof(buffer), stdin); in main()
|
/haiku/src/system/libroot/posix/glibc/include/bits/ |
H A D | stdio.h | 43 return _IO_getc (stdin); in getchar() 59 return _IO_getc_unlocked (stdin); in getchar_unlocked()
|
/haiku/src/bin/keymap/ |
H A D | main.cpp | 65 status = keymap.LoadSource(stdin); in load_keymap() 70 BFileIO fileIO(stdin); in load_keymap()
|
/haiku/src/tests/system/kernel/ |
H A D | lock_node_test.cpp | 30 fgets(a, 5, stdin); in main()
|
/haiku/src/system/boot/platform/bios_ia32/ |
H A D | console.cpp | 42 FILE *stdin, *stdout, *stderr; variable 201 stdin = (FILE *)&sConsole; in console_init()
|
/haiku/src/system/boot/platform/next_m68k/ |
H A D | console.cpp | 43 FILE *stdin, *stdout, *stderr; variable 205 stdin = (FILE *)&sConsole; in console_init()
|
/haiku/src/system/boot/platform/atari_m68k/ |
H A D | console.cpp | 45 FILE *stdin, *stdout, *stderr; variable 217 stdin = (FILE *)&sConsole; in console_init()
|
/haiku/src/bin/network/telnet/ |
H A D | authenc.c | 98 res = fgets(result, length, stdin); in telnet_gets()
|
/haiku/src/bin/pkgman/ |
H A D | DecisionProvider.cpp | 41 if (fgets(buffer, 32, stdin)) { in YesNoDecisionNeeded()
|
/haiku/src/system/libroot/stubbed/ |
H A D | generate_stubs.py | 12 for line in sys.stdin.readlines():
|
/haiku/src/system/boot/platform/efi/ |
H A D | console.cpp | 58 FILE *stdin, *stdout, *stderr; variable 235 stdin = (FILE *)gConsoleNode; in console_init()
|