Searched refs:pcszFormat (Results 1 - 11 of 11) sorted by relevance
/vbox/src/VBox/GuestHost/DragAndDrop/ |
H A D | DnDMIME.cpp | 26 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 D | VBoxCmp.cpp | 36 * @param pcszFormat Error message. 39 static RTEXITCODE printErr(const char *pcszFormat, ...) argument 44 va_start(va, pcszFormat); 45 vfprintf(stderr, pcszFormat, va);
|
H A D | filesplitter.cpp | 68 * @param pcszFormat Error message. 71 static int printErr(const char *pcszFormat, ...) argument 76 va_start(va, pcszFormat); 77 vfprintf(stderr, pcszFormat, va);
|
/vbox/include/VBox/GuestHost/ |
H A D | DragAndDrop.h | 42 bool DnDMIMEHasFileURLs(const char *pcszFormat, size_t cchFormatMax); 43 bool DnDMIMENeedsDropDir(const char *pcszFormat, size_t cchFormatMax);
|
/vbox/src/VBox/Main/src-client/ |
H A D | GuestDnDSourceImpl.cpp | 240 const char *pcszFormat = aFormat.c_str(); 241 bool fNeedsDropDir = DnDMIMENeedsDropDir(pcszFormat, strlen(pcszFormat)); 243 pcszFormat, uAction, fNeedsDropDir));
|
/vbox/src/VBox/Main/glue/ |
H A D | com.cpp | 411 * @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 D | ovfreader.cpp | 212 const char *pcszFormat; local 215 else if (!pelmDisk->getAttributeValue("format", pcszFormat)) 222 d.strFormat = pcszFormat;
|
H A D | Settings.cpp | 193 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 D | VBoxGuestR3LibDragAndDrop.cpp | 889 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/include/VBox/ |
H A D | VBoxGuestLib.h | 745 VBGLR3DECL(int) VbglR3DnDHGRequestData(uint32_t u32ClientId, const char* pcszFormat);
|
/vbox/src/VBox/Storage/ |
H A D | ISCSI.cpp | 690 DECLINLINE(void) iscsiLogRel(PISCSIIMAGE pImage, const char *pcszFormat, ...) argument 696 va_start(va, pcszFormat); 697 LogRel(("%N\n", pcszFormat, &va));
|
Completed in 1368 milliseconds