Lines Matching refs:buf_len
44 static boolean_t do_getset(int fd, int cmd, char *buf, int buf_len);
45 static int get_value(char *msg, char *buf, int buf_len);
484 do_getset(int fd, int cmd, char *buf, int buf_len) in do_getset() argument
497 if (do_ipadm_getset(cmd, buf, buf_len)) in do_getset()
502 stri.ic_len = buf_len; in do_getset()
525 get_value(char *msg, char *buf, int buf_len) in get_value() argument
532 buf[buf_len-1] = '\0'; in get_value()
533 if (fgets(buf, buf_len-1, stdin) == NULL) in get_value()
548 int len, buf_len; in getset_interactive() local
570 buf_len = atoi(len_buf); in getset_interactive()
572 buf_len = sizeof (gbuf); in getset_interactive()
573 (void) do_getset(fd, cmd, gbuf, buf_len); in getset_interactive()