Searched defs:xvp (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp1.cpp61 void test_spec(X0<void*> xvp, void *vp) { argument
62 xvp.f1(vp);
91 void test_func_template(X0<void *> xvp, void *vp, const void *cvp) { argument
92 xvp.ft1(vp, cvp);
H A Dp2.cpp97 void test_spec(N0::X0<void*> xvp, void *vp) { argument
98 xvp.f1(vp);
235 void test_func_template(N0::X0<void *> xvp, void *vp, const void *cvp, argument
237 xvp.ft1(vp, cvp);
238 xvp.ft1(vp, i);
239 xvp.ft1(vp, u);
H A Dp2-0x.cpp136 void test_spec(N0::X0<void*> xvp, void *vp) { argument
137 xvp.f1(vp);
274 void test_func_template(N0::X0<void *> xvp, void *vp, const void *cvp, argument
276 xvp.ft1(vp, cvp);
277 xvp.ft1(vp, i);
278 xvp.ft1(vp, u);
/external/clang/test/SemaCXX/
H A Doverload-member-call.cpp39 void test(X x, const X xc, X* xp, const X* xcp, volatile X xv, volatile X* xvp) { argument
45 xvp->f(0); // expected-error{{no matching member function for call to 'f'}}
/external/libvncserver/libvncclient/
H A Drfbproto.c1479 /* xvp */
1647 * send xvp client message
1648 * A client supporting the xvp extension sends this to request that the server initiate
1662 rfbXvpMsg xvp; local
1665 xvp.type = rfbXvp;
1666 xvp.pad = 0;
1667 xvp.version = version;
1668 xvp.code = code;
1670 if (!WriteToRFBServer(client, (char *)&xvp, sz_rfbXvpMsg))
2289 client->HandleXvpMsg(client, msg.xvp
[all...]
/external/libvncserver/libvncserver/
H A Drfbserver.c1114 * Send an xvp server message
1120 rfbXvpMsg xvp; local
1122 xvp.type = rfbXvp;
1123 xvp.pad = 0;
1124 xvp.version = version;
1125 xvp.code = code;
1128 if (rfbWriteExact(cl, (char *)&xvp, sz_rfbXvpMsg) < 0) {
2655 if(msg.xvp.version != 1) {
2656 rfbSendXvp(cl, msg.xvp.version, rfbXvp_Fail);
2660 if(cl->screen->xvpHook && !cl->screen->xvpHook(cl, msg.xvp
[all...]
/external/libvncserver/rfb/
H A Drfbproto.h1119 * A server which supports the xvp extension declares this by sending a message
1120 * with an Xvp_INIT xvp-message-code when it receives a request from the client
1121 * to use the xvp Pseudo-encoding. The server must specify in this message the
1122 * highest xvp-extension-version it supports: the client may assume that the
1126 * A server which subsequently receives an xvp Client Message requesting an
1128 * sending a message with an Xvp_FAIL xvp-message-code, and the same
1129 * xvp-extension-version as included in the client's operation request.
1131 * A client supporting the xvp extension sends this to request that the server
1140 uint8_t version; /* xvp extension version */
1141 uint8_t code; /* xvp messag
1208 rfbXvpMsg xvp; member in union:__anon11037
1464 rfbXvpMsg xvp; member in union:__anon11047
[all...]

Completed in 1677 milliseconds