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

/vbox/src/VBox/GuestHost/DragAndDrop/
H A DDnDMIME.cpp26 bool DnDMIMEHasFileURLs(const char *pcszFormat, size_t cchFormatMax) argument
29 return ( RTStrNICmp(pcszFormat, "text/uri-list", cchFormatMax) == 0
30 || RTStrNICmp(pcszFormat, "x-special/gnome-icon-list", cchFormatMax) == 0);
33 bool DnDMIMENeedsDropDir(const char *pcszFormat, size_t cchFormatMax) argument
36 if (!RTStrNICmp(pcszFormat, "text/uri-list", cchFormatMax)) /** @todo Add "x-special/gnome-icon-list"? */
/vbox/src/bldprogs/
H A DVBoxCmp.cpp36 * @param pcszFormat Error message.
39 static RTEXITCODE printErr(const char *pcszFormat, ...) argument
44 va_start(va, pcszFormat);
45 vfprintf(stderr, pcszFormat, va);
H A Dfilesplitter.cpp68 * @param pcszFormat Error message.
71 static int printErr(const char *pcszFormat, ...) argument
76 va_start(va, pcszFormat);
77 vfprintf(stderr, pcszFormat, va);
/vbox/src/VBox/Main/glue/
H A Dcom.cpp411 * @param pcszFormat
413 void LogRef(const char *pcszFormat, ...) argument
417 va_start(args, pcszFormat);
418 RTStrAPrintfV(&pszNewMsg, pcszFormat, args);
/vbox/src/VBox/Main/xml/
H A Dovfreader.cpp212 const char *pcszFormat; local
215 else if (!pelmDisk->getAttributeValue("format", pcszFormat))
222 d.strFormat = pcszFormat;
H A DSettings.cpp193 const char *pcszFormat, ...)
197 va_start(args, pcszFormat);
198 Utf8Str strWhat(pcszFormat, args);
191 ConfigFileError(const ConfigFileBase *file, const xml::Node *pNode, const char *pcszFormat, ...) argument
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibDragAndDrop.cpp889 VBGLR3DECL(int) VbglR3DnDHGRequestData(uint32_t u32ClientId, const char* pcszFormat) argument
891 AssertPtrReturn(pcszFormat, VERR_INVALID_PARAMETER);
900 Msg.pFormat.SetPtr((void*)pcszFormat, (uint32_t)strlen(pcszFormat) + 1);
/vbox/src/VBox/Storage/
H A DISCSI.cpp690 DECLINLINE(void) iscsiLogRel(PISCSIIMAGE pImage, const char *pcszFormat, ...) argument
696 va_start(va, pcszFormat);
697 LogRel(("%N\n", pcszFormat, &va));

Completed in 90 milliseconds