Home
last modified time | relevance | path

Searched refs:DONT (Results 1 – 16 of 16) sorted by relevance

/external/llvm/test/Transforms/InstCombine/
Ddouble-float-shrink-2.ll2 ; 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/
Dtelnet.c122 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()
Dtelnetd.c41 # define DONT 254 /* you are not to use option */ macro
/external/curl/tests/
Dnegtelnetserver.py92 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/
Drfc2217.py86 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/
Dtelnet.py24 DONT = chr(254) variable
87 elif c in (DO, DONT):
94 opt = IAC + DONT
/external/python/cpython2/Demo/threads/
Dtelnet.py25 DONT = chr(254) variable
87 elif c in (DO, DONT):
94 opt = IAC + DONT
/external/python/cpython3/Lib/
Dtelnetlib.py51 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/
Dtelnetlib.py52 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/
Dprint-telnet.c71 #define DONT 254 /* you are not to use option */ macro
421 case DONT: in telnet_parse()
/external/python/cpython2/Doc/library/
Dtelnetlib.rst23 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/
Dtelnetlib.rst23 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/
Dnetcat.c838 obuf[1] = DONT; in atelnet()
839 else if ((*p == DO) || (*p == DONT)) in atelnet()
/external/python/cpython3/Lib/test/
Dtest_telnetlib.py359 (tl.IAC + tl.DONT + bytes([1]), ": IAC DONT 1\n"),
/external/tcpdump/tests/
Dtelnet-iac-check-oobr.out2 …, options [nop,nop,TS val 119384276 ecr 1497139368], length 65469 [telnet DONT OLD-ENVIRON, SB TER…
/external/python/cpython3/Misc/
DHISTORY14109 DO/DONT correctly.