/external/llvm/test/Transforms/InstCombine/ |
D | double-float-shrink-2.ll | 2 ; RUN: opt < %s -instcombine -S -mtriple "i386-pc-win32" | FileCheck -check-prefix=DONT-SIMPLIFY %s 20 ; DONT-SIMPLIFY: call double @floor( 21 ; DONT-SIMPLIFY: call double @ceil( 22 ; DONT-SIMPLIFY: call double @round( 23 ; DONT-SIMPLIFY: call double @nearbyint( 24 ; DONT-SIMPLIFY: call double @trunc( 25 ; DONT-SIMPLIFY: call double @fabs(
|
/external/toybox/toys/pending/ |
D | telnet.c | 122 put_iac(6, IAC,DONT,TELOPT_ECHO,IAC,DONT, TELOPT_SGA); in handle_esc() 187 if(ddww == DONT) break; in handle_ddww() 193 put_iac(3, IAC,DONT,TELOPT_ECHO); in handle_ddww() 204 put_iac(3, IAC,DONT,TELOPT_SGA); in handle_ddww() 220 if(ddww == WILL) put_iac(3, IAC,DONT,opt); in handle_ddww() 242 case DONT: /* FALLTHROUGH */ in read_server()
|
D | telnetd.c | 41 # define DONT 254 /* you are not to use option */ macro
|
/external/curl/tests/ |
D | negtelnetserver.py | 92 DONT = 5 variable in Negotiator 123 elif self.state in [self.WILL, self.WONT, self.DO, self.DONT]: 166 elif byte_int == NegTokens.DONT: 169 self.state = self.DONT 213 self.send_iac([NegTokens.DONT, NegOptions.to_val(option_str)]) 248 DONT = 254 variable in NegTokens
|
/external/chromium-trace/catapult/third_party/pyserial/serial/ |
D | rfc2217.py | 86 DONT = to_bytes([254]) variable 399 TelnetOption(self, 'we-BINARY', BINARY, WILL, WONT, DO, DONT, INACTIVE), 400 TelnetOption(self, 'we-RFC2217', COM_PORT_OPTION, WILL, WONT, DO, DONT, REQUESTED), 404 TelnetOption(self, 'ECHO', ECHO, DO, DONT, WILL, WONT, REQUESTED), 405 TelnetOption(self, 'we-SGA', SGA, WILL, WONT, DO, DONT, REQUESTED), 406 TelnetOption(self, 'they-SGA', SGA, DO, DONT, WILL, WONT, REQUESTED), 407 TelnetOption(self, 'they-BINARY', BINARY, DO, DONT, WILL, WONT, INACTIVE), 408 TelnetOption(self, 'they-RFC2217', COM_PORT_OPTION, DO, DONT, WILL, WONT, REQUESTED), 732 elif byte in (DO, DONT, WILL, WONT): 771 self.telnetSendOption((command == WILL and DONT or WONT), option) [all …]
|
/external/python/cpython2/Demo/sockets/ |
D | telnet.py | 24 DONT = chr(254) variable 87 elif c in (DO, DONT): 94 opt = IAC + DONT
|
/external/python/cpython2/Demo/threads/ |
D | telnet.py | 25 DONT = chr(254) variable 87 elif c in (DO, DONT): 94 opt = IAC + DONT
|
/external/python/cpython3/Lib/ |
D | telnetlib.py | 51 DONT = bytes([254]) variable 445 if c in (DO, DONT, WILL, WONT): 473 if cmd in (DO, DONT): 486 self.sock.sendall(IAC + DONT + opt)
|
/external/python/cpython2/Lib/ |
D | telnetlib.py | 52 DONT = chr(254) variable 497 if c in (DO, DONT, WILL, WONT): 525 if cmd in (DO, DONT): 538 self.sock.sendall(IAC + DONT + opt)
|
/external/tcpdump/ |
D | print-telnet.c | 71 #define DONT 254 /* you are not to use option */ macro 421 case DONT: in telnet_parse()
|
/external/python/cpython2/Doc/library/ |
D | telnetlib.rst | 23 The symbolic constants for the telnet commands are: IAC, DONT, DO, WONT, WILL, 212 (DO/DONT/WILL/WONT), option). No other action is done afterwards by telnetlib.
|
/external/python/cpython3/Doc/library/ |
D | telnetlib.rst | 23 The symbolic constants for the telnet commands are: IAC, DONT, DO, WONT, WILL, 220 (DO/DONT/WILL/WONT), option). No other action is done afterwards by telnetlib.
|
/external/netcat/ |
D | netcat.c | 838 obuf[1] = DONT; in atelnet() 839 else if ((*p == DO) || (*p == DONT)) in atelnet()
|
/external/python/cpython3/Lib/test/ |
D | test_telnetlib.py | 359 (tl.IAC + tl.DONT + bytes([1]), ": IAC DONT 1\n"),
|
/external/tcpdump/tests/ |
D | telnet-iac-check-oobr.out | 2 …, options [nop,nop,TS val 119384276 ecr 1497139368], length 65469 [telnet DONT OLD-ENVIRON, SB TER…
|
/external/python/cpython3/Misc/ |
D | HISTORY | 14109 DO/DONT correctly.
|