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

/vbox/include/VBox/
H A Dvd-ifs.h963 * @param pszDef The default value.
968 const char *pszDef)
974 cb = strlen(pszDef) + 1;
985 memcpy(pszString, pszDef, cb);
965 VDCFGQueryStringAllocDef(PVDINTERFACECONFIG pCfgIf, const char *pszName, char **ppszString, const char *pszDef) argument
/vbox/src/VBox/VMM/VMMR3/
H A DCFGM.cpp784 * @param pszDef The default value.
786 VMMR3DECL(int) CFGMR3QueryStringDef(PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString, const char *pszDef) argument
809 size_t cchDef = strlen(pszDef);
812 memcpy(pszString, pszDef, cchDef);
3077 * NULL if @a pszDef is not NULL, because we need
3084 * @param pszDef The default return value. This can be NULL.
3086 VMMR3DECL(int) CFGMR3QueryStringAllocDef(PCFGMNODE pNode, const char *pszName, char **ppszString, const char *pszDef) argument
3088 Assert(pNode || !pszDef); /* We need pVM if we need to duplicate the string later. */
3092 * cannot handle pszDef being NULL.)
3115 if (!pszDef)
[all...]

Completed in 55 milliseconds