Home | History | Annotate | Download | only in pppd

Lines Matching full:sizeof

255     slprintf(b, sizeof(b), "%x", ipxaddr);
353 memset (dest, '\0', sizeof (ipxcp_wantoptions[0].name));
363 if (count >= sizeof (ipxcp_wantoptions[0].name) - 1) {
365 sizeof (ipxcp_wantoptions[0].name) - 1);
390 memset (wo->name, 0, sizeof (wo->name));
391 memset (wo->our_node, 0, sizeof (wo->our_node));
392 memset (wo->his_node, 0, sizeof (wo->his_node));
420 memcpy (dst, src, sizeof (ipxcp_wantoptions[0].our_node));
431 return memcmp (dst, src, sizeof (ipxcp_wantoptions[0].our_node)) == 0;
443 for (indx = 0; indx < sizeof (ipxcp_wantoptions[0].our_node); ++indx)
628 for (indx = 0; indx < sizeof (go->our_node); ++indx)
701 #define ACKCINODE(opt,neg,val) ACKCICHARS(opt,neg,val,sizeof(val))
778 BZERO(&no, sizeof(no));
925 #define REJCINODE(opt,neg,val) REJCICHARS(opt,neg,val,sizeof(val))
1009 BZERO(ho, sizeof(*ho));
1056 DECPTR (sizeof (u_int32_t), p);
1066 DECPTR (sizeof (u_int32_t), p);
1096 INCPTR (sizeof (wo->his_node), p);
1106 INCPTR (sizeof (wo->his_node), p);
1117 INCPTR (sizeof (wo->his_node), p);
1125 INCPTR (sizeof (wo->his_node), p);
1131 INCPTR (sizeof (wo->his_node), p);
1186 DECPTR (sizeof (u_int16_t), p);
1197 if (name_size > sizeof (ho->name))
1198 name_size = sizeof (ho->name) - 1;
1199 memset (ho->name, 0, sizeof (ho->name));
1278 INCPTR (sizeof (wo->his_node), ucp);
1412 slprintf(strpid, sizeof(strpid), "%d", getpid());
1413 slprintf(strspeed, sizeof(strspeed),"%d", baud_rate);
1418 strlcpy (strproto_lcl, "RIP ", sizeof(strproto_lcl));
1420 strlcat (strproto_lcl, "NLSP ", sizeof(strproto_lcl));
1424 strlcpy (strproto_lcl, "NONE ", sizeof(strproto_lcl));
1431 strlcpy (strproto_rmt, "RIP ", sizeof(strproto_rmt));
1433 strlcat (strproto_rmt, "NLSP ", sizeof(strproto_rmt));
1437 strlcpy (strproto_rmt, "NONE ", sizeof(strproto_rmt));
1441 strlcpy (strnetwork, ipx_ntoa (go->network), sizeof(strnetwork));
1443 slprintf (strlocal, sizeof(strlocal), "%0.6B", go->our_node);
1445 slprintf (strremote, sizeof(strremote), "%0.6B", ho->his_node);
1493 if (code >= 1 && code <= sizeof(ipxcp_codenames) / sizeof(char *))