Home
last modified time | relevance | path

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

/titanic_41/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 …]
/titanic_41/usr/src/uts/common/fs/hsfs/
H A Dhsfs_vfsops.c235 static int hs_parsehsvol(struct hsfs *fsp, uchar_t *volp,
241 static int hs_joliet_level(uchar_t *volp);
242 static int hs_parseisovol(struct hsfs *fsp, uchar_t *volp,
1006 uchar_t *volp; in hs_findhsvol() local
1020 volp = (uchar_t *)secbp->b_un.b_addr; in hs_findhsvol()
1027 HSV_DESC_TYPE(volp) != VD_EOV; n++) { in hs_findhsvol()
1029 if (HSV_STD_ID(volp)[i] != HSV_ID_STRING[i]) in hs_findhsvol() local
1031 if (HSV_STD_VER(volp) != HSV_ID_VER) in hs_findhsvol()
1033 switch (HSV_DESC_TYPE(volp)) { in hs_findhsvol()
1037 error = hs_parsehsvol(fsp, volp, hvp); in hs_findhsvol()
[all …]
/titanic_41/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 …]
/titanic_41/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 …]
/titanic_41/usr/src/cmd/fs.d/udfs/fsck/
H A Dfsck.h107 struct vdp_desc *volp; variable
H A Dsetup.c275 volp = (struct vdp_desc *)tp; in check_vdp()