Changeset 81173 in vbox
- Timestamp:
- Oct 9, 2019 8:59:35 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
r81060 r81173 68 68 { 69 69 int rc; 70 Log RelFlowFunc(("u32Format=%d, pv=%p, cb=%d\n", u32Format, pv, cb));70 LogFlowFunc(("u32Format=%d, pv=%p, cb=%d\n", u32Format, pv, cb)); 71 71 rc = VbglR3ClipboardWriteData(g_ctx.client, u32Format, pv, cb); 72 Log RelFlowFuncLeaveRC(rc);72 LogFlowFuncLeaveRC(rc); 73 73 return rc; 74 74 } … … 94 94 95 95 *ppv = 0; 96 Log RelFlowFunc(("u32Format=%u\n", u32Format));96 LogFlowFunc(("u32Format=%u\n", u32Format)); 97 97 if (RT_UNLIKELY(!pv)) 98 98 rc = VERR_NO_MEMORY; … … 127 127 RTMemFree(pv); 128 128 } 129 Log RelFlowFuncLeaveRC(rc);129 LogFlowFuncLeaveRC(rc); 130 130 if (RT_SUCCESS(rc)) 131 Log RelFlow((" *pcb=%d\n", *pcb));131 LogFlow((" *pcb=%d\n", *pcb)); 132 132 return rc; 133 133 } … … 151 151 { 152 152 RT_NOREF(pCtx); 153 Log RelFlowFunc(("u32Formats=%d\n", u32Formats));153 LogFlowFunc(("u32Formats=%d\n", u32Formats)); 154 154 int rc = VbglR3ClipboardFormatsReport(g_ctx.client, u32Formats); 155 Log RelFlowFuncLeaveRC(rc);155 LogFlowFuncLeaveRC(rc); 156 156 } 157 157 … … 212 212 ClipDestructX11(g_ctx.pBackend); 213 213 214 Log RelFlowFuncLeaveRC(rc);214 LogFlowFuncLeaveRC(rc); 215 215 return rc; 216 216 } … … 222 222 { 223 223 int rc; 224 Log RelFlowFunc(("Starting guest clipboard service\n"));224 LogFlowFunc(("Starting guest clipboard service\n")); 225 225 bool fExiting = false; 226 226 … … 240 240 * future requests from guest applications. 241 241 */ 242 Log RelFlowFunc(("VBOX_SHCL_HOST_MSG_FORMATS_WRITE fFormats=%x\n", fFormats));242 LogFlowFunc(("VBOX_SHCL_HOST_MSG_FORMATS_WRITE fFormats=%x\n", fFormats)); 243 243 ClipAnnounceFormatToX11(g_ctx.pBackend, fFormats); 244 244 break; … … 248 248 { 249 249 /* The host needs data in the specified format. */ 250 Log RelFlowFunc(("VBOX_SHCL_HOST_MSG_READ_DATA fFormats=%x\n", fFormats));250 LogFlowFunc(("VBOX_SHCL_HOST_MSG_READ_DATA fFormats=%x\n", fFormats)); 251 251 CLIPREADCBREQ *pReq; 252 252 pReq = (CLIPREADCBREQ *)RTMemAllocZ(sizeof(*pReq)); … … 268 268 { 269 269 /* The host is terminating. */ 270 Log RelFlowFunc(("VBOX_SHCL_HOST_MSG_QUIT\n"));270 LogFlowFunc(("VBOX_SHCL_HOST_MSG_QUIT\n")); 271 271 if (RT_SUCCESS(ClipStopX11(g_ctx.pBackend))) 272 272 ClipDestructX11(g_ctx.pBackend); … … 283 283 } 284 284 285 Log RelFlow(("processed host event rc = %d\n", rc));286 } 287 Log RelFlowFuncLeaveRC(rc);285 LogFlow(("processed host event rc = %d\n", rc)); 286 } 287 LogFlowFuncLeaveRC(rc); 288 288 return rc; 289 289 }
Note:
See TracChangeset
for help on using the changeset viewer.