Lines Matching defs:pvol
448 struct exfat_dentry *pvol;
460 pvol = filter.out.dentry_set;
462 memset(pvol->vol_label, 0, sizeof(pvol->vol_label));
464 pvol = calloc(sizeof(struct exfat_dentry), 1);
465 if (!pvol)
469 pvol->type = EXFAT_VOLUME;
476 free(pvol);
480 memcpy(pvol->vol_label, volume_label, volume_label_len);
481 pvol->vol_char_cnt = volume_label_len/2;
486 err = exfat_add_dentry_set(exfat, &loc, pvol, dcount, false);
489 free(pvol);