/external/scapy/scapy/layers/tls/ |
D | automaton_srv.py | 97 self.vprint("Version : %s" % v) 99 self.vprint("Cipher suite : %s" % cs) 101 self.vprint("Master secret : %s" % repr_hex(ms)) 103 self.vprint("Client certificate chain: %r" % s.client_certs) 104 self.vprint() 128 self.vprint("Starting TLS server automaton.") 129 self.vprint("Receiving 'stop_server' will cause a graceful exit.") 130 self.vprint("Interrupting with Ctrl-Z might leave a loose socket hanging.") 143 self.vprint() 144 self.vprint(m) [all …]
|
D | automaton_cli.py | 96 self.vprint("Unrecognized TLS version option.") 115 self.vprint("Version : %s" % v) 117 self.vprint("Cipher suite : %s" % cs) 122 self.vprint("Master secret : %s" % repr_hex(ms)) 124 self.vprint("Server certificate chain: %r" % s.server_certs) 125 self.vprint() 130 self.vprint("Starting TLS client automaton.") 149 self.vprint() 150 self.vprint("Trying to connect on %s:%d" % (self.remote_ip, 155 self.vprint() [all …]
|
D | automaton.py | 133 self.vprint("Could not join host ! Retrying...") 223 def vprint(self, s=""): member in _TLSAutomaton
|
/external/ltp/testcases/kernel/hotplug/memory_hotplug/ |
D | memtoy.c | 130 void vprint(char *format, ...) in vprint() function 188 vprint("signal hander entered for sig %s\n", gcp->signame); in signal_handler() 240 vprint("%s: established handler for %s\n", in set_signals() 261 vprint("%s: wakened by signal %s\n", __FUNCTION__, glctx.signame); in wait_for_signal() 330 vprint("!!!%s from 0x%lx thru 0x%lx\n", in touch_memory() 485 vprint("%s: pagesize = %d\n", gcp->program_name, gcp->pagesize); in main() 487 vprint("%s: NUMA available - max node: %d\n", in main()
|
D | memtoy.h | 96 extern void vprint(char*, ...);
|
D | segment.c | 274 vprint("%s: mmap()ed anon seg %s at 0x%lx-0x%lx\n", in map_anon_segment() 407 vprint("%s: mmap()ed file seg %s at 0x%lx-0x%lx\n", in map_file_segment() 435 vprint("%s: shm seg %s id: %d\n", in get_shm_segment() 455 vprint("%s: mmap()ed shm seg %s at 0x%lx-0x%lx\n", in map_shm_segment()
|
D | commands.c | 1232 vprint("%s>%s\n", gcp->program_name, cmdline); in process_commands()
|
/external/fmtlib/include/fmt/ |
D | posix.h | 180 void vprint(string_view format_str, format_args args) { in vprint() function 181 fmt::vprint(file_, format_str, args); in vprint() 186 vprint(format_str, make_format_args(args...)); in print()
|
D | ostream.h | 117 void vprint(std::basic_ostream<Char>& os, basic_string_view<Char> format_str, 136 vprint(os, to_string_view(format_str),
|
D | color.h | 502 void vprint(std::FILE* f, const text_style& ts, const S& format, in vprint() function 524 vprint(f, ts, format_str, basic_format_args<context>(as)); in print()
|
D | core.h | 1479 FMT_API void vprint(std::FILE* f, string_view format_str, format_args args); 1480 FMT_API void vprint(string_view format_str, format_args args); 1496 vprint(f, to_string_view(format_str), 1512 vprint(to_string_view(format_str),
|
D | format-inl.h | 1379 FMT_FUNC void vprint(std::FILE* f, string_view format_str, format_args args) { 1386 FMT_FUNC void vprint(string_view format_str, format_args args) { 1387 vprint(stdout, format_str, args);
|
D | format.h | 3450 void vprint(std::FILE* f, basic_string_view<Char> format_str, 3460 void vprint(basic_string_view<Char> format_str, wformat_args args) { 3461 vprint(stdout, format_str, args);
|
/external/fmtlib/doc/ |
D | api.rst | 51 .. doxygenfunction:: vprint(string_view, format_args) 54 .. doxygenfunction:: vprint(std::FILE *, string_view, format_args)
|
D | index.rst | 148 call fmt::v5::vprint(fmt::v5::basic_string_view<char>, fmt::v5::format_args)
|
/external/fmtlib/ |
D | README.rst | 145 fmt::vprint(format, args);
|
D | ChangeLog.rst | 89 of template instantiations. ``wchar_t`` overload of ``vprint`` was moved from 439 * Made ``print`` and ``vprint`` report I/O errors 1246 fmt::vprint(format, args);
|