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

Lines Matching defs:deviceID

74 									NotifyMeWhen now sets deviceID based on passed connectionID.
192 // DVCountDevices, DVGetIndDevice returns a deviceID. If you call DVGetIndDevice
232 OSErr DVCGetDeviceInfo( DVCDeviceID deviceID, DVCDeviceInfoPtr pInfo )
240 // (actually, this could be a connID or a deviceID)
241 error = DVIsValidID( (DVDriverID) deviceID );
245 // for now, the deviceID _is_ the ptr to data
246 pDriverData = (DVDriverDataPtr) deviceID;
280 OSErr DVCGetDeviceName( DVCDeviceID deviceID, char * str )
286 // make sure we've got a valid deviceID
287 error = DVIsValidID( (DVDriverID) deviceID );
292 pDVDriverData = (DVDriverDataPtr) deviceID;
308 OSErr DVCSetDeviceName( DVCDeviceID deviceID, char * str )
314 // make sure we've got a valid deviceID
315 error = DVIsValidID( (DVDriverID) deviceID );
320 pDVDriverData = (DVDriverDataPtr) deviceID;
340 OSErr DVCOpenDeviceConnection( DVCDeviceID deviceID, DVCDeviceConnectionID *pConnID )
345 // make sure we've got a valid deviceID
346 error = DVIsValidID( (DVDriverID) deviceID );
351 pDVDriverData = (DVDriverDataPtr) deviceID;
362 *pConnID = (DVCDeviceConnectionID) deviceID;
381 // make sure we've got a valid deviceID
406 OSErr DVCGetDeviceClock( DVCDeviceID deviceID, Component *clock )
408 *clock = ((DVDriverDataPtr)deviceID)->clock;
427 DVCDeviceID deviceID;
443 // get the deviceID from the connectionID
444 deviceID = (DVCDeviceID) connID;
449 pEntry->deviceID = deviceID;
472 DVCDeviceID deviceID;
479 // get the deviceID from the connectionID
480 deviceID = (DVCDeviceID) connID;
490 pEntry->deviceID = deviceID;
612 theEvent.eventHeader.deviceID = (DVCDeviceID) connID;
661 theEvent.eventHeader.deviceID = (DVCDeviceID) connID;
746 theEvent.eventHeader.deviceID = (DVCDeviceID) connID;
781 theEvent.eventHeader.deviceID = (DVCDeviceID) connID;
1045 // the event came from the same deviceID as this notif entry
1046 if ( (pEntry->deviceID == kDVGlobalEventConnectionID) ||
1047 (pEvent->eventHeader.deviceID == pEntry->deviceID) )