Lines Matching defs:wire
93 xXIDeviceInfo *wire = (xXIDeviceInfo*)ptr;
98 lib->deviceid = wire->deviceid;
99 lib->use = wire->use;
100 lib->attachment = wire->attachment;
101 lib->enabled = wire->enabled;
102 nclasses = wire->num_classes;
106 if (ptr + wire->name_len > end)
109 lib->name = Xcalloc(wire->name_len + 1, 1);
112 strncpy(lib->name, ptr, wire->name_len);
113 lib->name[wire->name_len] = '\0';
114 ptr += ((wire->name_len + 3)/4) * 4;