Lines Matching refs:imid

353 void Connection::push_error_packet(C16 imid, C16 icid, C16 er, const char *str)  in push_error_packet()  argument
357 t->pushC16(imid); in push_error_packet()
360 if (imid) in push_error_packet()
500 C16 imid; in xim_open() local
502 imid = unused_im_id(); in xim_open()
503 mCreatedIm.push_back(imid); // had to be deleted by the creator Connection in xim_open()
504 im = create_im(this, imid); in xim_open()
507 t->pushC16(imid); in xim_open()
516 t->pushC16(imid); in xim_open()
533 C16 imid; in xim_close() local
534 imid = p->getC16(); in xim_close()
537 t->pushC16(imid); in xim_close()
540 close_im(imid); in xim_close()
543 if (*i == imid) { in xim_close()
552 C16 imid; in xim_query_extension() local
553 imid = p->getC16(); in xim_query_extension()
557 t->pushC16(imid); in xim_query_extension()
569 C16 imid, idx; in xim_encoding_negotiation() local
573 imid = p->getC16(); // m_imid in xim_encoding_negotiation()
575 im = get_im_by_id(imid); in xim_encoding_negotiation()
595 t->pushC16(imid); in xim_encoding_negotiation()
605 C16 imid; in xim_get_im_values() local
608 imid = p->getC16(); // input-method id in xim_get_im_values()
620 struct input_style *is = get_im_by_id(imid)->getInputStyles(); in xim_get_im_values()
626 t->pushC16(imid); in xim_get_im_values()
643 C16 imid; in xim_set_ic_values() local
644 imid = p->getC16(); in xim_set_ic_values()
647 im = get_im_by_id(imid); in xim_set_ic_values()
654 C16 imid; in xim_get_ic_values() local
655 imid = p->getC16(); in xim_get_ic_values()
658 im = get_im_by_id(imid); in xim_get_ic_values()
665 C16 imid; in xim_create_ic() local
666 imid = p->getC16(); in xim_create_ic()
668 im = get_im_by_id(imid); in xim_create_ic()
674 C16 imid; in xim_destroy_ic() local
677 imid = p->getC16(); in xim_destroy_ic()
679 im = get_im_by_id(imid); in xim_destroy_ic()
685 C16 imid; in xim_set_ic_focus() local
687 imid = p->getC16(); in xim_set_ic_focus()
688 im = get_im_by_id(imid); in xim_set_ic_focus()
694 C16 imid; in xim_unset_ic_focus() local
696 imid = p->getC16(); in xim_unset_ic_focus()
697 im = get_im_by_id(imid); in xim_unset_ic_focus()
703 C16 imid, icid; in xim_forward_event() local
706 imid = p->getC16(); in xim_forward_event()
709 im = get_im_by_id(imid); in xim_forward_event()
713 push_error_packet(imid, icid, ERR_BadProtocol, "Bad Protocol"); in xim_forward_event()
745 C16 imid, icid, mask, ecode; in xim_error() local
749 imid = p->getC16(); in xim_error()
766 fprintf(stderr, " imid = %d\n", imid); in xim_error()
777 C16 imid, icid; in get_ic() local
780 imid = p->getC16(); in get_ic()
783 im = get_im_by_id(imid); in get_ic()