Searched refs:numlen (Results 1 – 7 of 7) sorted by relevance
/titanic_50/usr/src/lib/nsswitch/files/common/ |
H A D | getservent.c | 132 int numlen, s_port; in check_port() local 151 numlen = linep - numstart; in check_port() 152 if (numlen == 0 || numlen >= sizeof (numbuf)) in check_port() 154 (void) memcpy(numbuf, numstart, numlen); in check_port() 155 numbuf[numlen] = '\0'; in check_port()
|
/titanic_50/usr/src/lib/libsocket/inet/ |
H A D | getprotoent_r.c | 135 int numlen, namelen = 0; in str2protoent() local 174 numlen = (int)(p - numstart); in str2protoent() 175 if (numlen >= (int)sizeof (numbuf)) { in str2protoent() 179 (void) memcpy(numbuf, numstart, (size_t)numlen); in str2protoent() 180 numbuf[numlen] = '\0'; in str2protoent()
|
H A D | getnetent_r.c | 140 ptrdiff_t numlen; in str2netent() local 178 numlen = p - numstart; in str2netent() 179 if (numlen >= (ptrdiff_t)sizeof (numbuf)) { in str2netent() 183 (void) memcpy(numbuf, numstart, numlen); in str2netent() 184 numbuf[numlen] = '\0'; in str2netent()
|
/titanic_50/usr/src/lib/libnsl/nss/ |
H A D | getrpcent_r.c | 123 ssize_t numlen, namelen = 0; in str2rpcent() local 158 numlen = p - numstart; in str2rpcent() 159 if (numlen >= sizeof (numbuf)) { in str2rpcent() 163 (void) memcpy(numbuf, numstart, numlen); in str2rpcent() 164 numbuf[numlen] = '\0'; in str2rpcent()
|
/titanic_50/usr/src/lib/nsswitch/nis/common/ |
H A D | getservent.c | 228 int numlen, s_port; in check_port2() local 247 numlen = linep - numstart; in check_port2() 248 if (numlen == 0 || numlen >= sizeof (numbuf)) in check_port2() 250 (void) memcpy(numbuf, numstart, numlen); in check_port2() 251 numbuf[numlen] = '\0'; in check_port2()
|
/titanic_50/usr/src/tools/cscope-fast/ |
H A D | display.c | 72 static int numlen; /* line number display field length */ variable 205 width = COLS - selectlen - numlen - 2; in display() 266 (void) printw("%*s ", numlen, linenum); in display() 501 numlen = 0; in countrefs() 526 if ((i = strlen(linenum)) > numlen) { in countrefs() 527 numlen = i; in countrefs()
|
/titanic_50/usr/src/lib/gss_mechs/mech_krb5/support/ |
H A D | fake-addrinfo.c | 848 size_t numlen = strspn (serv, "0123456789"); in fake_getaddrinfo() local 849 if (serv[numlen] == '\0') { in fake_getaddrinfo()
|