Home | History | Annotate | Download | only in dev

Lines Matching defs:tmpbuf

208 	char tmpbuf[128]; /* XXX is this long enough? */
210 if (smbios_get_string(tbl, idx, tmpbuf, 128) != NULL) {
212 pmf_set_platform(key, tmpbuf);
223 char tmpbuf[128]; /* XXX is this long enough? */
225 if (snprintf(tmpbuf, sizeof(tmpbuf), "%u%s", val, suf)) {
227 pmf_set_platform(key, tmpbuf);
261 char tmpbuf[128], datestr[9];
263 if (smbios_get_string(tbl, idx, tmpbuf, 128) == NULL)
265 if (platform_scan_date(tmpbuf, &month, &day, &year) != 3)
284 char tmpbuf[UUID_STR_LEN];
287 uuid_snprintf(tmpbuf, sizeof(tmpbuf), &uuid);
289 pmf_set_platform(key, tmpbuf);