Lines Matching refs:result
147 u32 data, result; in getFileType() local
152 result = SOUND_FILE_FORMAT_ERROR; in getFileType()
164 result = SOUND_FILE_AIFF; in getFileType()
174 result = SOUND_FILE_WAVE; in getFileType()
181 return result; in getFileType()
189 u32 result = getFileType(path, soundinfo); in getSoundInfo() local
191 switch (result) in getSoundInfo()
195 result = getAiffInfo(path, soundinfo, NULL); in getSoundInfo()
201 result = getWaveInfo(path, soundinfo, NULL); in getSoundInfo()
206 return result; in getSoundInfo()
214 u32 result = getFileType(path, soundinfo); in getSoundSamples() local
216 switch (result) in getSoundSamples()
220 result = getAiffInfo(path, soundinfo, dest); in getSoundSamples()
226 result = getWaveInfo(path, soundinfo, dest); in getSoundSamples()
231 return result; in getSoundSamples()