Home
last modified time | relevance | path

Searched refs:noecho (Results 1 – 19 of 19) sorted by relevance

/external/curl/src/
Dtool_getpass.c188 static struct_term noecho; in ttyecho() local
195 noecho = withecho; in ttyecho()
196 noecho.c_lflag &= ~ECHO; in ttyecho()
197 tcsetattr(fd, TCSANOW, &noecho); in ttyecho()
200 noecho = withecho; in ttyecho()
201 noecho.c_lflag &= ~ECHO; in ttyecho()
202 ioctl(fd, TCSETA, &noecho); in ttyecho()
/external/e2fsprogs/lib/ss/
Dtest_ss.c42 int noecho; in source_file() local
62 noecho = 0; in source_file()
64 noecho = 1; in source_file()
73 if (!noecho) in source_file()
/external/libcups/cups/
Dusersys.c710 noecho; /* No echo input mode */ in _cupsGetPassword()
732 noecho = original; in _cupsGetPassword()
733 noecho.c_lflag &= (tcflag_t)~(ICANON | ECHO | ECHOE | ISIG); in _cupsGetPassword()
734 noecho.c_cc[VMIN] = 1; in _cupsGetPassword()
735 noecho.c_cc[VTIME] = 0; in _cupsGetPassword()
737 if (tcsetattr(tty, TCSAFLUSH, &noecho)) in _cupsGetPassword()
760 if (passch == noecho.c_cc[VEOL] || in _cupsGetPassword()
762 passch == noecho.c_cc[VEOL2] || in _cupsGetPassword()
772 else if (passch == noecho.c_cc[VERASE] || in _cupsGetPassword()
787 else if (passch == noecho.c_cc[VKILL]) in _cupsGetPassword()
[all …]
/external/gptfdisk/
Dgptcurses.cc45 noecho(); in GPTDataCurses()
365 noecho(); in ChangeName()
391 noecho(); in ChangeType()
406 noecho(); in SetAlignment()
442 noecho(); in MakeNewPart()
453 noecho(); in MakeNewPart()
487 noecho(); in SaveData()
507 noecho(); in Backup()
520 noecho(); in LoadBackup()
/external/e2fsprogs/tests/progs/
Dtest_icount.c254 int noecho; in source_file() local
274 noecho = 0; in source_file()
276 noecho = 1; in source_file()
285 if (!noecho) in source_file()
Dtest_rel.c670 int noecho; in source_file() local
690 noecho = 0; in source_file()
692 noecho = 1; in source_file()
701 if (!noecho) in source_file()
/external/libvncserver/libvncclient/
Dvncviewer.c70 struct termios save,noecho; in ReadPassword()
73 noecho=save; noecho.c_lflag &= ~ECHO; in ReadPassword()
74 if(tcsetattr(fileno(stdin),TCSAFLUSH,&noecho)!=0) return p; in ReadPassword()
/external/e2fsprogs/lib/ext2fs/
Dtst_bitmaps.c44 int noecho; in source_file() local
64 noecho = 0; in source_file()
66 noecho = 1; in source_file()
75 if (!noecho) in source_file()
/external/python/cpython2/Lib/curses/
Dwrapper.py26 curses.noecho()
/external/e2fsprogs/ext2ed/
Dmain.c203 noecho(); in parser()
303 noecho(); in parser()
/external/syslinux/gpxe/src/hci/mucurses/
Dkb.c140 int noecho ( void ) { in noecho() function
/external/python/cpython2/Demo/curses/
Drain.py37 curses.noecho()
/external/autotest/client/profilers/powertop/src/
Ddisplay.c122 noecho(); /* dont echo input */ in initialize_curses()
/external/python/cpython2/Lib/test/
Dtest_curses.py201 curses.nocbreak, curses.noecho, curses.nonl,
/external/syslinux/gpxe/src/include/
Dcurses.h335 extern int noecho ( void );
/external/toybox/kconfig/lxdialog/
Dutil.c282 noecho(); in reset_dialog()
/external/python/cpython2/Doc/howto/
Dcurses.rst89 This requires calling the :func:`noecho` function. ::
91 curses.noecho()
/external/python/cpython2/Modules/
D_cursesmodule.c1684 NoArgNoReturnFunction(noecho) in NoArgNoReturnFunction()
/external/python/cpython2/Doc/library/
Dcurses.rst405 .. function:: noecho()