Searched defs:msg (Results 401 - 425 of 829) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/cmd/ipcs/
H A Dipcs.c49 #include <sys/msg.h>
514 dumpmsg(long type, char *msg, size_t msgsize) argument
527 (void) printf("%2.2x ", msg[k] & 0xff);
536 c = msg[k] & 0xff;
/illumos-gate/usr/src/cmd/ldmad/
H A Dldmad.c209 ldma_message_header_t *msg; local
213 msg = malloc(msg_len);
214 if (msg == NULL)
217 msg->msg_num = msg_num;
218 msg->msg_type = msg_type;
219 msg->msg_info = 0;
221 return (msg);
/illumos-gate/usr/src/cmd/svr4pkg/pkgremove/
H A Dmain.c125 static void ckreturn(int retcode, char *msg);
1300 ckreturn(int retcode, char *msg) argument
1308 if (msg)
1309 progerr(msg);
1333 if (msg)
1334 progerr(msg);
1342 if (msg)
1343 progerr(msg);
/illumos-gate/usr/src/cmd/swap/
H A Dswap.c101 char *msg; local
242 if (dm_inuse(pathname, &msg, DM_WHO_SWAP, &error) ||
249 (void) fprintf(stderr, "%s", msg);
250 free(msg);
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsockcommon.c315 socket_sendmsg(struct sonode *so, struct nmsghdr *msg, struct uio *uiop, argument
329 error = SOP_SENDMSG(so, msg, uiop, cr);
351 socket_sendmblk(struct sonode *so, struct nmsghdr *msg, int fflag, argument
356 error = SOP_SENDMBLK(so, msg, fflag, cr, mpp);
364 socket_recvmsg(struct sonode *so, struct nmsghdr *msg, struct uio *uiop, argument
376 error = SOP_RECVMSG(so, msg, uiop, cr);
/illumos-gate/usr/src/tools/cscope-fast/
H A Dfind.c657 char msg[MSGLEN + 1]; local
667 (void) sprintf(msg, "Cannot open file %s",
669 putmsg2(msg);
960 char msg[MSGLEN + 1]; local
966 (void) sprintf(msg, format, n1, n2);
967 putmsg(msg);
/illumos-gate/usr/src/ucbcmd/sed/
H A Dsed0.c866 comperr(char *msg) argument
869 (void) fprintf(stderr, msg, linebuf);
/illumos-gate/usr/src/uts/common/inet/kssl/
H A Dksslfilter.c288 struct nmsghdr *msg, cred_t *cr, sof_rval_t *rv)
293 _NOTE(ARGUNUSED(handle, msg, cr));
317 struct nmsghdr msg; local
335 bzero(&msg, sizeof (msg));
336 (void) sof_inject_data_out(handle, outmp, &msg,
372 struct nmsghdr msg; local
375 bzero(&msg, sizeof (msg));
376 (void) sof_inject_data_out(handle, outmp, &msg,
287 kssl_data_out_cb(sof_handle_t handle, void *cookie, mblk_t *mp, struct nmsghdr *msg, cred_t *cr, sof_rval_t *rv) argument
486 struct nmsghdr msg; local
538 struct nmsghdr msg; local
[all...]
H A Dksslimpl.h44 * Certificate structure. The msg field is the BER data of the
48 uchar_t *msg; member in struct:Certificate
/illumos-gate/usr/src/uts/common/inet/sockmods/
H A Dsocksdp.c417 sosdp_recvmsg(struct sonode *so, struct nmsghdr *msg, struct uio *uiop, argument
423 flags = msg->msg_flags;
424 msg->msg_flags = 0;
465 (struct sdp_conn_struct_t *)so->so_proto_handle, msg,
468 msg->msg_controllen = 0;
469 msg->msg_namelen = 0;
483 sosdp_sendmsg(struct sonode *so, struct nmsghdr *msg, struct uio *uiop, argument
495 flags = msg->msg_flags;
497 if (msg->msg_controllen != 0) {
527 msg, coun
[all...]
/illumos-gate/usr/src/uts/common/rpc/sec/
H A Dsvcauthdes.c135 _svcauth_des(struct svc_req *rqst, struct rpc_msg *msg) argument
170 ixdr = (int32_t *)msg->rm_call.cb_cred.oa_base;
198 ixdr = (int32_t *)msg->rm_call.cb_verf.oa_base;
338 ixdr = (int32_t *)msg->rm_call.cb_verf.oa_base;
344 rqst->rq_xprt->xp_verf.oa_base = msg->rm_call.cb_verf.oa_base;
346 (uint_t)((char *)ixdr - msg->rm_call.cb_verf.oa_base);
/illumos-gate/usr/src/uts/common/xen/io/
H A Dxenbus_dev.c119 struct xsd_sockmsg msg; member in union:xenbus_dev_data::__anon9280
483 xenbusdrv_queue_reply(xenbus_dev_t *xbs, const struct xsd_sockmsg *msg, argument
496 if (sizeof (*msg) + msg->len > remaining) {
501 for (i = 0; i < sizeof (*msg); i++, xbs->read_prod++) {
503 ((char *)msg)[i];
506 for (i = 0; i < msg->len; i++, xbs->read_prod++) {
552 if (xbs->len < (sizeof (xbs->u.msg)) ||
553 xbs->len < (sizeof (xbs->u.msg) + xbs->u.msg
[all...]
/illumos-gate/usr/src/uts/common/zmod/
H A Dzlib.h93 char *msg; /* last error message, NULL if no error */ member in struct:z_stream_s
239 msg is set to null if there is no error message. deflateInit does not
339 msg may be set but then points to a static string (which must not be
358 version assumed by the caller. msg is set to null if there is no error
471 was inconsistent. In the error case, msg may be set but then points to a
536 method). msg is set to null if there is no error message. deflateInit2 does
593 (such as zalloc being NULL). msg is left unchanged in both source and
731 memory, Z_STREAM_ERROR if a parameter is invalid (such as a null strm). msg
787 (such as zalloc being NULL). msg is left unchanged in both source and
941 error in the deflate stream (in which case strm->msg i
[all...]
/illumos-gate/usr/src/uts/common/io/ib/mgt/ibdma/
H A Dibdma.c101 static void ibdma_get_class_portinfo(ibmf_msg_t *msg);
102 static void ibdma_get_io_unitinfo(ibdma_hca_t *hca, ibmf_msg_t *msg);
103 static void ibdma_get_ioc_profile(ibdma_hca_t *hca, ibmf_msg_t *msg);
104 static void ibdma_get_ioc_services(ibdma_hca_t *hca, ibmf_msg_t *msg);
728 ibdma_get_class_portinfo(ibmf_msg_t *msg) argument
732 cpip = (ib_mad_classportinfo_t *)msg->im_msgbufs_send.im_bufs_cl_data;
743 ibdma_get_io_unitinfo(ibdma_hca_t *hca, ibmf_msg_t *msg) argument
747 uip = (ib_dm_io_unitinfo_t *)msg->im_msgbufs_send.im_bufs_cl_data;
757 ibdma_get_ioc_profile(ibdma_hca_t *hca, ibmf_msg_t *msg) argument
762 ASSERT(msg !
789 ibdma_get_ioc_services(ibdma_hca_t *hca, ibmf_msg_t *msg) argument
[all...]
/illumos-gate/usr/src/uts/common/io/ppp/sppp/
H A Dsppp_dlpi.c692 mblk_t *msg; local
708 msg = NULL;
715 msg = create_lsmsg(PPP_LINKSTAT_IPV4_UNBOUND);
719 msg = create_lsmsg(PPP_LINKSTAT_IPV6_UNBOUND);
721 if (msg != NULL) {
727 putnext(ppa->ppa_ctl->sps_rq, msg);
761 /* Exchange current msg for a DL_INFO_ACK. */
1090 * Prepend an empty Ethernet header to msg for snoop, et al. Free
1134 * Prepend DL_UNITDATA_IND mblk to msg, free original alloc fails.
/illumos-gate/usr/src/uts/common/io/scsi/adapters/pmcs/
H A Dpmcs_intr.c73 #define EVT_PRT(hwp, msg, phy) \
74 pmcs_prt(hwp, PMCS_PRT_DEBUG, NULL, NULL, "Phy 0x%x: %s", phy, # msg)
1068 uint32_t *msg = iomb, htag = LE_32(msg[1]); local
1073 msg[2] = LE_32(PMCOUT_STATUS_OK);
1074 pmcs_complete_work(pwp, pwrk, msg, amt);
1729 "Inbound msg (tag 0x%8x) timed out - "
H A Dpmcs_nvram.c332 uint32_t len, seg, off, result, amt, msg[PMCS_MSG_SIZE], *ptr; local
351 pwrk->arg = msg;
352 msg[0] = LE_32(PMCS_HIPRI(pwp,
354 msg[1] = LE_32(pwrk->htag);
355 msg[2] = LE_32(off);
356 msg[3] = LE_32(amt);
358 msg[4] = LE_32(len);
360 msg[4] = 0;
362 msg[5] = 0;
363 msg[
[all...]
/illumos-gate/usr/src/uts/common/io/xge/drv/
H A Dxge.c81 * This function called by HAL on XPAK alarms. Upper layer must log the msg
274 char msg[MSG_SIZE]; local
276 (void) xge_os_snprintf(msg, MSG_SIZE, "ring%d_configured", index);
279 msg, index < XGELL_RX_RING_NUM_MAX ? 1 : 0);
289 (void) xge_os_snprintf(msg, MSG_SIZE, "ring%d_max", index);
292 dev_info, DDI_PROP_DONTPASS, msg,
295 (void) xge_os_snprintf(msg, MSG_SIZE, "ring%d_initial", index);
298 dev_info, DDI_PROP_DONTPASS, msg,
308 (void) xge_os_snprintf(msg, MSG_SIZE, "ring%d_buffer_mode", index);
311 dev_info, DDI_PROP_DONTPASS, msg,
421 char msg[MSG_SIZE]; local
[all...]
/illumos-gate/usr/src/uts/common/sys/
H A Dipmi.h104 struct ipmi_msg msg; member in struct:ipmi_req
112 struct ipmi_msg msg; member in struct:ipmi_recv
159 struct ipmi_msg32 msg; member in struct:ipmi_req32
167 struct ipmi_msg32 msg; member in struct:ipmi_recv32
/illumos-gate/usr/src/lib/libadm/common/
H A Dckdate.c74 setmsg(char *msg, char *fmt, size_t sz) argument
78 (void) snprintf(msg, sz, "%s. Format is <%s>.", MESG, fmt);
/illumos-gate/usr/src/uts/sun4v/io/
H A Dplatsvc.c327 platsvc_md_update_req_t *msg = buf; local
339 if (msg == NULL || buflen != sizeof (platsvc_md_update_req_t)) {
363 resp_msg.req_num = msg->req_num;
374 platsvc_shutdown_req_t *msg = buf; local
387 if (msg == NULL || buflen != sizeof (platsvc_shutdown_req_t)) {
399 resp_msg.req_num = msg->req_num;
411 "system shutdown in %d minutes", MS2MIN(msg->delay));
414 while (gethrtime() - start < MS2NANO(msg->delay))
425 platsvc_panic_req_t *msg = buf; local
437 if (msg
543 platsvc_suspend_req_t *msg = buf; local
602 platsvc_suspend_req_t *msg; local
[all...]
H A Dvnet_rxdring.c80 static int vgen_sendmsg_shm(vgen_ldc_t *ldcp, caddr_t msg, size_t msglen);
363 vio_dring_reg_msg_t *msg = pkt; local
365 ncookies = msg->ncookies;
366 num_desc = msg->num_descriptors;
367 desc_size = msg->descriptor_size;
378 bcopy(&msg->cookie[0], &dcookie, sizeof (ldc_mem_cookie_t));
420 /* Return the dring_ident in ack msg */
421 msg->dring_ident = (uint64_t)ldcp->mtxdp;
509 vio_dring_reg_msg_t *msg = (vio_dring_reg_msg_t *)pkt; local
510 uint8_t *buf = (uint8_t *)msg
872 vio_dring_msg_t msg; local
1461 vgen_sendmsg_shm(vgen_ldc_t *ldcp, caddr_t msg, size_t msglen) argument
[all...]
H A Dvsw_rxdring.c73 vio_dring_msg_t *msg);
75 vio_dring_msg_t *msg);
150 /* copy data_ncookies in the msg */
153 /* copy data area size in the msg */
156 /* copy data area cookies in the msg */
605 vio_dring_msg_t msg; local
606 vio_dring_msg_t *msgp = &msg;
867 vio_dring_msg_t msg; local
868 vio_dring_msg_t *msgp = &msg;
1035 DERR(vswp, "%s(%lld) failed sending dringdata msg\
1087 vsw_process_dringdata_info_shm(vsw_ldc_t *ldcp, vio_dring_msg_t *msg) argument
1117 vsw_process_dringdata_ack_shm(vsw_ldc_t *ldcp, vio_dring_msg_t *msg) argument
[all...]
/illumos-gate/usr/src/uts/sun4/io/efcode/
H A Dfc_subr.c391 fc_syntax_error(fc_ci_t *cp, char *msg) argument
400 fc_priv_error(fc_ci_t *cp, char *msg) argument
/illumos-gate/usr/src/uts/sun4/io/px/
H A Dpx_debug.h119 char msg[DBG_MSG_SIZE]; member in struct:px_dbg_msg

Completed in 114 milliseconds

<<11121314151617181920>>