/external/openssh/regress/ |
D | banner.sh | 7 rm -f $OBJ/banner.out $OBJ/banner.in $OBJ/empty.in 12 ( ${SSH} -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \ 13 cmp $OBJ/empty.in $OBJ/banner.out ) || \ 19 touch $OBJ/banner.in 22 echo "abcdefghi" >$OBJ/banner.in 25 cp $OBJ/banner.in $OBJ/banner.out 27 cat $OBJ/banner.out >> $OBJ/banner.in 33 ( ${SSH} -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \ 34 cmp $OBJ/banner.in $OBJ/banner.out ) || \ 40 ( ${SSH} -q -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \ [all …]
|
D | proto-mismatch.sh | 9 banner=`echo ${client} | ${SSHD} -i -f ${OBJ}/sshd_proxy` 11 trace "sshd prints ${banner}" 13 fail "sshd prints ${banner} but accepts version ${client}"
|
D | proto-version.sh | 10 banner=`printf '' | ${SSHD} -i -f ${OBJ}/sshd_proxy` 11 case ${banner} in 26 fail "wrong protocol version ${banner}"
|
/external/python/cpython3/Lib/ |
D | code.py | 188 def interact(self, banner=None, exitmsg=None): argument 213 if banner is None: 217 elif banner: 218 self.write("%s\n" % str(banner)) 278 def interact(banner=None, readfunc=None, local=None, exitmsg=None): argument 301 console.interact(banner, exitmsg) 312 banner = '' variable 314 banner = None variable 315 interact(banner)
|
/external/openssh/ |
D | ssh_api.c | 328 _ssh_read_banner(struct ssh *ssh, struct sshbuf *banner) in _ssh_read_banner() argument 339 sshbuf_reset(banner); in _ssh_read_banner() 353 if ((r = sshbuf_put_u8(banner, c)) != 0) in _ssh_read_banner() 355 if (sshbuf_len(banner) > SSH_MAX_BANNER_LEN) in _ssh_read_banner() 358 if (sshbuf_len(banner) >= 4 && in _ssh_read_banner() 359 memcmp(sshbuf_ptr(banner), "SSH-", 4) == 0) in _ssh_read_banner() 361 debug("%s: %.*s", __func__, (int)sshbuf_len(banner), in _ssh_read_banner() 362 sshbuf_ptr(banner)); in _ssh_read_banner() 376 if ((cp = sshbuf_dup_string(banner)) == NULL || in _ssh_read_banner() 377 (remote_version = calloc(1, sshbuf_len(banner))) == NULL) { in _ssh_read_banner() [all …]
|
D | auth2.c | 110 char *banner = NULL; in auth2_read_banner() local 114 if ((fd = open(options.banner, O_RDONLY)) == -1) in auth2_read_banner() 126 banner = xmalloc(len + 1); in auth2_read_banner() 127 n = atomicio(read, fd, banner, len); in auth2_read_banner() 131 free(banner); in auth2_read_banner() 134 banner[n] = '\0'; in auth2_read_banner() 136 return (banner); in auth2_read_banner() 155 char *banner = NULL; in userauth_banner() local 157 if (options.banner == NULL) in userauth_banner() 160 if ((banner = PRIVSEP(auth2_read_banner())) == NULL) in userauth_banner() [all …]
|
/external/autotest/server/site_tests/platform_USBHIDWake/ |
D | platform_USBHIDWake.py | 55 def prompt(self, banner=">>>>>>>>>>> Achtung! <<<<<<<<<<<"): argument 62 os.write(temp.fd, banner) 99 self.prompt(banner=press_button_banner) 101 self.prompt(banner=bored_now)
|
/external/python/cpython2/Lib/ |
D | code.py | 200 def interact(self, banner=None): argument 220 if banner is None: 225 self.write("%s\n" % str(banner)) 284 def interact(banner=None, readfunc=None, local=None): argument 306 console.interact(banner)
|
/external/scapy/scapy/ |
D | main.py | 465 logo + banner for logo, banner in six.moves.zip_longest( 497 banner = the_banner + " using IPython %s\n" % IPython.__version__ 507 banner1=banner, 511 code.interact(banner = the_banner, local=SESSION) 526 banner1=banner, 533 banner1=banner, 537 code.interact(banner = the_banner, local=SESSION) 540 code.interact(banner = the_banner, local=SESSION)
|
/external/python/cpython3/Lib/test/ |
D | test_code_module.py | 79 self.console.interact(banner='Foo') 87 self.console.interact(banner='') 93 self.console.interact(banner='') 102 self.console.interact(banner='', exitmsg='') 111 self.console.interact(banner='', exitmsg=message)
|
/external/python/cpython3/Lib/asyncio/ |
D | __main__.py | 72 banner = ( 81 banner=banner,
|
/external/llvm-project/lldb/source/Interpreter/ |
D | embedded_interpreter.py | 102 … banner="Python Interactive Interpreter. To exit, type 'quit()', 'exit()'.", 112 … banner="Python Interactive Interpreter. To exit, type 'quit()', 'exit()' or Ctrl-D.", 118 … banner="Python Interactive Interpreter. To exit, type 'quit()', 'exit()' or Ctrl-D.",
|
/external/llvm/lib/CodeGen/ |
D | MachineFunctionPrinterPass.cpp | 34 MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner) in MachineFunctionPrinterPass() 35 : MachineFunctionPass(ID), OS(os), Banner(banner) {} in MachineFunctionPrinterPass()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | MachineFunctionPrinterPass.cpp | 35 MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner) in MachineFunctionPrinterPass() 36 : MachineFunctionPass(ID), OS(os), Banner(banner) {} in MachineFunctionPrinterPass()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineFunctionPrinterPass.cpp | 35 MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner) in MachineFunctionPrinterPass() 36 : MachineFunctionPass(ID), OS(os), Banner(banner) {} in MachineFunctionPrinterPass()
|
/external/libcap-ng/libcap-ng-0.7/bindings/python/test/ |
D | Makefile.in | 305 banner="$$All$$all $$tests passed"; \ 308 banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ 312 banner="$$failed of $$all $$tests failed"; \ 315 … banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ 318 dashes="$$banner"; \ 326 test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ 332 test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ 342 echo "$${col}$$banner$${std}"; \
|
/external/python/cpython3/Doc/library/ |
D | code.rst | 33 .. function:: interact(banner=None, readfunc=None, local=None, exitmsg=None) 40 method of the instance is then run with *banner* and *exitmsg* passed as the 41 banner and exit message to use, if provided. The console object is discarded 143 .. method:: InteractiveConsole.interact(banner=None, exitmsg=None) 145 Closely emulate the interactive Python console. The optional *banner* argument 146 specify the banner to print before the first interaction; by default it prints a 147 banner similar to the one printed by the standard Python interpreter, followed 156 To suppress printing any banner, pass an empty string.
|
/external/libcups/backend/ |
D | lpd.c | 79 … snmp_fd, int mode, const char *user, const char *title, int copies, int banner, int format, int o… 114 int banner; /* Print banner page? */ in main() local 213 banner = 0; in main() 289 banner = !value[0] || !_cups_strcasecmp(value, "on") || in main() 516 username, title, copies, banner, format, order, reserve, in main() 526 username, title, 1, banner, format, order, reserve, 1, in main() 706 int banner, /* I - Print LPD banner? */ in lpd_queue() argument 1013 if (banner) in lpd_queue()
|
/external/skia/gm/ |
D | complexclip.cpp | 322 SkString banner; in draw_banner() local 323 banner.append("Persp: "); in draw_banner() 326 banner.append("Both Clips"); in draw_banner() 333 banner.append("Gradient"); in draw_banner() 336 banner.append("Image"); in draw_banner() 340 banner.append(" (w/ LM, should equal top row)"); in draw_banner() 344 canvas->drawString(banner.c_str(), 20.f, -30.f, kFont, SkPaint()); in draw_banner()
|
/external/pigweed/pw_cli/py/pw_cli/ |
D | arguments.py | 23 from pw_cli.branding import banner 39 print(banner(), file=sys.stderr)
|
/external/python/cpython2/Doc/library/ |
D | code.rst | 32 .. function:: interact([banner[, readfunc[, local]]]) 39 method of the instance is then run with *banner* passed as the banner to 135 .. method:: InteractiveConsole.interact([banner]) 137 Closely emulate the interactive Python console. The optional banner argument 138 specify the banner to print before the first interaction; by default it prints a 139 banner similar to the one printed by the standard Python interpreter, followed
|
/external/linux-kselftest/tools/testing/selftests/memfd/ |
D | memfd_test.c | 886 static void test_share_dup(char *banner, char *b_suffix) in test_share_dup() argument 890 printf("%s %s %s\n", memfd_str, banner, b_suffix); in test_share_dup() 927 static void test_share_mmap(char *banner, char *b_suffix) in test_share_mmap() argument 932 printf("%s %s %s\n", memfd_str, banner, b_suffix); in test_share_mmap() 962 static void test_share_open(char *banner, char *b_suffix) in test_share_open() argument 966 printf("%s %s %s\n", memfd_str, banner, b_suffix); in test_share_open() 1004 static void test_share_fork(char *banner, char *b_suffix) in test_share_fork() argument 1009 printf("%s %s %s\n", memfd_str, banner, b_suffix); in test_share_fork()
|
/external/pigweed/pw_cli/ |
D | docs.rst | 144 usage: pw [-h] [-C DIRECTORY] [-l LOGLEVEL] [--no-banner] [command] ... 176 of Pigweed, designing a banner for the project. Pigweed supports configuring 179 * ``PW_BRANDING_BANNER`` - Absolute path to a filename containing a banner to 181 * ``PW_BRANDING_BANNER_COLOR`` - Color of the banner. Possible values include: 192 $ cat foo-banner.txt 200 $ export PW_BRANDING_BANNER="$(pwd)/foo-banner.txt" 233 that you can create a multi-color banner, and save it with the ``File`` --> 234 ``Export as ANSi (UTF-8)`` option, and use it directly as a Pigweed banner. 261 - Supporting branding the ``bootstrap/activate`` banner, which for technical 262 reasons is not the same code as the banner printing from the Python tooling.
|
/external/expat/doc/ |
D | style.css | 14 .banner { 20 .banner h1 {
|
/external/libcap-ng/libcap-ng-0.7/src/test/ |
D | Makefile.in | 419 banner="$$All$$all $$tests passed"; \ 422 banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ 426 banner="$$failed of $$all $$tests failed"; \ 429 … banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ 432 dashes="$$banner"; \ 440 test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ 446 test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ 456 echo "$${col}$$banner$${std}"; \
|