Searched defs:iKey (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/
H A DVBoxSmcUtil-darwin.cpp179 static int GetKeyByIndex(uint32_t iKey, SMCPARAM *pKeyData) argument
183 In.u32Data = iKey;
212 RTMsgError("kSMCReadKey failed on #%x/%.4s: %#x\n", iKey, Tmp.uKey.au8, pKeyData->uResult);
218 RTMsgError("kSMCGetKeyInfo failed on #%x/%.4s: %#x\n", iKey, Tmp.uKey.au8, pKeyData->uResult);
224 RTMsgError("kSMCGetKeyFromIndex failed on #%x: %#x\n", iKey, pKeyData->uResult);
316 for (uint32_t iKey = 0; iKey < cKeys; iKey++)
319 rc = GetKeyByIndex(iKey, &Key);
322 RTPrintf("%#06x: ", iKey);
[all...]
H A DDevSmc.cpp638 uint32_t iKey = RT_ELEMENTS(g_aSmcKeys); local
639 while (iKey-- > 0)
640 if (g_aSmcKeys[iKey].Key.u32 == uKeyValue)
641 return iKey;
658 uint32_t iKey = smcKeyLookup(pThis, pThis->CurKey.Key.u32); local
659 if (iKey != UINT32_MAX)
661 if ( g_aSmcKeys[iKey].cbValue == pThis->CurKey.cbValue
662 || !g_aSmcKeys[iKey].cbValue)
664 pThis->CurKey.Type = g_aSmcKeys[iKey].Type;
665 pThis->CurKey.fAttr = g_aSmcKeys[iKey]
712 uint32_t iKey = RT_BE2H_U32(pThis->CurKey.Key.u32); local
745 uint32_t iKey = smcKeyLookup(pThis, pThis->CurKey.Key.u32); local
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DUIActionPool.cpp987 foreach (const int &iKey, m_pool.keys()) argument
990 UIAction *pAction = m_pool.value(iKey);
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIKeyboardHandler.cpp1274 bool UIKeyboardHandler::keyEventHandleNormal(int iKey, uint8_t uScan, int fFlags, LONG *pCodes, uint *puCodesCount) argument
1318 else if (!allHostComboKeys.contains(iKey))
1329 bool UIKeyboardHandler::keyEventHostComboHandled(int iKey, wchar_t *pUniKey, bool isHostComboStateChanged, bool *pfResult) argument
1353 *pfResult = processHotKey(iKey, pUniKey);
1442 bool UIKeyboardHandler::keyEvent(int iKey, uint8_t uScan, int fFlags, ulong uScreenId, wchar_t *pUniKey /* = 0 */) argument
1448 if (allHostComboKeys.contains(iKey))
1452 if (!m_pressedHostComboKeys.contains(iKey))
1453 m_pressedHostComboKeys.insert(iKey, uScan);
1459 if (m_pressedHostComboKeys.contains(iKey))
1460 m_pressedHostComboKeys.remove(iKey);
[all...]

Completed in 64 milliseconds