Home
last modified time | relevance | path

Searched refs:lpTable (Results 1 – 6 of 6) sorted by relevance

/reactos/dll/win32/rsaenh/
H A Dhandle.c55 TRACE("(lpTable=%p)\n", lpTable); in init_handle_table()
57 lpTable->paEntries = NULL; in init_handle_table()
58 lpTable->iEntries = 0; in init_handle_table()
59 lpTable->iFirstFree = 0; in init_handle_table()
149 if (lpTable->paEntries) in grow_handle_table()
151 memcpy(newEntries, lpTable->paEntries, sizeof(struct handle_table_entry)*lpTable->iEntries); in grow_handle_table()
190 if (lpTable->iFirstFree >= lpTable->iEntries) in alloc_handle()
199 lpTable->paEntries[lpTable->iFirstFree].pObject = lpObject; in alloc_handle()
200 lpTable->iFirstFree = lpTable->paEntries[lpTable->iFirstFree].iNextFree; in alloc_handle()
252 lpTable->paEntries[index].iNextFree = lpTable->iFirstFree; in release_handle()
[all …]
H A Dhandle.h59 void init_handle_table (struct handle_table *lpTable) DECLSPEC_HIDDEN;
60 void destroy_handle_table(struct handle_table *lpTable) DECLSPEC_HIDDEN;
61 BOOL release_handle (struct handle_table *lpTable, HCRYPTKEY handle, DWORD dwType) DECLSPEC_HI…
62 BOOL copy_handle (struct handle_table *lpTable, HCRYPTKEY handle, DWORD dwType, HCRYPTKEY *…
63 BOOL lookup_handle (struct handle_table *lpTable, HCRYPTKEY handle, DWORD dwType, OBJECTHDR *…
64 BOOL is_valid_handle (struct handle_table *lpTable, HCRYPTKEY handle, DWORD dwType) DECLSPEC_HI…
66 HCRYPTKEY new_object (struct handle_table *lpTable, size_t cbSize, DWORD dwType, DESTRUCTOR des…
/reactos/dll/win32/winmm/
H A Dmci.c558 const BYTE* lpTable; member
578 uTbl, S_MciCmdTable[uTbl].lpTable, S_MciCmdTable[uTbl].uDevType); in MCI_IsCommandTableValid()
580 if (uTbl >= MAX_MCICMDTABLE || !S_MciCmdTable[uTbl].lpTable) in MCI_IsCommandTableValid()
583 lmem = S_MciCmdTable[uTbl].lpTable; in MCI_IsCommandTableValid()
626 lmem = S_MciCmdTable[uTbl].lpTable; in MCI_DumpCommandTable()
702 if (!S_MciCmdTable[uTbl].lpTable) { in MCI_SetCommandTable()
709 S_MciCmdTable[uTbl].lpTable = LockResource(hMem); in MCI_SetCommandTable()
718 lmem = S_MciCmdTable[uTbl].lpTable; in MCI_SetCommandTable()
732 lmem = S_MciCmdTable[uTbl].lpTable; in MCI_SetCommandTable()
938 if (uTbl >= MAX_MCICMDTABLE || !S_MciCmdTable[uTbl].lpTable) in MCI_FindCommand()
[all …]
/reactos/sdk/lib/ucrt/locale/
H A Dgetqloc_downlevel.cpp231 const __crt_locale_string_table* lpTable, in TranslateName() argument
241 int const cmp = _wcsicmp(*ppchName, lpTable[i].szName); in TranslateName()
245 *ppchName = lpTable[i].chAbbrev; in TranslateName()
H A Dget_qualified_locale.cpp321 const __crt_locale_string_table * lpTable, in TranslateName() argument
333 cmp = _wcsicmp(*ppchName, (const wchar_t *)(*(lpTable + i)).szName); in TranslateName()
336 *ppchName = (*(lpTable + i)).chAbbrev; in TranslateName()
/reactos/dll/win32/mapi32/
H A Dutil.c933 HRESULT WINAPI HrQueryAllRows(LPMAPITABLE lpTable, LPSPropTagArray lpPropTags, in HrQueryAllRows() argument
938 …return mapiFunctions.HrQueryAllRows(lpTable, lpPropTags, lpRestriction, lpSortOrderSet, crowsMax, … in HrQueryAllRows()
940 …FIXME("(%p, %p, %p, %p, %d, %p): stub\n", lpTable, lpPropTags, lpRestriction, lpSortOrderSet, crow… in HrQueryAllRows()