• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/SmartCardServices-55111/src/PCSC/

Lines Matching refs:dwPort

94 	DWORD dwPort, LPCSTR lpcLibrary, LPCSTR lpcDevice);
100 static int ReaderContextCheckDuplicateReader(LPCSTR lpcReader, DWORD dwPort);
103 static BOOL ReaderNameMatchForIndex(DWORD dwPort, LPCSTR lpcReader, int index);
106 DWORD dwPort, LPCSTR lpcLibrary);
129 LONG RFAddReader(LPSTR lpcReader, DWORD dwPort, LPSTR lpcLibrary, LPSTR lpcDevice)
163 rv = ReaderContextCheckDuplicateReader(lpcReader, dwPort);
175 rv = ReaderContextConstructor(baseContext, lpcReader, dwPort, lpcLibrary, lpcDevice);
179 rv = ReaderCheckForClone(baseContext, lpcReader, dwPort, lpcLibrary);
213 rv = RFRemoveReader(lpcReader, dwPort);
220 rv = ReaderContextConstructor(ctxSlot, lpcReader, dwPort, lpcLibrary, lpcDevice);
260 LONG RFRemoveReader(LPSTR lpcReader, DWORD dwPort)
269 while ((rv = RFReaderInfoNamePort(dwPort, lpcReader, &tmpContext)) == SCARD_S_SUCCESS)
285 LPCSTR libraryName, DWORD dwPort, DWORD dwSlot)
329 if (((((sReadersContexts[i])->dwPort & 0xFFFF0000) ==
331 && ((sReadersContexts[i])->dwPort != dwPort))
425 LONG RFReaderInfoNamePort(DWORD dwPort, LPSTR lpcReader,
435 ReaderNameMatchForIndex(dwPort, lpcReader, ix))
811 rContext->dwPort, rContext->lpcDevice);
1057 rv = RFRemoveReader(lpcStripReader, sReadersContexts[i]->dwPort);
1123 ((sReadersContexts[jx])->dwPort == (sReadersContexts[i])->dwPort)&&
1140 (sReadersContexts[i])->dwPort, (sReadersContexts[i])->lpcDevice);
1190 DWORD dwPort, LPCSTR lpcLibrary, LPCSTR lpcDevice)
1198 ctx->dwPort = dwPort;
1218 DWORD dwPort, LPCSTR lpcLibrary)
1223 LONG parentNode = RFSetReaderName(ctx, lpcReader, lpcLibrary, dwPort, 0);
1332 DWORD dwPort = ctx->dwPort;
1337 if (!ReaderNameMatchForIndex(dwPort, lpcReader, ix))
1356 static int ReaderContextCheckDuplicateReader(LPCSTR lpcReader, DWORD dwPort)
1370 if (ReaderNameMatchForIndex(dwPort, lpcReader, ix))
1420 static BOOL ReaderNameMatchForIndex(DWORD dwPort, LPCSTR lpcReader, int index)
1433 return ((strcmp(lpcReader, lpcStripReader) == 0) && (dwPort == (sReadersContexts[index])->dwPort))?1:0;
1450 ctxSlot->dwPort = ctxBase->dwPort;