| tag | line | file | source code |
| tmp_file | 102 | drivers/sound/soundcard.c | struct fileinfo tmp_file; |
| tmp_file | 118 | drivers/sound/soundcard.c | tmp_file.mode = 0; |
| tmp_file | 119 | drivers/sound/soundcard.c | tmp_file.flags = file_get_flags (file); |
| tmp_file | 121 | drivers/sound/soundcard.c | if ((tmp_file.flags & O_ACCMODE) == O_RDWR) |
| tmp_file | 122 | drivers/sound/soundcard.c | tmp_file.mode = OPEN_READWRITE; |
| tmp_file | 123 | drivers/sound/soundcard.c | if ((tmp_file.flags & O_ACCMODE) == O_RDONLY) |
| tmp_file | 124 | drivers/sound/soundcard.c | tmp_file.mode = OPEN_READ; |
| tmp_file | 125 | drivers/sound/soundcard.c | if ((tmp_file.flags & O_ACCMODE) == O_WRONLY) |
| tmp_file | 126 | drivers/sound/soundcard.c | tmp_file.mode = OPEN_WRITE; |
| tmp_file | 128 | drivers/sound/soundcard.c | if ((retval = sound_open_sw (dev, &tmp_file)) < 0) |
| tmp_file | 135 | drivers/sound/soundcard.c | memcpy ((char *) &files[dev], (char *) &tmp_file, sizeof (tmp_file)); |