Lines Matching refs:from
51 * from a "host" file and one gotten from a "services" file.
118 * Get the address from the services file
167 * _netdir_getbyaddr() takes an address (hopefully obtained from
285 char *from; /* traverses the string to be converted */
297 from = netbufp->buf;
300 if (*from == '\\') {
304 if (*from == '\n' || !isprint((unsigned char)*from)) {
305 (void) sprintf(to, "\\%.3o", *from & 0xff);
308 *to++ = *from;
311 from++;
331 char *from; /* traverses the universal address */
338 from = uaddr;
341 while (*from) {
342 if (*from == '\\') {
343 if (*(from+1) == '\\') {
345 from += 2;
347 *to = ((*(from+1) - '0') << 6) +
348 ((*(from+2) - '0') << 3) +
349 (*(from+3) - '0');
350 from += 4;
353 *to = *from++;