Lines Matching refs:theCmd

165 	SndCommand	theCmd;  in open_output()  local
222 theCmd.cmd=ampCmd; /*setting volume*/ in open_output()
223 theCmd.param1=mac_amplitude; in open_output()
224 SndDoCommand(gSndCannel, &theCmd, 0); in open_output()
243 SndCommand theCmd; in filling_end() local
244 theCmd.cmd=resumeCmd; SndDoImmediate(gSndCannel, &theCmd); in filling_end()
281 SndCommand theCmd; in output_data() local
291 theCmd.cmd=pauseCmd; SndDoImmediate(gSndCannel, &theCmd); in output_data()
341 theCmd.cmd= bufferCmd; in output_data()
342 theCmd.param2=(long)header; in output_data()
344 QuingSndCommand(gSndCannel, &theCmd); in output_data()
349 theCmd.cmd= callBackCmd; // post set in output_data()
350 theCmd.param1= 0; in output_data()
351 theCmd.param2= samples; in output_data()
352 QuingSndCommand(gSndCannel, &theCmd); in output_data()
361 SndCommand theCmd; in fade_output() local
364 theCmd.cmd=ampCmd; in fade_output()
365 theCmd.param1=mac_amplitude*(30-i)/30; /*amplitude->0*/ in fade_output()
366 SndDoImmediate(gSndCannel, &theCmd); in fade_output()
375 SndCommand theCmd; in purge_output() local
379 theCmd.cmd=flushCmd; /*clear buffer*/ in purge_output()
380 err= SndDoImmediate(gSndCannel, &theCmd); in purge_output()
381 theCmd.cmd=quietCmd; in purge_output()
382 err= SndDoImmediate(gSndCannel, &theCmd); in purge_output()
384 theCmd.cmd=ampCmd; in purge_output()
385 theCmd.param1=0; /*amplitude->0*/ in purge_output()
386 SndDoImmediate(gSndCannel, &theCmd); in purge_output()
388 theCmd.cmd=resumeCmd; in purge_output()
389 err= SndDoImmediate(gSndCannel, &theCmd); in purge_output()
391 theCmd.cmd=waitCmd; in purge_output()
392 theCmd.param1=2000*0.5; /* wait 0.5 sec */ in purge_output()
393 SndDoCommand(gSndCannel, &theCmd, 1); in purge_output()
395 theCmd.cmd=ampCmd; in purge_output()
396 theCmd.param1=mac_amplitude; in purge_output()
397 SndDoCommand(gSndCannel, &theCmd,0); in purge_output()
416 SndCommand theCmd; in flush_output() local
419 theCmd.cmd= callBackCmd; in flush_output()
420 theCmd.param1= 0; in flush_output()
421 theCmd.param2= FLUSH_END; in flush_output()
422 QuingSndCommand(gSndCannel, &theCmd); in flush_output()