• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/IOFWDVComponents-207.4.1/

Lines Matching refs:pb

391 	pascal ComponentResult IDHRead( ComponentInstance idh, IDHParameterBlock *pb)
396 pb - Specifies the address of a IDHParameterBlock structure. Each of the fields are described in detail
412 pascal ComponentResult IDHWrite( ComponentInstance idh, IDHParameterBlock *pb)
417 pb - Specifies the address of a IDHParameterBlock structure. Each of the fields are described in detail
432 pascal ComponentResult IDHReleaseBuffer( ComponentInstance idh, IDHParameterBlock *pb)
437 pb - Specifies the address of the IDHParameterBlock structure that was originally passed into
451 pascal ComponentResult IDHCancelPendingIO( ComponentInstance idh, IDHParameterBlock *pb)
456 pb - Specifies the address of the IDHParameterBlock structure that was originally passed into
805 IDHParameterBlock *pb = (IDHParameterBlock *) eventRecord;
808 pb->buffer = myBuffer;
809 pb->requestedCount = 120000;
810 pb->actualCount = 0;
811 pb->completionProc = DVIsochComponentReadCallback;
812 pb->refCon = iGlobals;
815 result = IDHRead( isochInstance, pb);
845 IDHParameterBlock *pb = (IDHParameterBlock *) eventRecord;
847 WorkOnData( pb->buffer, pb->actualCount);
849 result = IDHReleaseBuffer( isochInstance, pb);
854 pb->buffer = nil;
855 pb->requestedCount = 120000;
856 pb->actualCount = 0;
857 pb->completionProc = DVIsochComponentReadCallback;
858 pb->refCon = iGlobals;
861 result = IDHRead( isochInstance, pb);
891 IDHParameterBlock *pb = (IDHParameterBlock *) eventRecord;
901 result = IDHWrite( isochInstance, pb);
931 IDHParameterBlock *pb = (IDHParameterBlock *) eventRecord;
933 BlockMove( myBuffer, pb->buffer, 120000);
943 result = IDHWrite( isochInstance, pb);