Searched defs:szValue (Results 1 - 14 of 14) sorted by relevance

/vbox/src/VBox/Devices/VMMDev/
H A DVMMDevTesting.cpp170 char szFormat[128], szValue[128]; local
172 rc2 = DBGFR3RegPrintf(pUVM, idCpu, szValue, sizeof(szValue), szFormat);
177 szValue, pszRegNm, pszWarn));
/vbox/src/VBox/Additions/common/VBoxControl/testcase/
H A DtstVBoxControl.cpp87 static char szValue[] = "Value"; local
90 *ppszValue = szValue;
126 static char szValue[] = "Value"; local
132 *ppszValue = szValue;
186 static char szValue[] = "Value"; local
191 *ppszValue = szValue;
/vbox/src/VBox/Main/src-client/win/
H A Ddllmain.cpp338 char szValue[128]; local
339 DWORD cbValue = sizeof(szValue) - 1;
340 rc = RegQueryValueExA(hkeyVer, NULL, NULL, NULL, (PBYTE)&szValue[0], &cbValue);
343 szValue[cbValue] = '\0';
344 if (!strcmp(szValue, "VirtualBox Type Library"))
/vbox/src/VBox/Runtime/common/checksum/
H A Dmanifest3.cpp182 char szValue[RTSHA512_DIGEST_LEN + 8]; local
188 RTStrPrintf(szValue, sizeof(szValue), "%RU64", (uint64_t)pHashes->cbStream);
189 rc2 = RTManifestEntrySetAttr(hManifest, pszEntry, "SIZE", szValue, RTMANIFEST_ATTR_SIZE);
196 rc2 = RTMd5ToString(pHashes->abMd5Digest, szValue, sizeof(szValue));
198 rc2 = RTManifestEntrySetAttr(hManifest, pszEntry, "MD5", szValue, RTMANIFEST_ATTR_MD5);
205 rc2 = RTSha1ToString(pHashes->abSha1Digest, szValue, sizeof(szValue));
207 rc2 = RTManifestEntrySetAttr(hManifest, pszEntry, "SHA1", szValue, RTMANIFEST_ATTR_SHA
[all...]
/vbox/src/VBox/ValidationKit/testboxscript/
H A DTestBoxHelper.cpp151 char szValue[16384]; local
152 rc = RTEnvGetByIndexEx(hEnv, iVar, szVar, sizeof(szVar), szValue, sizeof(szValue));
164 strcpy(szValue, "<volatile>");
167 RTPrintf("%25s=%s\n", szVar, szValue);
169 RTPrintf("%25s=%s [VERR_BUFFER_OVERFLOW]\n", szVar, szValue);
/vbox/src/VBox/HostServices/GuestProperties/testcase/
H A DtstGuestPropSvc.cpp409 char szValue[MAX_VALUE_LEN]; local
412 RTStrPrintf(szValue, sizeof(szValue), "%s", pcszValue);
415 aParms[1].setString(szValue);
/vbox/src/VBox/Devices/Network/
H A DDrvIntNet.cpp1283 char szValue[64]; local
1284 int rc = CFGMR3QueryString(pDrvIns->pCfg, pszName, szValue, sizeof(szValue));
1296 char *pszSep = strpbrk(szValue, "+,;");
1305 N_("Configuration error: The value of \"%s\" is unknown: \"%s\""), pszName, szValue);
1308 RTStrStripR(szValue);
1316 if (!strcmp(paFlags[i].pszChoice, szValue))
1322 if (!strcmp(szValue, "none"))
1325 if (!strcmp(szValue, "fixed"))
1332 N_("Configuration error: The value of \"%s\" is unknown: \"%s\""), pszName, szValue);
[all...]
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxInternalManage.cpp423 char szValue[64]; local
424 RTStrPrintf(szValue, sizeof(szValue), "%#RX64", u64Value);
425 return SetString(pMachine, pszKeyBase, pszKey, pszAttribute, szValue);
441 char szValue[64]; local
442 RTStrPrintf(szValue, sizeof(szValue), "%RI64", i64Value);
443 return SetString(pMachine, pszKeyBase, pszKey, pszAttribute, szValue);
/vbox/src/VBox/Additions/common/VBoxControl/
H A DVBoxControl.cpp652 char szValue[128]; local
653 DWORD len = sizeof(szValue);
656 (LPBYTE)szValue, &len);
662 if (_strnicmp(szValue, sszDeviceDescription, sizeof(sszDeviceDescription) - sizeof(char)) == 0)
/vbox/src/VBox/Runtime/r3/
H A Dxml.cpp1352 char szValue[12]; // negative sign + 10 digits + \0 local
1353 RTStrPrintf(szValue, sizeof(szValue), "%RI32", i);
1354 AttributeNode *p = setAttribute(pcszName, szValue);
1371 char szValue[11]; // 10 digits + \0 local
1372 RTStrPrintf(szValue, sizeof(szValue), "%RU32", u);
1373 AttributeNode *p = setAttribute(pcszName, szValue);
1390 char szValue[21]; // negative sign + 19 digits + \0 local
1391 RTStrPrintf(szValue, sizeo
1409 char szValue[21]; // 20 digits + \\0 local
1428 char szValue[11]; // "0x" + 8 digits + \\0 local
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DSSM.cpp1031 char szValue[1024]; local
1034 rc = SSMR3GetStrZ(pSSM, szValue, sizeof(szValue));
1036 if (!szVar[0] && !szValue[0])
1040 LogRel(("SSM: %s: %s\n", szVar, szValue));
1048 bool fIsHostMsc32 = !strcmp(szValue, "win.x86");
1055 size_t cchValue = strlen(szValue);
1058 memcpy(pSSM->u.Read.szHostOSAndArch, szValue, cchCopy);
H A DCPUMR3CpuId.cpp3412 char szValue[32]; local
3413 rc = CFGMR3QueryString(pIsaExts, pszValueName, szValue, sizeof(szValue));
3416 RTStrToLower(szValue);
3417 size_t cchValue = strlen(szValue);
3418 #define EQ(a_str) (cchValue == sizeof(a_str) - 1U && memcmp(szValue, a_str, sizeof(a_str) - 1))
/vbox/src/VBox/Debugger/
H A DDBGCEmulateCodeView.cpp1373 char szValue[160]; local
1374 rc = DBGFR3RegFormatValue(szValue, sizeof(szValue), &Value, enmType, true /*fSpecial*/);
1376 rc = DBGCCmdHlpPrintf(pCmdHlp, "%s%s=%s\n", pszActualPrefix, pszReg, szValue);
/vbox/src/bldprogs/
H A DVBoxCPP.cpp135 char szValue[1]; member in struct:VBCPPMACRO
2049 || (pMacro->cchValue == 1 && pMacro->szValue[0] == '#'))
2056 const char *pszSrc = pMacro->szValue;
2237 rcExit = vbcppMacroExpandReplace(pThis, pExp, offMacro, pMacro->Core.cchString, pMacro->szValue, pMacro->cchValue);
2684 size_t cbDef = RT_OFFSETOF(VBCPPMACRO, szValue[cchValue + 1 + cchDefine + 1 + cchArgNames])
2691 char *pszDst = &pMacro->szValue[cchValue + 1];
2704 memcpy(pMacro->szValue, pszValue, cchValue);
2705 pMacro->szValue[cchValue] = '\0';
2802 PVBCPPMACRO pMacro = (PVBCPPMACRO)RTMemAlloc(RT_OFFSETOF(VBCPPMACRO, szValue[cchValue + 1 + cchDefine + 1]));
2806 pMacro->Core.pszString = &pMacro->szValue[cchValu
[all...]

Completed in 125 milliseconds