Home | History | Annotate | Download | only in iteconfig

Lines Matching defs:newis

81 	struct itewinsize is, newis;
92 fd = initialize(_PATH_CONSOLE, &is, &ib, &newis, &newib);
99 newis.depth = xstrtol(optarg);
107 fd = initialize(optarg, &is, &ib, &newis, &newib);
112 newis.height = xstrtol(optarg);
129 newis.width = xstrtol(optarg);
133 newis.x = xstrtol(optarg);
137 newis.y = xstrtol(optarg);
150 if (memcmp(&newis, &is, sizeof(is))) {
151 xioctl(fd, ITEIOCSWINSZ, &newis);
257 initialize(file, is, ib, newis, newib)
259 struct itewinsize *is, *newis;
271 memcpy(newis, is, sizeof(*is));