Searched refs:textbuf (Results 1 - 20 of 20) sorted by relevance

/freebsd-13-stable/sys/dev/ocs_fc/
H A Docs_ddump.c45 void hw_queue_ddump(ocs_textbuf_t *textbuf, ocs_hw_t *hw);
52 * @param textbuf pointer to text buffer
63 ocs_ddump_sli4_queue(ocs_textbuf_t *textbuf, const char *name, ocs_hw_t *hw, sli4_queue_t *q, uint32_t q_count, uint32_t qentries) argument
68 ocs_ddump_section(textbuf, name, i);
69 ocs_ddump_value(textbuf, "index", "%d", q->index);
70 ocs_ddump_value(textbuf, "size", "%d", q->size);
71 ocs_ddump_value(textbuf, "length", "%d", q->length);
72 ocs_ddump_value(textbuf, "n_posted", "%d", q->n_posted);
73 ocs_ddump_value(textbuf, "id", "%d", q->id);
74 ocs_ddump_value(textbuf, "typ
134 ocs_ddump_sli_q_fields(ocs_textbuf_t *textbuf, sli4_t *sli4, sli4_qtype_e qtype) argument
167 ocs_ddump_sli(ocs_textbuf_t *textbuf, sli4_t *sli4) argument
272 ocs_ddump_hw_io(ocs_textbuf_t *textbuf, ocs_hw_io_t *io) argument
307 ocs_ddump_queue_history(ocs_textbuf_t *textbuf, ocs_hw_q_hist_t *q_hist) argument
403 ocs_ddump_hw(ocs_textbuf_t *textbuf, ocs_hw_t *hw, uint32_t flags, uint32_t qentries) argument
554 hw_queue_ddump(ocs_textbuf_t *textbuf, ocs_hw_t *hw) argument
637 ocs_ddump(ocs_t *ocs, ocs_textbuf_t *textbuf, uint32_t flags, uint32_t qentries) argument
[all...]
H A Docs_mgmt.h78 typedef void (*ocs_mgmt_get_list_handler)(ocs_textbuf_t *textbuf, void* object);
79 typedef void (*ocs_mgmt_get_all_handler)(ocs_textbuf_t *textbuf, void* object);
94 extern void ocs_mgmt_start_section(ocs_textbuf_t *textbuf, const char *name, int index);
95 extern void ocs_mgmt_start_unnumbered_section(ocs_textbuf_t *textbuf, const char *name);
96 extern void ocs_mgmt_end_section(ocs_textbuf_t *textbuf, const char *name, int index);
97 extern void ocs_mgmt_end_unnumbered_section(ocs_textbuf_t *textbuf, const char *name);
98 extern void ocs_mgmt_emit_property_name(ocs_textbuf_t *textbuf, int access, const char *name);
99 extern void ocs_mgmt_emit_string(ocs_textbuf_t *textbuf, int access, const char *name, const char *value);
101 extern void ocs_mgmt_emit_int(ocs_textbuf_t *textbuf, int access, const char *name, const char *fmt, ...);
102 extern void ocs_mgmt_emit_boolean(ocs_textbuf_t *textbuf, in
[all...]
H A Docs_io.c48 void ocs_mgmt_io_list(ocs_textbuf_t *textbuf, void *io);
49 void ocs_mgmt_io_get_all(ocs_textbuf_t *textbuf, void *io);
50 int ocs_mgmt_io_get(ocs_textbuf_t *textbuf, char *parent, char *name, void *io);
356 * @param textbuf Pointer to text buffer.
363 ocs_ddump_io(ocs_textbuf_t *textbuf, ocs_io_t *io) argument
365 ocs_ddump_section(textbuf, "io", io->instance_index);
366 ocs_ddump_value(textbuf, "display_name", "%s", io->display_name);
367 ocs_ddump_value(textbuf, "node_name", "%s", io->node->display_name);
369 ocs_ddump_value(textbuf, "ref_count", "%d", ocs_ref_read_count(&io->ref));
370 ocs_ddump_value(textbuf, "io_typ
411 ocs_mgmt_io_list(ocs_textbuf_t *textbuf, void *object) argument
425 ocs_mgmt_io_get(ocs_textbuf_t *textbuf, char *parent, char *name, void *object) argument
472 ocs_mgmt_io_get_all(ocs_textbuf_t *textbuf, void *object) argument
[all...]
H A Docs_ddump.h45 extern int ocs_ddump(ocs_t *ocs, ocs_textbuf_t *textbuf, uint32_t flags, uint32_t qentries);
47 extern void ocs_ddump_startfile(ocs_textbuf_t *textbuf);
48 extern void ocs_ddump_endfile(ocs_textbuf_t *textbuf);
49 extern void ocs_ddump_section(ocs_textbuf_t *textbuf, const char *name, uint32_t instance);
50 extern void ocs_ddump_endsection(ocs_textbuf_t *textbuf, const char *name, uint32_t instance);
52 extern void ocs_ddump_value(ocs_textbuf_t *textbuf, const char *name, const char *fmt, ...);
53 extern void ocs_ddump_buffer(ocs_textbuf_t *textbuf, const char *name, uint32_t instance, void *buffer, uint32_t size);
55 extern int32_t ocs_get_saved_ddump(ocs_t *ocs, ocs_textbuf_t *textbuf);
58 extern void ocs_ddump_queue_entries(ocs_textbuf_t *textbuf, void *q_addr, uint32_t size, uint32_t length, int32_t index, uint32_t qentries);
H A Docs_mgmt.c107 static void get_chip_type(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf);
108 static void get_tgt_rscn_delay(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf);
109 static void get_tgt_rscn_period(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf);
110 static void get_inject_drop_cmd(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf);
111 static void get_inject_free_drop_cmd(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf);
112 static void get_inject_drop_data(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf);
113 static void get_inject_drop_resp(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf);
114 static void get_cmd_err_inject(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf);
115 static void get_cmd_delay_value(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf);
116 static void get_nv_wwpn(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf);
233 ocs_mgmt_get_list(ocs_t *ocs, ocs_textbuf_t *textbuf) argument
305 ocs_mgmt_get(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
526 ocs_mgmt_get_all(ocs_t *ocs, ocs_textbuf_t *textbuf) argument
934 get_nodes_count(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
942 get_driver_version(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
948 get_desc(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
954 get_fw_rev(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
960 get_fw_rev2(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
966 get_ipl(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
972 get_hw_rev1(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
982 get_hw_rev2(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
992 get_hw_rev3(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1001 get_wwnn(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1011 get_wwpn(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1021 get_fcid(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1034 get_sn(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1050 get_pn(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1068 get_sli4_intf_reg(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1076 get_phy_port_num(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1088 get_asic_id(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1096 get_chip_type(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1192 get_pci_vendor(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1199 get_pci_device(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1206 get_pci_subsystem_vendor(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1213 get_pci_subsystem_device(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1220 get_tgt_rscn_delay(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1226 get_tgt_rscn_period(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1232 get_inject_drop_cmd(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1239 get_inject_free_drop_cmd(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1246 get_inject_drop_data(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1253 get_inject_drop_resp(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1260 get_cmd_err_inject(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1266 get_cmd_delay_value(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1272 get_businfo(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1278 get_sfp_a0(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1321 get_sfp_a2(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1364 get_debug_mq_dump(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1372 get_debug_cq_dump(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1380 get_debug_wq_dump(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1387 get_debug_eq_dump(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1394 get_logmask(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1402 get_loglevel(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1410 get_current_speed(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1420 get_configured_speed(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1434 get_current_topology(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1444 get_configured_topology(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1454 get_current_link_state(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1468 get_configured_link_state(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1561 get_linkcfg(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1582 get_req_wwnn(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1599 get_req_wwpn(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
1616 get_nodedb_mask(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
2005 get_port_protocol(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
2149 get_profile_list(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
2225 get_active_profile(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
2342 get_nv_wwpn(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
2380 get_nv_wwnn(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
2417 get_node_abort_cnt(ocs_t *ocs, char *name, ocs_textbuf_t *textbuf) argument
2717 ocs_mgmt_start_section(ocs_textbuf_t *textbuf, const char *name, int index) argument
2737 ocs_mgmt_start_unnumbered_section(ocs_textbuf_t *textbuf, const char *name) argument
2756 ocs_mgmt_end_unnumbered_section(ocs_textbuf_t *textbuf, const char *name) argument
2776 ocs_mgmt_end_section(ocs_textbuf_t *textbuf, const char *name, int index) argument
2799 ocs_mgmt_emit_property_name(ocs_textbuf_t *textbuf, int mode, const char *name) argument
2820 ocs_mgmt_emit_string(ocs_textbuf_t *textbuf, int mode, const char *name, const char *value) argument
2841 ocs_mgmt_emit_int(ocs_textbuf_t *textbuf, int mode, const char *name, const char *fmt, ...) argument
2869 ocs_mgmt_emit_boolean(ocs_textbuf_t *textbuf, int mode, const char *name, int value) argument
[all...]
H A Docs_sport.c47 void ocs_mgmt_sport_list(ocs_textbuf_t *textbuf, void *sport);
48 void ocs_mgmt_sport_get_all(ocs_textbuf_t *textbuf, void *sport);
49 int ocs_mgmt_sport_get(ocs_textbuf_t *textbuf, char *parent, char *name, void *sport);
1175 * @param textbuf Pointer to the text buffer.
1182 ocs_ddump_sport(ocs_textbuf_t *textbuf, ocs_sli_port_t *sport) argument
1188 ocs_ddump_section(textbuf, "sport", sport->instance_index);
1189 ocs_ddump_value(textbuf, "display_name", "%s", sport->display_name);
1191 ocs_ddump_value(textbuf, "is_vport", "%d", sport->is_vport);
1192 ocs_ddump_value(textbuf, "enable_ini", "%d", sport->enable_ini);
1193 ocs_ddump_value(textbuf, "enable_tg
1254 ocs_mgmt_sport_list(ocs_textbuf_t *textbuf, void *object) argument
1290 ocs_mgmt_sport_get(ocs_textbuf_t *textbuf, char *parent, char *name, void *object) argument
1364 ocs_mgmt_sport_get_all(ocs_textbuf_t *textbuf, void *object) argument
[all...]
H A Docs_node.c57 void ocs_mgmt_node_list(ocs_textbuf_t *textbuf, void *node);
58 void ocs_mgmt_node_get_all(ocs_textbuf_t *textbuf, void *node);
59 int ocs_mgmt_node_get(ocs_textbuf_t *textbuf, char *parent, char *name, void *node);
1503 * @param textbuf pointer to text buffer
1510 ocs_ddump_node(ocs_textbuf_t *textbuf, ocs_node_t *node) argument
1516 ocs_ddump_section(textbuf, "node", node->instance_index);
1517 ocs_ddump_value(textbuf, "display_name", "%s", node->display_name);
1518 ocs_ddump_value(textbuf, "current_state", "%s", node->current_state_name);
1519 ocs_ddump_value(textbuf, "prev_state", "%s", node->prev_state_name);
1520 ocs_ddump_value(textbuf, "current_ev
1694 ocs_mgmt_node_list(ocs_textbuf_t *textbuf, void *object) argument
1734 ocs_mgmt_node_get(ocs_textbuf_t *textbuf, char *parent, char *name, void *object) argument
1838 ocs_mgmt_node_get_all(ocs_textbuf_t *textbuf, void *object) argument
[all...]
H A Docs_utils.h102 extern int32_t ocs_textbuf_alloc(ocs_t *ocs, ocs_textbuf_t *textbuf, uint32_t length);
103 extern uint32_t ocs_textbuf_initialized(ocs_textbuf_t *textbuf);
104 extern int32_t ocs_textbuf_init(ocs_t *ocs, ocs_textbuf_t *textbuf, void *buffer, uint32_t length);
105 extern void ocs_textbuf_free(ocs_t *ocs, ocs_textbuf_t *textbuf);
106 extern void ocs_textbuf_putc(ocs_textbuf_t *textbuf, uint8_t c);
107 extern void ocs_textbuf_puts(ocs_textbuf_t *textbuf, char *s);
109 extern void ocs_textbuf_printf(ocs_textbuf_t *textbuf, const char *fmt, ...);
111 extern void ocs_textbuf_vprintf(ocs_textbuf_t *textbuf, const char *fmt, va_list ap);
112 extern void ocs_textbuf_buffer(ocs_textbuf_t *textbuf, uint8_t *buffer, uint32_t buffer_length);
113 extern void ocs_textbuf_copy(ocs_textbuf_t *textbuf, uint8_
[all...]
H A Docs_domain.c65 void ocs_mgmt_domain_list(ocs_textbuf_t *textbuf, void *domain);
66 void ocs_mgmt_domain_get_all(ocs_textbuf_t *textbuf, void *domain);
67 int ocs_mgmt_domain_get(ocs_textbuf_t *textbuf, char *parent, char *name, void *domain);
1311 * @param textbuf Pointer to the text buffer.
1318 ocs_ddump_domain(ocs_textbuf_t *textbuf, ocs_domain_t *domain) argument
1323 ocs_ddump_section(textbuf, "domain", domain->instance_index);
1324 ocs_ddump_value(textbuf, "display_name", "%s", domain->display_name);
1326 ocs_ddump_value(textbuf, "fcf", "%#x", domain->fcf);
1327 ocs_ddump_value(textbuf, "fcf_indicator", "%#x", domain->fcf_indicator);
1328 ocs_ddump_value(textbuf, "vlan_i
1362 ocs_mgmt_domain_list(ocs_textbuf_t *textbuf, void *object) argument
1396 ocs_mgmt_domain_get(ocs_textbuf_t *textbuf, char *parent, char *name, void *object) argument
1469 ocs_mgmt_domain_get_all(ocs_textbuf_t *textbuf, void *object) argument
[all...]
H A Docs_utils.c573 * The start of file information is added to 'textbuf'
575 * @param textbuf pointer to driver dump text buffer
581 ocs_ddump_startfile(ocs_textbuf_t *textbuf) argument
583 ocs_textbuf_printf(textbuf, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
589 * The end of file information is added to 'textbuf'
591 * @param textbuf pointer to driver dump text buffer
597 ocs_ddump_endfile(ocs_textbuf_t *textbuf) argument
604 * The driver section start information is added to textbuf
606 * @param textbuf pointer to text buffer
614 ocs_ddump_section(ocs_textbuf_t *textbuf, cons argument
632 ocs_ddump_endsection(ocs_textbuf_t *textbuf, const char *name, uint32_t instance) argument
650 ocs_ddump_value(ocs_textbuf_t *textbuf, const char *name, const char *fmt, ...) argument
677 ocs_ddump_buffer(ocs_textbuf_t *textbuf, const char *name, uint32_t instance, void *buffer, uint32_t size) argument
719 ocs_ddump_queue_entries(ocs_textbuf_t *textbuf, void *q_addr, uint32_t size, uint32_t length, int32_t index, uint32_t qentries) argument
1217 ocs_display_sparams(const char *prelabel, const char *reqlabel, int dest, void *textbuf, void *sparams) argument
1628 ocs_textbuf_get_buffer(ocs_textbuf_t *textbuf) argument
1634 ocs_textbuf_get_length(ocs_textbuf_t *textbuf) argument
1640 ocs_textbuf_get_written(ocs_textbuf_t *textbuf) argument
1652 ocs_textbuf_ext_get_buffer(ocs_textbuf_t *textbuf, uint32_t idx) argument
1661 ocs_textbuf_ext_get_length(ocs_textbuf_t *textbuf, uint32_t idx) argument
1670 ocs_textbuf_ext_get_written(ocs_textbuf_t *textbuf, uint32_t idx) argument
1680 ocs_textbuf_initialized(ocs_textbuf_t *textbuf) argument
1686 ocs_textbuf_alloc(ocs_t *ocs, ocs_textbuf_t *textbuf, uint32_t length) argument
1710 ocs_textbuf_segment_alloc(ocs_textbuf_t *textbuf) argument
1750 ocs_textbuf_get_segment(ocs_textbuf_t *textbuf, uint32_t idx) argument
1768 ocs_textbuf_init(ocs_t *ocs, ocs_textbuf_t *textbuf, void *buffer, uint32_t length) argument
1791 ocs_textbuf_free(ocs_t *ocs, ocs_textbuf_t *textbuf) argument
1807 ocs_textbuf_printf(ocs_textbuf_t *textbuf, const char *fmt, ...) argument
1819 ocs_textbuf_vprintf(ocs_textbuf_t *textbuf, const char *fmt, va_list ap) argument
1871 ocs_textbuf_putc(ocs_textbuf_t *textbuf, uint8_t c) argument
1888 ocs_textbuf_puts(ocs_textbuf_t *textbuf, char *s) argument
1898 ocs_textbuf_buffer(ocs_textbuf_t *textbuf, uint8_t *buffer, uint32_t buffer_length) argument
1932 ocs_textbuf_copy(ocs_textbuf_t *textbuf, uint8_t *buffer, uint32_t buffer_length) argument
1948 ocs_textbuf_remaining(ocs_textbuf_t *textbuf) argument
1964 ocs_textbuf_reset(ocs_textbuf_t *textbuf) argument
2511 ocs_ddump_ramlog(ocs_textbuf_t *textbuf, ocs_ramlog_t *ramlog) argument
[all...]
H A Docs_ioctl.c396 ocs_textbuf_t textbuf; local
400 if (ocs_textbuf_alloc(ocs, &textbuf, req->user_buffer_len)) {
420 if (ocs_textbuf_alloc(ocs, &textbuf, req->user_buffer_len)) {
444 if (ocs_ddump(ocs, &textbuf, flags, req->args.q_entries) != 0) {
445 ocs_textbuf_reset(&textbuf);
456 ptbuf = &textbuf;
461 /* Process each textbuf segment */
480 if (ptbuf == &textbuf) {
481 ocs_textbuf_free(ocs, &textbuf);
517 ocs_textbuf_t textbuf; local
543 ocs_textbuf_t textbuf; local
573 ocs_textbuf_t textbuf; local
[all...]
H A Docs_domain.h89 extern int ocs_ddump_domain(ocs_textbuf_t *textbuf, ocs_domain_t *domain);
H A Docs_io.h193 extern void ocs_ddump_io(ocs_textbuf_t *textbuf, ocs_io_t *io);
H A Docs_sport.h99 extern int ocs_ddump_sport(ocs_textbuf_t *textbuf, ocs_sport_t *sport);
H A Docs_scsi.h383 extern void ocs_scsi_ini_ddump(ocs_textbuf_t *textbuf, ocs_scsi_ddump_type_e type, void *obj);
384 extern void ocs_scsi_tgt_ddump(ocs_textbuf_t *textbuf, ocs_scsi_ddump_type_e type, void *obj);
H A Docs_els.h87 extern void ocs_ddump_els(ocs_textbuf_t *textbuf, ocs_io_t *els);
H A Docs_node.h217 extern int ocs_ddump_node(ocs_textbuf_t *textbuf, ocs_node_t *node);
H A Docs_els.c2623 * @param textbuf Pointer to the text buffer.
2630 ocs_ddump_els(ocs_textbuf_t *textbuf, ocs_io_t *els) argument
2632 ocs_ddump_section(textbuf, "els", -1);
2633 ocs_ddump_value(textbuf, "req_free", "%d", els->els_req_free);
2634 ocs_ddump_value(textbuf, "evtdepth", "%d", els->els_evtdepth);
2635 ocs_ddump_value(textbuf, "pend", "%d", els->els_pend);
2636 ocs_ddump_value(textbuf, "active", "%d", els->els_active);
2637 ocs_ddump_io(textbuf, els);
2638 ocs_ddump_endsection(textbuf, "els", -1);
H A Docs_cam.c2709 ocs_scsi_ini_ddump(ocs_textbuf_t *textbuf, ocs_scsi_ddump_type_e type, void *obj) argument
2739 ocs_scsi_tgt_ddump(ocs_textbuf_t *textbuf, ocs_scsi_ddump_type_e type, void *obj) argument
2781 ocs_ddump_value(textbuf, "cam_st", "%s", state_str);
2783 ocs_ddump_value(textbuf, "cam_flags", "%#x",
2785 ocs_ddump_value(textbuf, "cam_status", "%#x",
/freebsd-13-stable/crypto/openssh/
H A Daudit-bsm.c332 char textbuf[BSM_TEXTBUFSZ]; local
335 (void) snprintf(textbuf, sizeof (textbuf),
338 bsm_audit_record(4, textbuf, AUE_openssh);
340 (void) snprintf(textbuf, sizeof (textbuf),
343 bsm_audit_record(3, textbuf, AUE_openssh);
396 char textbuf[BSM_TEXTBUFSZ]; local
407 snprintf(textbuf, sizeof(textbuf),
[all...]

Completed in 114 milliseconds