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

/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServicePropCache.cpp97 int vboxServicePropCacheWritePropF(uint32_t u32ClientId, const char *pszName, uint32_t fFlags, const char *pszValueFormat, ...) argument
102 if (pszValueFormat != NULL)
105 va_start(va, pszValueFormat);
108 if (RTStrAPrintfV(&pszValue, pszValueFormat, va) >= 0)
212 * @param pszValueFormat The property format string. If this is NULL then
216 int VBoxServicePropCacheUpdate(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, const char *pszValueFormat, ...) argument
227 if (pszValueFormat)
230 va_start(va, pszValueFormat);
231 RTStrAPrintfV(&pszValue, pszValueFormat, va);
H A DVBoxServiceUtils.cpp216 * @param pszValueFormat The property format string. If this is NULL then
220 int VBoxServiceWritePropF(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, ...) argument
224 if (pszValueFormat != NULL)
227 va_start(va, pszValueFormat);
228 VBoxServiceVerbose(3, "Writing guest property \"%s\" = \"%N\"\n", pszName, pszValueFormat, &va);
231 va_start(va, pszValueFormat);
232 rc = VbglR3GuestPropWriteValueV(u32ClientId, pszName, pszValueFormat, va);
H A DVBoxServiceVMInfo.cpp377 * @param pszValueFormat Guest property value to set. Pass NULL for deleting
381 const char *pszKey, const char *pszValueFormat, ...)
387 /* pszValueFormat is optional. */
405 && pszValueFormat)
408 va_start(va, pszValueFormat);
409 if (RTStrAPrintfV(&pszValue, pszValueFormat, va) < 0)
380 vboxServiceUserUpdateF(PVBOXSERVICEVEPROPCACHE pCache, const char *pszUser, const char *pszDomain, const char *pszKey, const char *pszValueFormat, ...) argument
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibGuestProp.cpp269 * @param pszValueFormat The value format. This must be valid UTF-8 when fully formatted.
272 VBGLR3DECL(int) VbglR3GuestPropWriteValueV(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, va_list va) argument
279 if (RTStrAPrintfV(&pszValue, pszValueFormat, va) >= 0)
295 * @param pszValueFormat The value format. This must be valid UTF-8 when fully formatted.
298 VBGLR3DECL(int) VbglR3GuestPropWriteValueF(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, ...) argument
301 va_start(va, pszValueFormat);
302 int rc = VbglR3GuestPropWriteValueV(u32ClientId, pszName, pszValueFormat, va);

Completed in 88 milliseconds