Lines Matching refs:command
190 DSPAudioDriverCommand command; in DSPi_PlaySoundEx() local
191 command.ctrl = DSP_32BIT_TO_DSP(ctrl); in DSPi_PlaySoundEx()
192 command.buf = DSP_32BIT_TO_DSP(src); in DSPi_PlaySoundEx()
193 command.len = DSP_32BIT_TO_DSP(len); in DSPi_PlaySoundEx()
194 command.opt = DSP_32BIT_TO_DSP(0); in DSPi_PlaySoundEx()
195 DSP_WriteProcessPipe(context, DSP_PIPE_AUDIO, &command, sizeof(command)); in DSPi_PlaySoundEx()
407 DSPAudioDriverCommand command; in DSPi_StopSoundCore() local
408 command.ctrl = DSP_32BIT_TO_DSP(ctrl); in DSPi_StopSoundCore()
409 command.buf = DSP_32BIT_TO_DSP(0); in DSPi_StopSoundCore()
410 command.len = DSP_32BIT_TO_DSP(0); in DSPi_StopSoundCore()
411 command.opt = DSP_32BIT_TO_DSP(0); in DSPi_StopSoundCore()
412 DSP_WriteProcessPipe(context, DSP_PIPE_AUDIO, &command, sizeof(command)); in DSPi_StopSoundCore()
476 DSPAudioDriverCommand command; in DSPi_StartSamplingCore() local
477 command.ctrl = DSP_32BIT_TO_DSP(ctrl); in DSPi_StartSamplingCore()
478 command.buf = DSP_32BIT_TO_DSP(0); in DSPi_StartSamplingCore()
479 command.len = DSP_32BIT_TO_DSP(0); in DSPi_StartSamplingCore()
480 command.opt = DSP_32BIT_TO_DSP(0); in DSPi_StartSamplingCore()
481 DSP_WriteProcessPipe(context, DSP_PIPE_AUDIO, &command, sizeof(command)); in DSPi_StartSamplingCore()
509 DSPAudioDriverCommand command; in DSPi_StopSamplingCore() local
510 command.ctrl = DSP_32BIT_TO_DSP(ctrl); in DSPi_StopSamplingCore()
511 command.buf = DSP_32BIT_TO_DSP(0); in DSPi_StopSamplingCore()
512 command.len = DSP_32BIT_TO_DSP(0); in DSPi_StopSamplingCore()
513 command.opt = DSP_32BIT_TO_DSP(0); in DSPi_StopSamplingCore()
514 DSP_WriteProcessPipe(context, DSP_PIPE_AUDIO, &command, sizeof(command)); in DSPi_StopSamplingCore()