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

/vbox/src/VBox/Runtime/VBox/
H A DRTAssertShouldPanic-vbox.cpp83 const char *pszTerm = RTEnvGet("VBOX_ASSERT_TERM"); local
84 if ( !pszTerm
85 || !RTPathExists(pszTerm))
87 pszTerm = "/usr/bin/gnome-terminal";
88 if (!RTPathExists(pszTerm))
90 pszTerm = "/usr/X11R6/bin/xterm";
91 if (!RTPathExists(pszTerm))
93 pszTerm ="/usr/bin/xterm";
94 if (!RTPathExists(pszTerm))
121 pszTerm,
[all...]
/vbox/src/VBox/NetworkServices/NetLib/
H A DComHostUtils.cpp90 char *pszTerm; local
97 pszTerm = RTStrStr(pszLo2Off, "=");
99 if ( pszTerm
100 && (pszTerm - pszLo2Off) <= INET_ADDRSTRLEN)
102 memcpy(szAddr, pszLo2Off, (pszTerm - pszLo2Off));
106 u32Off = RTStrToUInt32(pszTerm + 1);

Completed in 46 milliseconds