Lines Matching refs:msz

1798 	ssize_t			msz = MBLKL(mp);  in tl_wput()  local
1849 if (msz < sizeof (prim->type)) { in tl_wput()
1891 (msz < sizeof (struct T_unitdata_req))) { in tl_wput()
1920 if (msz < sizeof (prim->type)) { in tl_wput()
2195 ssize_t msz = MBLKL(mp); in tl_do_proto() local
2199 ASSERT(msz >= sizeof (prim->type)); in tl_do_proto()
2438 ssize_t msz = MBLKL(mp), basize; in tl_bind() local
2452 if (msz < sizeof (struct T_bind_req)) { in tl_bind()
2494 (aoff + alen > msz)) { in tl_bind()
2540 ((ssize_t)(aoff + alen) > msz) || in tl_bind()
2550 if ((alen < 0) || (alen > (msz - sizeof (struct T_bind_req)))) { in tl_bind()
2896 ssize_t msz = MBLKL(mp); in tl_conn_req() local
2943 if (msz < sizeof (struct T_conn_req)) { in tl_conn_req()
2960 (aoff + alen > msz) || in tl_conn_req()
2961 (alen > msz - sizeof (struct T_conn_req))) { in tl_conn_req()
2980 if ((alen > 0 && ((aoff + alen) > msz || aoff + alen < 0)) || in tl_conn_req()
2981 (olen > 0 && ((ssize_t)(ooff + olen) > msz || in tl_conn_req()
2993 (ssize_t)alen > msz - sizeof (struct T_conn_req)) { in tl_conn_req()
2998 alen, msz)); in tl_conn_req()
3417 ssize_t msz = MBLKL(mp); in tl_conn_res() local
3477 if (msz < sizeof (struct T_conn_res)) { in tl_conn_res()
3486 if (((olen > 0) && ((ooff + olen) > msz))) { in tl_conn_res()
3950 ssize_t msz; in tl_discon_req() local
3992 msz = MBLKL(mp); in tl_discon_req()
4015 if (msz < sizeof (struct T_discon_req)) { in tl_discon_req()
4506 ssize_t msz = MBLKL(mp); in tl_data() local
4537 msz < sizeof (struct T_data_req)) { in tl_data()
4548 (msz < sizeof (struct T_optdata_req) || !IS_SOCKET(tep))) { in tl_data()
4604 if (msz < sizeof (t_scalar_t)) { in tl_data()
4707 ssize_t msz = MBLKL(mp); in tl_exdata() local
4712 if (msz < sizeof (struct T_exdata_req)) { in tl_exdata()
4871 ssize_t msz = MBLKL(mp); in tl_ordrel() local
4876 if (msz < sizeof (struct T_ordrel_req)) { in tl_ordrel()
5096 ssize_t msz, ui_sz, reuse_mb_sz; in tl_unitdata() local
5103 msz = MBLKL(mp); in tl_unitdata()
5125 if (msz < sizeof (struct T_unitdata_req)) { in tl_unitdata()
5141 (aoff + alen > msz) || in tl_unitdata()
5143 ((olen > 0) && ((ooff + olen) > msz))) { in tl_unitdata()
5148 (int)msz, alen, aoff, olen, ooff)); in tl_unitdata()
5165 ((alen > 0) && ((aoff + alen) > msz)) || in tl_unitdata()
5166 ((ssize_t)alen > (msz - sizeof (struct T_unitdata_req))) || in tl_unitdata()
5168 ((olen > 0) && ((ooff + olen) > msz)) || in tl_unitdata()
5171 ((ssize_t)olen > (msz - sizeof (struct T_unitdata_req)))) { in tl_unitdata()
5312 if (msz >= ui_sz && alen >= tep->te_alen && in tl_unitdata()