/titanic_50/usr/src/cmd/mdb/common/mdb/ |
H A D | mdb_tab.c | 220 char *dcmd = NULL; in tab_parse_buf() local 228 dcmd = tab_get_dcmd(data, &args_data, flags); in tab_parse_buf() 230 if (dcmd == NULL) { in tab_parse_buf() 246 *dcmdp = dcmd; in tab_parse_buf() 267 char *dcmd = NULL; in mdb_tab_command() local 285 ret = tab_parse_buf(data, &dcmd, &argc, &argv, &flags); in mdb_tab_command() 298 cp = mdb_dcmd_lookup(dcmd); in mdb_tab_command() 315 (void) mdb_tab_complete_dcmd(mcp, dcmd); in mdb_tab_command() 344 mdb_tab_complete_dcmd(mdb_tab_cookie_t *mcp, const char *dcmd) in mdb_tab_complete_dcmd() argument 346 if (dcmd != NULL) in mdb_tab_complete_dcmd() [all …]
|
/titanic_50/usr/src/cmd/mdb/i86pc/modules/unix/ |
H A D | unix.c | 460 ttrace_walk(uintptr_t addr, trap_trace_rec_t *rec, ttrace_dcmd_t *dcmd) in ttrace_walk() argument 466 if (addr >= dcmd->ttd_ttc[i].ttc_first && in ttrace_walk() 467 addr < dcmd->ttd_ttc[i].ttc_limit) { in ttrace_walk() 478 if (dcmd->ttd_cpu != -1 && cpu != dcmd->ttd_cpu) in ttrace_walk() 493 if (dcmd->ttd_extended == FALSE) in ttrace_walk() 521 ttrace_dcmd_t dcmd; in ttrace() local 522 trap_trace_ctl_t *ttc = dcmd.ttd_ttc; in ttrace() 529 bzero(&dcmd, sizeof (dcmd)); in ttrace() 530 dcmd.ttd_cpu = -1; in ttrace() 531 dcmd.ttd_extended = FALSE; in ttrace() [all …]
|
/titanic_50/usr/src/uts/common/io/mega_sas/ |
H A D | megaraid_sas.c | 2089 struct megasas_dcmd_frame *dcmd; in get_ctrl_info() local 2100 dcmd = &cmd->frame->dcmd; in get_ctrl_info() 2114 (void) memset(dcmd->mbox.b, 0, DCMD_MBOX_SZ); in get_ctrl_info() 2116 dcmd->cmd = MFI_CMD_OP_DCMD; in get_ctrl_info() 2117 dcmd->cmd_status = MFI_CMD_STATUS_POLL_MODE; in get_ctrl_info() 2118 dcmd->sge_count = 1; in get_ctrl_info() 2119 dcmd->flags = MFI_FRAME_DIR_READ; in get_ctrl_info() 2120 dcmd->timeout = 0; in get_ctrl_info() 2121 dcmd->data_xfer_len = sizeof (struct megasas_ctrl_info); in get_ctrl_info() 2122 dcmd->opcode = MR_DCMD_CTRL_GET_INFO; in get_ctrl_info() [all …]
|
H A D | megaraid_sas.h | 878 struct megasas_dcmd_frame dcmd; member
|
/titanic_50/usr/src/uts/common/io/mr_sas/ |
H A D | mr_sas_tbolt.c | 2551 if (cmd->frame->dcmd.opcode == MR_DCMD_LD_MAP_GET_INFO && in tbolt_complete_cmd() 2552 cmd->frame->dcmd.mbox.b[1] == 1) { in tbolt_complete_cmd() 2598 if (cmd->frame->dcmd.opcode == MR_DCMD_CTRL_EVENT_WAIT) { in tbolt_complete_cmd() 2813 struct mrsas_dcmd_frame *dcmd; in mrsas_tbolt_get_ld_map_info() local 2826 dcmd = &cmd->frame->dcmd; in mrsas_tbolt_get_ld_map_info() 2846 bzero(dcmd->mbox.b, DCMD_MBOX_SZ); in mrsas_tbolt_get_ld_map_info() 2848 dcmd->cmd = MFI_CMD_OP_DCMD; in mrsas_tbolt_get_ld_map_info() 2849 dcmd->cmd_status = 0xFF; in mrsas_tbolt_get_ld_map_info() 2850 dcmd->sge_count = 1; in mrsas_tbolt_get_ld_map_info() 2851 dcmd->flags = MFI_FRAME_DIR_READ; in mrsas_tbolt_get_ld_map_info() [all …]
|
H A D | mr_sas.c | 3265 struct mrsas_dcmd_frame *dcmd; in get_ctrl_info() local 3287 dcmd = &cmd->frame->dcmd; in get_ctrl_info() 3301 (void) memset(dcmd->mbox.b, 0, DCMD_MBOX_SZ); in get_ctrl_info() 3303 ddi_put8(cmd->frame_dma_obj.acc_handle, &dcmd->cmd, MFI_CMD_OP_DCMD); in get_ctrl_info() 3304 ddi_put8(cmd->frame_dma_obj.acc_handle, &dcmd->cmd_status, in get_ctrl_info() 3306 ddi_put8(cmd->frame_dma_obj.acc_handle, &dcmd->sge_count, 1); in get_ctrl_info() 3307 ddi_put16(cmd->frame_dma_obj.acc_handle, &dcmd->flags, in get_ctrl_info() 3309 ddi_put16(cmd->frame_dma_obj.acc_handle, &dcmd->timeout, 0); in get_ctrl_info() 3310 ddi_put32(cmd->frame_dma_obj.acc_handle, &dcmd->data_xfer_len, in get_ctrl_info() 3312 ddi_put32(cmd->frame_dma_obj.acc_handle, &dcmd->opcode, in get_ctrl_info() [all …]
|
H A D | mr_sas.h | 1537 struct mrsas_dcmd_frame dcmd; member
|
/titanic_50/usr/src/cmd/devctl/ |
H A D | devctl.c | 186 struct cmds *dcmd; in main() local 262 if ((dcmd = dc_cmd(device_cmds, devctl_cmdname)) == NULL) { in main() 263 dcmd = dc_cmd(bus_cmds, devctl_cmdname); in main() 264 if (dcmd == NULL) { in main() 327 rv = (dcmd->cmdf)(dcp); in main()
|
/titanic_50/usr/src/cmd/mdb/common/modules/mdb_test/ |
H A D | mdb_test.c | 261 const char *dcmd; in cmd_call_dcmd() local 266 dcmd = argv->a_un.a_str; in cmd_call_dcmd() 270 if (mdb_call_dcmd(dcmd, addr, flags, argc, argv) == -1) { in cmd_call_dcmd() 271 mdb_warn("failed to execute %s", dcmd); in cmd_call_dcmd()
|
/titanic_50/usr/src/cmd/mdb/demo/ |
H A D | README | 89 modules, you can either use the ::load built-in dcmd with the absolute pathname 92 built-in dcmd. For example: 106 /usr/bin/echo or MDB's built-in ::echo dcmd. ::vminfo is a command to read 123 similar to the /usr/bin/ps command or MDB's ::ps dcmd. This example 126 dcmd can be built using this walker. Using the simple_proc walker, you can 139 Using the ::simple_ps dcmd you can obtain a formatted listing of processes:
|
/titanic_50/usr/src/cmd/sgs/ar/common/ |
H A D | inc.h | 139 Cmd_func dcmd; variable
|
H A D | main.c | 201 setcom(cmd_info, dcmd); in setup()
|
H A D | cmd.c | 244 dcmd(Cmd_info *cmd_info) in dcmd() function
|
/titanic_50/usr/src/lib/libbc/inc/include/sun/ |
H A D | dkio.h | 240 struct dk_cmd dcmd; /* disk command info */ member
|
/titanic_50/usr/src/uts/common/io/e1000api/ |
H A D | e1000_82575.h | 69 u32 dcmd:8; /* Descriptor command */ member
|
/titanic_50/usr/src/cmd/cmd-inet/usr.lib/ilbd/ |
H A D | ilbd_sg.c | 1140 i_srvcmd_d2k(ilbd_srv_status_ind_t dcmd) in i_srvcmd_d2k() argument 1144 switch (dcmd) { in i_srvcmd_d2k()
|
/titanic_50/usr/src/cmd/mdb/common/modules/libumem/ |
H A D | umem.c | 2022 whatis_call_printer(mdb_dcmd_f *dcmd, uintptr_t addr) in whatis_call_printer() argument 2029 (void) (*dcmd)(addr, DCMD_ADDRSPEC, 1, &a); in whatis_call_printer()
|
/titanic_50/usr/src/uts/sun/io/dada/targets/ |
H A D | dad.c | 3587 auto struct udcd_cmd dcmd, *com = &dcmd; in dcd_unit_ready() local
|
/titanic_50/usr/src/cmd/mdb/common/modules/genunix/ |
H A D | kmem.c | 2135 whatis_call_printer(mdb_dcmd_f *dcmd, uintptr_t addr) in whatis_call_printer() argument 2142 (void) (*dcmd)(addr, DCMD_ADDRSPEC, 1, &a); in whatis_call_printer()
|