Searched defs:pcszValue (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Runtime/common/net/
H A Dnetaddrstr2.cpp128 static int rtNetStrToHexGroup(const char *pcszValue, char **ppszNext, argument
134 rc = RTStrToUInt16Ex(pcszValue, &pszNext, 16, pu16);
146 if (pcszValue[0] == '0' && (pcszValue[1] == 'x' || pcszValue[1] == 'X'))
151 *ppszNext = (/* UNCONST */ char *)pcszValue + 1; /* to 'x' */
156 if (pszNext - pcszValue > 4)
/vbox/src/VBox/Main/src-server/
H A DUSBDeviceFilterImpl.cpp104 const char *pcszValue = aValue.c_str(); local
110 vrc = RTStrToUInt64Ex(pcszValue, &pszNext, 16, &u64);
125 i_describeUSBFilterIdx(aIdx), pcszValue);
133 vrc = USBFilterSetNumExpression(aFilter, aIdx, pcszValue, true /* fMustBePresent */);
139 if ( strchr(pcszValue, '*')
140 || strchr(pcszValue, '?')
143 vrc = USBFilterSetStringPattern(aFilter, aIdx, pcszValue, true /* fMustBePresent */);
145 vrc = USBFilterSetStringExact(aFilter, aIdx, pcszValue, true /* fMustBePresent */);
/vbox/include/VBox/HostServices/
H A DGuestPropertySvc.h301 const char *pcszValue; member in struct:guestProp::_HOSTCALLBACKDATA
/vbox/src/VBox/HostServices/GuestProperties/testcase/
H A DtstGuestPropSvc.cpp382 * @param pcszValue the value to set the property to
391 const char *pcszValue, const char *pcszFlags, bool isHost,
412 RTStrPrintf(szValue, sizeof(szValue), "%s", pcszValue);
442 const char *pcszValue; member in struct:__anon16433
468 s_aSetProperties[i].pcszValue,
850 const char *pcszValue; member in struct:__anon16437
880 s_aSetPropertiesROGuest[i].pcszValue,
887 s_aSetPropertiesROGuest[i].pcszValue, rc);
892 s_aSetPropertiesROGuest[i].pcszValue, rc);
898 s_aSetPropertiesROGuest[i].pcszValue, r
390 doSetProperty(VBOXHGCMSVCFNTABLE *pTable, const char *pcszName, const char *pcszValue, const char *pcszFlags, bool isHost, bool useSetProp) argument
[all...]
/vbox/src/VBox/Installer/linux/install_service/
H A Dgenerate_service_file.cpp209 static enum ENMFORMAT getFormat(const char *pcszName, const char *pcszValue);
210 static bool checkAbsoluteFilePath(const char *pcszName, const char *pcszValue);
211 static bool checkPrintable(const char *pcszName, const char *pcszValue);
212 static bool checkGraphic(const char *pcszName, const char *pcszValue);
405 enum ENMFORMAT getFormat(const char *pcszName, const char *pcszValue) argument
407 if (!strcmp(pcszValue, "shell"))
409 RTStrmPrintf(g_pStdErr, "%s: unknown format %s.\n", pcszName, pcszValue);
414 bool checkAbsoluteFilePath(const char *pcszName, const char *pcszValue) argument
416 if (RTPathFilename(pcszValue) && RTPathStartsWithRoot(pcszValue))
423 checkPrintable(const char *pcszName, const char *pcszValue) argument
439 checkGraphic(const char *pcszName, const char *pcszValue) argument
[all...]
/vbox/src/VBox/HostServices/GuestProperties/
H A Dservice.cpp84 Property(const char *pcszName, const char *pcszValue, argument
86 : mName(pcszName), mValue(pcszValue), mTimestamp(u64Timestamp),
646 const char *pcszValue = NULL; /* ditto */ local
662 || RT_FAILURE(paParms[1].getString(&pcszValue, &cchValue)) /* value */
676 rc = validateValue(pcszValue, cchValue);
701 pProp->mValue = pcszValue;
710 pProp = new Property(pcszName, pcszValue, u64TimeNano, fFlags);
741 LogFlowThisFunc(("%s=%s, rc=%Rrc\n", pcszName, pcszValue, rc));
1225 HostCallbackData.pcszValue = pszValue;
/vbox/src/VBox/Runtime/r3/
H A Dxml.cpp1290 * @param pcszValue The attribute value.
1293 AttributeNode *ElementNode::setAttribute(const char *pcszName, const char *pcszValue) argument
1304 xmlAttrPtr pLibAttr = xmlSetProp(m_pLibNode, (xmlChar *)pcszName, (xmlChar *)pcszValue);
1316 xmlAttr *pLibAttr = xmlNewProp(m_pLibNode, (xmlChar *)pcszName, (xmlChar *)pcszValue);
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl2.cpp360 * @param pcszValue The string value.
364 const char *pcszValue)
368 pcszValue);
362 InsertConfigString(PCFGMNODE pNode, const char *pcszName, const char *pcszValue) argument

Completed in 113 milliseconds