Home
last modified time | relevance | path

Searched refs:volp (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/hsfs/labelit/
H A Dlabelit.c198 findhsvol(volp) in findhsvol() argument
199 char *volp; in findhsvol()
205 GETSECTOR(volp, secno++, 1);
206 while (HSV_DESC_TYPE(volp) != VD_EOV) {
208 if (HSV_STD_ID(volp)[i] != HSV_ID_STRING[i]) local
210 if (HSV_STD_VER(volp) != HSV_ID_VER)
212 switch (HSV_DESC_TYPE(volp)) {
219 GETSECTOR(volp, secno++, 1);
232 findisovol(volp) in findisovol() argument
233 char *volp; in findisovol()
[all …]
/illumos-gate/usr/src/uts/common/fs/hsfs/
H A Dhsfs_vfsops.c236 static int hs_parsehsvol(struct hsfs *fsp, uchar_t *volp,
242 static int hs_joliet_level(uchar_t *volp);
243 static int hs_parseisovol(struct hsfs *fsp, uchar_t *volp,
1007 uchar_t *volp; in hs_findhsvol() local
1021 volp = (uchar_t *)secbp->b_un.b_addr; in hs_findhsvol()
1028 HSV_DESC_TYPE(volp) != VD_EOV; n++) { in hs_findhsvol()
1030 if (HSV_STD_ID(volp)[i] != HSV_ID_STRING[i]) in hs_findhsvol() local
1032 if (HSV_STD_VER(volp) != HSV_ID_VER) in hs_findhsvol()
1034 switch (HSV_DESC_TYPE(volp)) { in hs_findhsvol()
1038 error = hs_parsehsvol(fsp, volp, hvp); in hs_findhsvol()
[all …]
/illumos-gate/usr/src/cmd/fs.d/hsfs/fstyp/
H A Dfstyp.c67 static int findhsvol(fstyp_hsfs_t *h, char *volp);
68 static int findisovol(fstyp_hsfs_t *h, char *volp);
69 static int findunixvol(fstyp_hsfs_t *h, char *volp);
225 findhsvol(fstyp_hsfs_t *h, char *volp) in findhsvol() argument
232 if ((err = GETCDSECTOR(h, volp, secno++, 1)) != 0) { in findhsvol()
235 while (HSV_DESC_TYPE(volp) != VD_EOV) { in findhsvol()
237 if (HSV_STD_ID(volp)[i] != HSV_ID_STRING[i]) in findhsvol() local
239 if (HSV_STD_VER(volp) != HSV_ID_VER) in findhsvol()
241 switch (HSV_DESC_TYPE(volp)) { in findhsvol()
248 if ((err = GETCDSECTOR(h, volp, secno++, 1)) != 0) { in findhsvol()
[all …]
/illumos-gate/usr/src/uts/common/io/audio/impl/
H A Daudio_oss.c865 sndctl_dsp_getplayvol(audio_client_t *c, int *volp) in sndctl_dsp_getplayvol() argument
871 *volp = vol | (vol << 8); in sndctl_dsp_getplayvol()
876 sndctl_dsp_setplayvol(audio_client_t *c, int *volp) in sndctl_dsp_setplayvol() argument
880 vol = *volp & 0xff; in sndctl_dsp_setplayvol()
886 *volp = (vol | (vol << 8)); in sndctl_dsp_setplayvol()
892 sndctl_dsp_getrecvol(audio_client_t *c, int *volp) in sndctl_dsp_getrecvol() argument
897 *volp = (vol | (vol << 8)); in sndctl_dsp_getrecvol()
902 sndctl_dsp_setrecvol(audio_client_t *c, int *volp) in sndctl_dsp_setrecvol() argument
906 vol = *volp & 0xff; in sndctl_dsp_setrecvol()
912 *volp = (vol | (vol << 8)); in sndctl_dsp_setrecvol()
[all …]
/illumos-gate/usr/src/cmd/fs.d/udfs/fsck/
H A Dsetup.c98 static struct vdp_desc *volp; variable
298 volp = (struct vdp_desc *)tp; in check_vdp()