• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/

Lines Matching refs:index

335 			for( CFIndex index = 0; (status == kIOReturnSuccess) && (index < count); index++ )
337 IOFireWireLibCommandRef command = (IOFireWireLibCommandRef)CFArrayGetValueAtIndex( mCommandArray, index );
341 status = cmd->PrepareForVectorSubmit( &mSubmitBuffer[index] );
374 for( CFIndex index = 0; (status == kIOReturnSuccess) && (index < count); index++ )
376 IOFireWireLibCommandRef command = (IOFireWireLibCommandRef)CFArrayGetValueAtIndex( mCommandArray, index );
390 for( CFIndex index = 0; index < count; index++ )
392 IOFireWireLibCommandRef command = (IOFireWireLibCommandRef)CFArrayGetValueAtIndex( mCommandArray, index );
452 for( CFIndex index = 0; (index < count); index++ )
454 Cmd * cmd = (Cmd*)mResultBuffer[index].refCon;
456 IOReturn status = mResultBuffer[index].result;
460 args[0] = (void*)mResultBuffer[index].bytesTransferred;
461 args[1] = (void*)mResultBuffer[index].ackCode;
462 args[2] = (void*)mResultBuffer[index].responseCode;
548 CFIndex index = kCFNotFound;
551 while( (index = CFArrayGetFirstIndexOfValue( array, search_range, command)) != kCFNotFound )
553 // remove the index
554 CFArrayRemoveValueAtIndex( array, index );
565 void VectorCommand::SInsertCommandAtIndex( IOFireWireLibVectorCommandRef self, IOFireWireLibCommandRef command, UInt32 index )
569 CFArrayInsertValueAtIndex( me->mCommandArray, index, command );
576 IOFireWireLibCommandRef VectorCommand::SGetCommandAtIndex( IOFireWireLibVectorCommandRef self, UInt32 index )
580 return (IOFireWireLibCommandRef)CFArrayGetValueAtIndex( me->mCommandArray, index );
600 void VectorCommand::SRemoveCommandAtIndex( IOFireWireLibVectorCommandRef self, UInt32 index )
604 CFArrayRemoveValueAtIndex( me->mCommandArray, index );