Searched refs:xcs (Results 1 – 9 of 9) sorted by relevance
/external/chromium/third_party/libjingle/source/talk/examples/login/ |
D | login_main.cc | 48 buzz::XmppClientSettings xcs; in main() local 49 xcs.set_user(username.c_str()); in main() 50 xcs.set_host("gmail.com"); in main() 51 xcs.set_use_tls(false); in main() 52 xcs.set_auth_cookie(auth_cookie.c_str()); in main() 53 xcs.set_server(talk_base::SocketAddress("talk.google.com", 5222)); in main() 54 thread.Login(xcs); in main()
|
D | xmppthread.cc | 38 LoginData(const buzz::XmppClientSettings& s) : xcs(s) {} in LoginData() 41 buzz::XmppClientSettings xcs; member 58 void XmppThread::Login(const buzz::XmppClientSettings& xcs) { in Login() argument 59 Post(this, MSG_LOGIN, new LoginData(xcs)); in Login() 73 pump_->DoLogin(data->xcs, new XmppSocket(false), new XmppAuth()); in OnMessage()
|
D | xmpppump.cc | 37 void XmppPump::DoLogin(const buzz::XmppClientSettings & xcs, in DoLogin() argument 43 client_->Connect(xcs, "", socket, auth); in DoLogin()
|
D | xmppthread.h | 47 void Login(const buzz::XmppClientSettings & xcs);
|
D | xmpppump.h | 53 void DoLogin(const buzz::XmppClientSettings & xcs,
|
/external/chromium/third_party/libjingle/source/talk/examples/call/ |
D | call_main.cc | 312 buzz::XmppClientSettings xcs; in main() local 313 xcs.set_user(jid.node()); in main() 314 xcs.set_resource("call"); in main() 315 xcs.set_host(jid.domain()); in main() 316 xcs.set_use_tls(!test_server); in main() 319 xcs.set_use_tls(false); in main() 320 xcs.set_allow_plain(true); in main() 324 xcs.set_allow_plain(true); in main() 326 xcs.set_pass(talk_base::CryptString(pass)); in main() 340 xcs.set_server(talk_base::SocketAddress(host, port)); in main() [all …]
|
/external/libvpx/libvpx/vpx/src/ |
D | vpx_image.c | 56 unsigned int h, w, s, xcs, ycs, bps; in img_alloc_helper() local 115 xcs = 1; in img_alloc_helper() 118 xcs = 0; in img_alloc_helper() 136 align = (1 << xcs) - 1; in img_alloc_helper() 173 img->x_chroma_shift = xcs; in img_alloc_helper() 179 img->stride[VPX_PLANE_U] = img->stride[VPX_PLANE_V] = s >> xcs; in img_alloc_helper()
|
/external/kernel-headers/original/asm-x86/ |
D | ptrace.h | 27 int xcs; member 50 return (regs->xcs & SEGMENT_RPL_MASK) == USER_RPL; in user_mode() 54 return ((regs->xcs & SEGMENT_RPL_MASK) | (regs->eflags & VM_MASK)) >= USER_RPL; in user_mode_vm()
|
D | processor_32.h | 405 regs->xcs = __USER_CS; \
|