Searched defs:pvValue (Results 1 - 23 of 23) sorted by relevance

/vbox/src/VBox/Runtime/testcase/
H A DtstRTDarwinMachKernel.cpp54 void *pvValue = NULL; local
55 int rc = RTR0DbgKrnlInfoQuerySymbol(hKrnlInfo, NULL, s_apszSyms[i], &pvValue);
56 RTTestIPrintf(RTTESTLVL_ALWAYS, "%Rrc %p %s\n", rc, pvValue, s_apszSyms[i]);
H A DtstRTStrFormat.cpp41 const char *pszType, void const *pvValue,
51 RTTestIFailed("pvValue=%p expected %p\n", pvUser, (void *)((uintptr_t)TstType + iType));
57 size_t cchNum = RTStrFormatNumber(szNum, (uintptr_t)pvValue, 10, cchWidth, cchPrecision, fFlags);
40 TstType(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, const char *pszType, void const *pvValue, int cchWidth, int cchPrecision, unsigned fFlags, void *pvUser) argument
/vbox/src/VBox/Runtime/r3/posix/
H A Dtls-posix.cpp98 RTR3DECL(int) RTTlsSet(RTTLS iTls, void *pvValue) argument
100 int rc = pthread_setspecific(iTls, pvValue);
H A Dthread-posix.cpp119 static void rtThreadKeyDestruct(void *pvValue);
232 * @param pvValue The key value. PRTTHREAD in our case.
234 static void rtThreadKeyDestruct(void *pvValue) argument
239 PRTTHREADINT pThread = (PRTTHREADINT)pvValue;
/vbox/src/VBox/Runtime/r3/win/
H A Dtls-win.cpp98 RTR3DECL(int) RTTlsSet(RTTLS iTls, void *pvValue) argument
100 if (TlsSetValue((DWORD)iTls, pvValue))
/vbox/src/VBox/VMM/VMMAll/
H A DVMMAll.cpp70 const char *pszType, void const *pvValue,
76 PCVMCPUSET pSet = (PCVMCPUSET)pvValue;
69 vmmFormatTypeVmCpuSet(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, const char *pszType, void const *pvValue, int cchWidth, int cchPrecision, unsigned fFlags, void *pvUser) argument
H A DIOMAllMMIO.cpp90 * @param pvValue Where to store the value.
93 static VBOXSTRICTRC iomMMIODoComplicatedWrite(PVM pVM, PIOMMMIORANGE pRange, RTGCPHYS GCPhys, void const *pvValue, unsigned cbValue) argument
196 u32GivenValue = *(uint8_t const *)pvValue;
200 u32GivenValue = *(uint16_t const *)pvValue;
204 u32GivenValue = RT_MAKE_U32_FROM_U8(((uint8_t const *)pvValue)[0], ((uint8_t const *)pvValue)[1],
205 ((uint8_t const *)pvValue)[2], 0);
209 u32GivenValue = *(uint32_t const *)pvValue;
263 pvValue = (uint8_t const *)pvValue
328 iomMMIODoComplicatedRead(PVM pVM, PIOMMMIORANGE pRange, RTGCPHYS GCPhys, void *pvValue, unsigned cbValue) argument
442 iomMMIODoReadFFs(void *pvValue, size_t cbValue) argument
469 iomMMIODoRead00s(void *pvValue, size_t cbValue) argument
492 iomMMIODoRead(PVM pVM, PVMCPU pVCpu, PIOMMMIORANGE pRange, RTGCPHYS GCPhys, void *pvValue, unsigned cbValue) argument
[all...]
H A DPGMAll.cpp2601 const char *pszType, void const *pvValue,
2606 PCPGMPAGE pPage = (PCPGMPAGE)pvValue;
2669 const char *pszType, void const *pvValue,
2674 PGMRAMRANGE const *pRam = (PGMRAMRANGE const *)pvValue;
2600 pgmFormatTypeHandlerPage(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, const char *pszType, void const *pvValue, int cchWidth, int cchPrecision, unsigned fFlags, void *pvUser) argument
2668 pgmFormatTypeHandlerRamRange(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, const char *pszType, void const *pvValue, int cchWidth, int cchPrecision, unsigned fFlags, void *pvUser) argument
/vbox/src/VBox/Runtime/generic/
H A Dtls-generic.cpp122 RTR3DECL(int) RTTlsSet(RTTLS iTls, void *pvValue) argument
131 pThread->apvTlsEntries[iTls] = pvValue;
/vbox/src/VBox/Runtime/r3/os2/
H A Dthread-os2.cpp309 RTR3DECL(int) RTTlsSet(RTTLS iTls, void *pvValue) argument
311 if (__libc_TLSSet(iTls, pvValue) != -1)
/vbox/src/VBox/HostDrivers/Support/
H A DSUPLibLdr.cpp189 void *pvValue; local
190 if (!SUPR3GetSymbolR0((void *)g_pvVMMR0, pszSymbol, &pvValue))
192 *pValue = (uintptr_t)pvValue;
/vbox/src/VBox/Runtime/common/ldr/
H A DldrEx.cpp314 void *pvValue; local
315 rc = pMod->pOps->pfnGetSymbol(pMod, pszSymbol, &pvValue);
317 *pValue = (uintptr_t)pvValue;
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_init.c466 static DECLCALLBACK(void) crStateThreadTlsDtor(void *pvValue) argument
468 CRContext *pCtx = (CRContext*)pvValue;
/vbox/src/VBox/HostServices/SharedOpenGL/render/
H A Drenderspu_wgl.c101 int renderspuIatPatcherPatchEntry(void *pvEntry, void *pvValue, void **ppvOldVal) argument
114 *ppfn = pvValue;
/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-ut-string.cpp1613 RTDECL(int) RTAsn1String_InitEx(PRTASN1STRING pThis, uint32_t uTag, void const *pvValue, size_t cbValue, argument
1629 int rc = RTAsn1ContentDup(&pThis->Asn1Core, pvValue, cbValue, pAllocator);
1697 return RTAsn1String_InitEx(pThis, ASN1_TAG_UTF8_STRING, NULL /*pvValue*/, 0 /*cbValue*/, pAllocator);
1767 return RTAsn1String_InitEx(pThis, a_uTag, NULL /*pvValue*/, 0 /*cbValue*/, pAllocator); \
/vbox/src/VBox/Additions/common/crOpenGL/
H A Dload.c502 static DECLCALLBACK(void) stubThreadTlsDtor(void *pvValue) argument
504 ContextInfo *pCtx = (ContextInfo*)pvValue;
/vbox/include/iprt/
H A Dstring.h1872 * passed in the @a pvValue argument.
1878 * @param pvValue The argument value.
1885 const char *pszType, void const *pvValue,
1427 AssertReturn(CodePoint < 0x100, NULL); *psz++ = (unsigned char)CodePoint; return psz; } DECLINLINE(char *) RTLatin1NextCp(const char *psz) { psz++; return (char *)psz; } DECLINLINE(char *) RTLatin1PrevCp(const char *psz) { psz--; return (char *)psz; } typedef DECLCALLBACK(size_t) FNRTSTROUTPUT(void *pvArg, const char *pachChars, size_t cbChars); typedef FNRTSTROUTPUT *PFNRTSTROUTPUT; typedef DECLCALLBACK(size_t) FNSTRFORMAT(void *pvArg, PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, const char **ppszFormat, va_list *pArgs, int cchWidth, int cchPrecision, unsigned fFlags, char chArgSize); typedef FNSTRFORMAT *PFNSTRFORMAT; RTDECL(size_t) RTStrFormatV(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, PFNSTRFORMAT pfnFormat, void *pvArgFormat, const char *pszFormat, va_list InArgs); RTDECL(size_t) RTStrFormat(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, PFNSTRFORMAT pfnFormat, void *pvArgFormat, const char *pszFormat, ...); RTDECL(int) RTStrFormatNumber(char *psz, uint64_t u64Value, unsigned int uiBase, signed int cchWidth, signed int cchPrecision, unsigned int fFlags); RTDECL(ssize_t) RTStrFormatU8(char *pszBuf, size_t cbBuf, uint8_t u8Value, unsigned int uiBase, signed int cchWidth, signed int cchPrecision, uint32_t fFlags); RTDECL(ssize_t) RTStrFormatU16(char *pszBuf, size_t cbBuf, uint16_t u16Value, unsigned int uiBase, signed int cchWidth, signed int cchPrecision, uint32_t fFlags); RTDECL(ssize_t) RTStrFormatU32(char *pszBuf, size_t cbBuf, uint32_t u32Value, unsigned int uiBase, signed int cchWidth, signed int cchPrecision, uint32_t fFlags); RTDECL(ssize_t) RTStrFormatU64(char *pszBuf, size_t cbBuf, uint64_t u64Value, unsigned int uiBase, signed int cchWidth, signed int cchPrecision, uint32_t fFlags); RTDECL(ssize_t) RTStrFormatU128(char *pszBuf, size_t cbBuf, PCRTUINT128U pu128Value, unsigned int uiBase, signed int cchWidth, signed int cchPrecision, uint32_t fFlags); RTDECL(ssize_t) RTStrFormatR80(char *pszBuf, size_t cbBuf, PCRTFLOAT80U pr80Value, signed int cchWidth, signed int cchPrecision, uint32_t fFlags); RTDECL(ssize_t) RTStrFormatR80u2(char *pszBuf, size_t cbBuf, PCRTFLOAT80U2 pr80Value, signed int cchWidth, signed int cchPrecision, uint32_t fFlags); typedef DECLCALLBACK(size_t) FNRTSTRFORMATTYPE(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, const char *pszType, void const *pvValue, int cchWidth, int cchPrecision, unsigned fFlags, void *pvUser); typedef FNRTSTRFORMATTYPE *PFNRTSTRFORMATTYPE; RTDECL(int) RTStrFormatTypeRegister(const char *pszType, PFNRTSTRFORMATTYPE pfnHandler, void *pvUser); RTDECL(int) RTStrFormatTypeDeregister(const char *pszType); RTDECL(int) RTStrFormatTypeSetUser(const char *pszType, void *pvUser); RTDECL(size_t) RTStrPrintfV(char *pszBuffer, size_t cchBuffer, const char *pszFormat, va_list args); RTDECL(size_t) RTStrPrintf(char *pszBuffer, size_t cchBuffer, const char *pszFormat, ...); RTDECL(size_t) RTStrPrintfExV(PFNSTRFORMAT pfnFormat, void *pvArg, char *pszBuffer, size_t cchBuffer, const char *pszFormat, va_list args); RTDECL(size_t) RTStrPrintfEx(PFNSTRFORMAT pfnFormat, void *pvArg, char *pszBuffer, size_t cchBuffer, const char *pszFormat, ...); RTDECL(int) RTStrAPrintfVTag(char **ppszBuffer, const char *pszFormat, va_list args, const char *pszTag); DECLINLINE(int) RTStrAPrintf(char **ppszBuffer, const char *pszFormat, ...) { int cbRet; va_list va; va_start(va, pszFormat); cbRet = RTStrAPrintfVTag(ppszBuffer, pszFormat, va, RTSTR_TAG); va_end(va); return cbRet; } DECLINLINE(int) RTStrAPrintfTag(char **ppszBuffer, const char *pszTag, const char *pszFormat, ...) { int cbRet; va_list va; va_start(va, pszFormat); cbRet = RTStrAPrintfVTag(ppszBuffer, pszFormat, va, pszTag); va_end(va); return cbRet; } RTDECL(char *) RTStrAPrintf2VTag(const char *pszFormat, va_list args, const char *pszTag); DECLINLINE(char *) RTStrAPrintf2(const char *pszFormat, ...) { char *pszRet; va_list va; va_start(va, pszFormat); pszRet = RTStrAPrintf2VTag(pszFormat, va, RTSTR_TAG); va_end(va); return pszRet; } DECLINLINE(char *) RTStrAPrintf2Tag(const char *pszTag, const char *pszFormat, ...) { char *pszRet; va_list va; va_start(va, pszFormat); pszRet = RTStrAPrintf2VTag(pszFormat, va, pszTag); va_end(va); return pszRet; } RTDECL(char *) RTStrStrip(char *psz); RTDECL(char *) RTStrStripL(const char *psz); RTDECL(char *) RTStrStripR(char *psz); RTDECL(int) RTStrCopy(char *pszDst, size_t cbDst, const char *pszSrc); RTDECL(int) RTStrCopyEx(char *pszDst, size_t cbDst, const char *pszSrc, size_t cchSrcMax); RTDECL(int) RTStrCopyP(char **ppszDst, size_t *pcbDst, const char *pszSrc); RTDECL(int) RTStrCopyPEx(char **ppszDst, size_t *pcbDst, const char *pszSrc, size_t cchSrcMax); RTDECL(int) RTStrCat(char *pszDst, size_t cbDst, const char *pszSrc); RTDECL(int) RTStrCatEx(char *pszDst, size_t cbDst, const char *pszSrc, size_t cchSrcMax); RTDECL(int) RTStrCatP(char **ppszDst, size_t *pcbDst, const char *pszSrc); RTDECL(int) RTStrCatPEx(char **ppszDst, size_t *pcbDst, const char *pszSrc, size_t cchSrcMax); RTDECL(int) RTStrCmp(const char *psz1, const char *psz2); RTDECL(int) RTStrNCmp(const char *psz1, const char *psz2, size_t cchMax); RTDECL(int) RTStrICmp(const char *psz1, const char *psz2); RTDECL(int) RTStrNICmp(const char *psz1, const char *psz2, size_t cchMax); RTDECL(char *) RTStrStr(const char *pszHaystack, const char *pszNeedle); RTDECL(char *) RTStrIStr(const char *pszHaystack, const char *pszNeedle); RTDECL(char *) RTStrToLower(char *psz); RTDECL(char *) RTStrToUpper(char *psz); RTDECL(bool) RTStrIsCaseFoldable(const char *psz); RTDECL(bool) RTStrIsUpperCased(const char *psz); RTDECL(bool) RTStrIsLowerCased(const char *psz); RTDECL(size_t) RTStrNLen(const char *pszString, size_t cchMax); RTDECL(int) RTStrNLenEx(const char *pszString, size_t cchMax, size_t *pcch); RT_C_DECLS_END DECLINLINE(char const *) RTStrEnd(char const *pszString, size_t cchMax) { while (cchMax > RTSTR_MEMCHR_MAX) argument
/vbox/src/VBox/VMM/VMMR3/
H A DPDMLdr.cpp1655 void *pvValue = NULL; local
1658 rc = SUPR3GetSymbolR0((void *)(RTR0PTR)pModule->ImageBase, szSymbol, &pvValue);
1666 *pValue = (RTR0PTR)pvValue;
1667 Assert((void *)*pValue == pvValue);
/vbox/src/VBox/ValidationKit/utils/network/
H A DNetPerf.cpp1051 void *pvValue; member in struct:__anon17007
1085 *(bool *)aElements[i].pvValue = u32 ? true : false;
1087 *(uint32_t *)aElements[i].pvValue = u32;
/vbox/src/VBox/Main/src-server/darwin/
H A Diokit.cpp332 * @param pvValue The key value
335 static void darwinDumpDictCallback(const void *pvKey, const void *pvValue, void *pvUser) argument
345 CFTypeID Type = CFGetTypeID(pvValue);
353 CFDictionaryApplyFunction((CFDictionaryRef)pvValue, darwinDumpDictCallback, (void *)((uintptr_t)pvUser + 4));
357 DARWIN_IOKIT_LOG(("bool] = %s\n", CFBooleanGetValue((CFBooleanRef)pvValue) ? "true" : "false"));
378 CFNumberType NumType = CFNumberGetType((CFNumberRef)pvValue);
379 if (CFNumberGetValue((CFNumberRef)pvValue, NumType, &u))
381 switch (CFNumberGetType((CFNumberRef)pvValue))
405 DARWIN_IOKIT_LOG(("boolean] = %RTbool\n", CFBooleanGetValue((CFBooleanRef)pvValue)));
410 if (!CFStringGetCString((CFStringRef)pvValue, pszValu
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/platform/darwin/
H A DDarwinKeyboard.cpp615 static void darwinBruteForcePropertySearchApplier(const void *pvValue, void *pvCacheEntry) argument
617 if (CFGetTypeID(pvValue) == CFDictionaryGetTypeID())
618 darwinBruteForcePropertySearch((CFMutableDictionaryRef)pvValue, (struct KeyboardCacheData *)pvCacheEntry);
/vbox/src/VBox/Runtime/r3/
H A Dsocket.cpp1825 * @param pvValue The value buffer.
1826 * @param cbValue The size of the value pointed to by pvValue.
1828 int rtSocketSetOpt(RTSOCKET hSocket, int iLevel, int iOption, void const *pvValue, int cbValue) argument
1839 if (setsockopt(pThis->hNative, iLevel, iOption, (const char *)pvValue, cbValue) != 0)
/vbox/src/recompiler/
H A DVBoxREMWrapper.cpp2170 void *pvValue; local
2171 rc = RTLdrGetSymbol(g_ModREM2, g_aExports[i].pszName, &pvValue);
2173 *(void **)g_aExports[i].pv = pvValue;

Completed in 2312 milliseconds