Lines Matching defs:to
4 * The contents of this file are subject to the terms of the
122 PrintMsg(_MGET_("Reference to destroyed Audio object"), Fatal);
156 Double& pos, // field to update
169 // If seek before start of file, set to start of file
204 // Default write routine writes to the current position
221 // The default action is just to write the data.
223 // to extend the object, if necessary.
227 // Copy out to the specified audio object.
228 // Input and output positions default to the 'current' positions.
231 Audio* to) // audio object to copy to
237 return (Copy(to, frompos, topos, limit));
241 // and src/dest start offsets. limit is either the time to copy or
242 // AUDIO_UNKNOWN_TIME to copy to eof or error.
247 Audio* to, // audio object to copy to
256 // If positions are Undefined, try to set them properly
260 topos = to->WritePosition();
273 err = AsyncCopy(to, frompos, topos, len);
281 // This routine is meant to block until all the
282 // data has been copied. So copies to a pipe or
283 // device should continue. However, copies to a
316 // read than could be copied out (eg, if there was a short write to a
318 // backed up to the right place in the input stream.
322 // to finish writing all input data to the output. We need to keep
326 Audio* to, // audio object to copy to
341 tohdr = to->GetHeader();
349 if (to->isBuffer()) {
350 tob = (AudioBuffer*) to;
401 err = to->WriteData(bptr, bufsiz, topos);