• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/IOAudioFamily-200.6/

Lines Matching refs:setFormat

291 IOReturn IOAudioStream::setFormat(const IOAudioStreamFormat *streamFormat, const IOAudioStreamFormatExtension *formatExtension, bool callDriver)
306 result = setFormat(streamFormat, &validFormatExtension, formatDict, callDriver);
322 IOReturn IOAudioStream::setFormat(const IOAudioStreamFormat *streamFormat, const IOAudioStreamFormatExtension *formatExtension, OSDictionary *formatDict, bool callDriver)
331 audioDebugIOLog(3, "+ IOAudioStream[%p]::setFormat(%p, %p)\n", this, streamFormat, formatDict);
476 IOLog("IOAudioStream<%p>::setFormat(0x%p, 0x%p) - audio engine unable to change format\n", this, streamFormat, formatDict);
508 IOLog("IOAudioStream<0x%p>::setFormat(0x%p, 0x%p) - invalid format.\n", this, streamFormat, formatDict);
515 audioDebugIOLog(3, "IOAudioStream[%p]::setFormat(%p, %p) returns 0x%lx", this, streamFormat, formatDict, (long unsigned int)result);
1195 result = audioStream->setFormat((OSDictionary *)arg1);
1202 IOReturn IOAudioStream::setFormat(const IOAudioStreamFormat *streamFormat, bool callDriver)
1204 return setFormat(streamFormat, (IOAudioStreamFormatExtension *)NULL, callDriver);
1207 IOReturn IOAudioStream::setFormat(OSDictionary *formatDict)
1215 result = setFormat(&streamFormat, &formatExtension, formatDict);
1226 IOReturn IOAudioStream::setFormat(const IOAudioStreamFormat *streamFormat, OSDictionary *formatDict, bool callDriver)
1228 return setFormat(streamFormat, NULL, formatDict, callDriver);
1234 return setFormat(streamFormat, &reserved->streamFormatExtension, false);