Lines Matching refs:from
50 * from a "host" file and one gotten from a "services" file.
117 * Get the address from the services file
166 * _netdir_getbyaddr() takes an address (hopefully obtained from
284 char *from; /* traverses the string to be converted */
296 from = netbufp->buf;
299 if (*from == '\\') {
303 if (*from == '\n' || !isprint((unsigned char)*from)) {
304 (void) sprintf(to, "\\%.3o", *from & 0xff);
307 *to++ = *from;
310 from++;
330 char *from; /* traverses the universal address */
337 from = uaddr;
340 while (*from) {
341 if (*from == '\\') {
342 if (*(from+1) == '\\') {
344 from += 2;
346 *to = ((*(from+1) - '0') << 6) +
347 ((*(from+2) - '0') << 3) +
348 (*(from+3) - '0');
349 from += 4;
352 *to = *from++;