| tag | line | file | source code |
| tmp_file | 109 | drivers/sound/soundcard.c | struct fileinfo tmp_file; |
| tmp_file | 126 | drivers/sound/soundcard.c | tmp_file.mode = 0; |
| tmp_file | 127 | drivers/sound/soundcard.c | tmp_file.flags = file->f_flags; |
| tmp_file | 129 | drivers/sound/soundcard.c | if ((tmp_file.flags & O_ACCMODE) == O_RDWR) |
| tmp_file | 130 | drivers/sound/soundcard.c | tmp_file.mode = OPEN_READWRITE; |
| tmp_file | 131 | drivers/sound/soundcard.c | if ((tmp_file.flags & O_ACCMODE) == O_RDONLY) |
| tmp_file | 132 | drivers/sound/soundcard.c | tmp_file.mode = OPEN_READ; |
| tmp_file | 133 | drivers/sound/soundcard.c | if ((tmp_file.flags & O_ACCMODE) == O_WRONLY) |
| tmp_file | 134 | drivers/sound/soundcard.c | tmp_file.mode = OPEN_WRITE; |
| tmp_file | 136 | drivers/sound/soundcard.c | if ((retval = sound_open_sw (dev, &tmp_file)) < 0) |
| tmp_file | 143 | drivers/sound/soundcard.c | memcpy ((char *) &files[dev], (char *) &tmp_file, sizeof (tmp_file)); |