Searched defs:pszPathFormat (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServicePropCache.cpp318 * @param pszPathFormat The path format string. May not be null and has
322 int VBoxServicePropCacheUpdateByPath(PVBOXSERVICEVEPROPCACHE pCache, const char *pszValue, uint32_t fFlags, const char *pszPathFormat, ...) argument
325 AssertPtrReturn(pszPathFormat, VERR_INVALID_POINTER);
336 va_start(va, pszPathFormat);
337 RTStrAPrintfV(&pszPath, pszPathFormat, va);
/vbox/src/VBox/VMM/VMMR3/
H A DCFGM.cpp331 * @param pszPathFormat Path to the child node or pNode.
333 * @param ... Arguments to pszPathFormat.
335 VMMR3DECL(PCFGMNODE) CFGMR3GetChildF(PCFGMNODE pNode, const char *pszPathFormat, ...) argument
338 va_start(Args, pszPathFormat);
339 PCFGMNODE pRet = CFGMR3GetChildFV(pNode, pszPathFormat, Args);
351 * @param pszPathFormat Path to the child node or pNode.
353 * @param Args Arguments to pszPathFormat.
355 VMMR3DECL(PCFGMNODE) CFGMR3GetChildFV(PCFGMNODE pNode, const char *pszPathFormat, va_list Args) argument
358 RTStrAPrintfV(&pszPath, pszPathFormat, Args);

Completed in 50 milliseconds