Home
last modified time | relevance | path

Searched refs:banner (Results 1 – 25 of 123) sorted by relevance

12345

/external/openssh/regress/
Dbanner.sh7 rm -f $OBJ/banner.out $OBJ/banner.in $OBJ/empty.in
12 ( ${SSH} -2 -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} -2 -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \
34 cmp $OBJ/banner.in $OBJ/banner.out ) || \
40 ( ${SSH} -q -2 -F $OBJ/ssh_proxy otherhost true 2>$OBJ/banner.out && \
[all …]
Dproto-mismatch.sh10 banner=`echo ${client} | ${SSHD} -o "Protocol=${server}" -i -f ${OBJ}/sshd_proxy`
12 trace "sshd prints ${banner}"
14 fail "sshd prints ${banner} and accepts connect with version ${client}"
Dproto-version.sh11 banner=`printf '' | ${SSHD} -o "Protocol=${version}" -i -f ${OBJ}/sshd_proxy`
12 case ${banner} in
27 fail "wrong protocol version ${banner} for ${version}"
/external/python/cpython3/Lib/
Dcode.py188 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/
Dauth2.c107 char *banner = NULL; in auth2_read_banner() local
111 if ((fd = open(options.banner, O_RDONLY)) == -1) in auth2_read_banner()
123 banner = xmalloc(len + 1); in auth2_read_banner()
124 n = atomicio(read, fd, banner, len); in auth2_read_banner()
128 free(banner); in auth2_read_banner()
131 banner[n] = '\0'; in auth2_read_banner()
133 return (banner); in auth2_read_banner()
152 char *banner = NULL; in userauth_banner() local
154 if (options.banner == NULL || (datafellows & SSH_BUG_BANNER) != 0) in userauth_banner()
157 if ((banner = PRIVSEP(auth2_read_banner())) == NULL) in userauth_banner()
[all …]
Dservconf.h151 char *banner; /* SSH-2 banner message */ member
214 M_CP_STROPT(banner); \
/external/autotest/server/site_tests/platform_USBHIDWake/
Dplatform_USBHIDWake.py55 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/
Dcode.py200 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/
Dmain.py465 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/
Dtest_code_module.py79 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/autotest/scheduler/
Dmonitor_db_cleanup.py153 banner = 'invalid %s related to valid %s' % (invalid_model_name,
155 with _cleanup_warning_banner(banner, len(errors)):
404 def _cleanup_warning_banner(banner, error_count=None): argument
411 banner += ' (total: %d)' % error_count
412 logging.warning('#### START: %s ####', banner)
416 logging.warning('#### END: %s ####', banner)
/external/libcap-ng/libcap-ng-0.7/bindings/python/test/
DMakefile.in305 banner="$$All$$all $$tests passed"; \
308 banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
312 banner="$$failed of $$all $$tests failed"; \
315banner="$$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/
Dcode.rst33 .. 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/linux-kselftest/tools/testing/selftests/memfd/
Dmemfd_test.c777 static void test_share_dup(char *banner, char *b_suffix) in test_share_dup() argument
781 printf("%s %s %s\n", memfd_str, banner, b_suffix); in test_share_dup()
818 static void test_share_mmap(char *banner, char *b_suffix) in test_share_mmap() argument
823 printf("%s %s %s\n", memfd_str, banner, b_suffix); in test_share_mmap()
853 static void test_share_open(char *banner, char *b_suffix) in test_share_open() argument
857 printf("%s %s %s\n", memfd_str, banner, b_suffix); in test_share_open()
895 static void test_share_fork(char *banner, char *b_suffix) in test_share_fork() argument
900 printf("%s %s %s\n", memfd_str, banner, b_suffix); in test_share_fork()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DMachineFunctionPrinterPass.cpp31 MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner) in MachineFunctionPrinterPass()
32 : MachineFunctionPass(ID), OS(os), Banner(banner) {} in MachineFunctionPrinterPass()
/external/adeb/addons/
Dbashrc4 if [ ! -f .banner.shown ]; then
16 touch .banner.shown
/external/llvm/lib/CodeGen/
DMachineFunctionPrinterPass.cpp34 MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner) in MachineFunctionPrinterPass()
35 : MachineFunctionPass(ID), OS(os), Banner(banner) {} in MachineFunctionPrinterPass()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMachineFunctionPrinterPass.cpp34 MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner) in MachineFunctionPrinterPass()
35 : MachineFunctionPass(ID), OS(os), Banner(banner) {} in MachineFunctionPrinterPass()
/external/python/cpython2/Doc/library/
Dcode.rst32 .. 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/libcap-ng/libcap-ng-0.7/src/test/
DMakefile.in419 banner="$$All$$all $$tests passed"; \
422 banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
426 banner="$$failed of $$all $$tests failed"; \
429banner="$$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}"; \
/external/u-boot/lib/efi/
Defi.c53 int efi_init(struct efi_priv *priv, const char *banner, efi_handle_t image, in efi_init() argument
68 efi_puts(priv, banner); in efi_init()
/external/libexif/test/nls/
DMakefile.in450 banner="$$All$$all $$tests passed"; \
453 banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
457 banner="$$failed of $$all $$tests failed"; \
460banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
463 dashes="$$banner"; \
471 test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
477 test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
486 echo "$$banner"; \
/external/expat/doc/
Dstyle.css14 .banner {
20 .banner h1 {
/external/jline/src/src/site/resources/css/
Dsite.css23 #banner {
217 #banner a#projectLogo img {
303 /* remove banner: comment the following lines for the full layout */ /*
304 #banner, #breadcrumbs {
/external/grpc-grpc/tools/codegen/core/
Dgen_settings_ids.py56 def put_banner(files, banner): argument
59 for line in banner:

12345