| /xsrc/external/mit/libX11/dist/src/xlibi18n/ |
| H A D | lcPubWrap.c | 39 XLCdPublicMethodsPart *methods = XLC_PUBLIC_METHODS(lcd); local in function:_XGetLCValues 52 ret = (*methods->get_values)(lcd, args, num_args); 63 XLCdPublicMethods methods = (XLCdPublicMethods) lcd->methods; local in function:_XlcDestroyLC 65 (*methods->pub.destroy)(lcd); 71 XLCdMethods methods) 73 XLCdPublicMethods pub_methods = (XLCdPublicMethods) methods; 76 lcd = (*pub_methods->pub.create)(name, methods); 86 if (lcd->methods == NULL) 87 lcd->methods 69 _XlcCreateLC(const char * name,XLCdMethods methods) argument [all...] |
| H A D | XlcSL.c | 79 lcd->methods->open_im = _XDefaultOpenIM; 80 lcd->methods->register_callback = NULL; 81 lcd->methods->unregister_callback = NULL; 92 lcd->methods->open_om = _XDefaultOpenOM;
|
| H A D | lcPublic.c | 40 static XLCd create (const char *name, XLCdMethods methods); 78 XLCdMethods methods) 94 memcpy(new,methods,sizeof(XLCdPublicMethodsRec)); 95 lcd->methods = (XLCdMethods) new; 144 XLCdMethods methods = lcd->methods; local in function:initialize_core 147 if (methods->close == NULL) 148 methods->close = core->close; 150 if (methods->map_modifiers == NULL) 151 methods 76 create(const char * name,XLCdMethods methods) argument 201 XLCdPublicMethodsPart *methods = XLC_PUBLIC_METHODS(lcd); local in function:initialize [all...] |
| H A D | ICWrap.c | 189 if (im && im->methods) 190 ret = (*im->methods->set_values) (im, args); 217 if (im && im->methods) 218 ret = (*im->methods->get_values) (im, args); 250 if (im && im->methods) 251 ic = (XIC) (*im->methods->create_ic) (im, args); 269 (*ic->methods->destroy) (ic); 306 ret = (*ic->methods->get_values) (ic, args); 336 ret = (*ic->methods->set_values) (ic, args); 349 (*ic->methods [all...] |
| H A D | mbWrap.c | 84 esc = (*fs->methods->mb_draw_string) (dpy, d, fs, gc, x, y, 87 esc = fs->methods->mb_escapement (fs, p->chars, p->nchars); 103 (void)(*font_set->methods->mb_draw_string) (dpy, d, font_set, gc, x, y, 119 (*font_set->methods->mb_draw_image_string) (dpy, d, font_set, gc, x, y, 129 return (*font_set->methods->mb_escapement) (font_set, text, text_len); 140 return (*font_set->methods->mb_extents) (font_set, text, text_len, 157 return (*font_set->methods->mb_extents_per_char)
|
| H A D | utf8Wrap.c | 106 esc = (*fs->methods->utf8_draw_string) (dpy, d, fs, gc, x, y, 109 esc = fs->methods->utf8_escapement (fs, p->chars, p->nchars); 125 (void)(*font_set->methods->utf8_draw_string) (dpy, d, font_set, gc, x, y, 141 (*font_set->methods->utf8_draw_image_string) (dpy, d, font_set, gc, x, y, 151 return (*font_set->methods->utf8_escapement) (font_set, text, text_len); 162 return (*font_set->methods->utf8_extents) (font_set, text, text_len, 179 return (*font_set->methods->utf8_extents_per_char)
|
| H A D | wcWrap.c | 85 esc = (*fs->methods->wc_draw_string) (dpy, d, fs, gc, x, y, 88 esc = fs->methods->wc_escapement (fs, p->chars, p->nchars); 104 (void)(*font_set->methods->wc_draw_string) (dpy, d, font_set, gc, x, y, 119 (*font_set->methods->wc_draw_image_string) (dpy, d, font_set, gc, x, y, 129 return (*font_set->methods->wc_escapement) (font_set, text, text_len); 140 return (*font_set->methods->wc_extents) (font_set, text, text_len, 157 return (*font_set->methods->wc_extents_per_char)
|
| H A D | lcConv.c | 55 (*conv->methods->close)(conv); 160 if (from_conv->methods->reset) 161 (*from_conv->methods->reset)(from_conv); 163 if (to_conv->methods->reset) 164 (*to_conv->methods->reset)(to_conv); 174 ret = (*from_conv->methods->convert)(from_conv, from, from_left, &cs, 188 ret = (*to_conv->methods->convert)(to_conv, &cs, &cs_left, to, to_left, 230 if (conv->from_conv && conv->from_conv->methods->reset) 231 (*conv->from_conv->methods->reset)(conv->from_conv); 232 if (conv->to_conv && conv->to_conv->methods [all...] |
| H A D | IMWrap.c | 121 return (*lcd->methods->open_im) (lcd, display, rdb, res_name, res_class); 134 s = (im->methods->close) (im); 177 return( (*lcd->methods->register_callback)( lcd, display, rdb, res_name, 198 if( lcd->methods->unregister_callback == NULL ) 200 return( (*lcd->methods->unregister_callback)( lcd, display, rdb, res_name,
|
| H A D | lcWrap.c | 88 mapped_mods = (*lcd->methods->map_modifiers) (lcd, user_mods, modifiers); 300 (*lcd->methods->close)(lcd); 345 return (*lcd->methods->init_parse_info)(lcd, state); 360 return (*lcd->methods->mb_text_prop_to_list)(lcd, dpy, text_prop, list_ret, 376 return (*lcd->methods->wc_text_prop_to_list)(lcd, dpy, text_prop, list_ret, 392 return (*lcd->methods->utf8_text_prop_to_list)(lcd, dpy, text_prop, 409 return (*lcd->methods->mb_text_list_to_prop)(lcd, dpy, list, count, style, 426 return (*lcd->methods->wc_text_list_to_prop)(lcd, dpy, list, count, style, 443 return (*lcd->methods->utf8_text_list_to_prop)(lcd, dpy, list, count, 456 (*lcd->methods [all...] |
| H A D | XlcPubI.h | 33 #define XLC_PUBLIC_METHODS(lcd) (&(((XLCdPublicMethods) lcd->methods)->pub)) 36 * XLCd public methods 43 XLCdMethods methods 109 XLCdMethods methods
|
| /xsrc/external/mit/libpciaccess/dist/src/ |
| H A D | common_io.c | 72 if (!pci_sys->methods->open_device_io) 90 if (!pci_sys->methods->open_device_io(ret, dev, bar, base, size)) { 113 if (!pci_sys->methods->open_legacy_io) 120 if (!pci_sys->methods->open_legacy_io(ret, dev, base, size)) { 134 if (dev && handle && pci_sys->methods->close_io) 135 pci_sys->methods->close_io(dev, handle); 154 return pci_sys->methods->read32(handle, reg); 171 return pci_sys->methods->read16(handle, reg); 187 return pci_sys->methods->read8(handle, reg); 201 pci_sys->methods [all...] |
| H A D | common_init.c | 117 if ( pci_sys->methods->destroy_device != NULL ) { 118 (*pci_sys->methods->destroy_device)( & pci_sys->devices[i].base ); 127 if ( pci_sys->methods->destroy != NULL ) { 128 (*pci_sys->methods->destroy)();
|
| H A D | common_interface.c | 129 return (pci_sys->methods->read_rom)( dev, buffer ); 142 if (!pci_sys->methods->boot_vga) 144 return pci_sys->methods->boot_vga( dev ); 157 if (!pci_sys->methods->has_kernel_driver) 159 return pci_sys->methods->has_kernel_driver( dev ); 183 return (pci_sys->methods->probe)( dev ); 333 err = (*pci_sys->methods->map_range)(dev, 454 err = (*pci_sys->methods->unmap_range)(dev, &devp->mappings[i]); 507 return pci_sys->methods->read( dev, data, offset, size, 594 return pci_sys->methods [all...] |
| /xsrc/external/mit/libX11/dist/src/ |
| H A D | OMWrap.c | 41 if (lcd->methods->open_om) 42 return (*lcd->methods->open_om)(lcd, dpy, rdb, res_name, res_class); 57 (*oc->methods->destroy)(oc); 64 return (*om->methods->close)(om); 86 ret = (*om->methods->set_values)(om, args, num_args); 112 ret = (*om->methods->get_values)(om, args, num_args);
|
| H A D | OCWrap.c | 51 oc = (*om->methods->create_oc)(om, args, num_args); 81 (*oc->methods->destroy)(oc); 109 ret = (*oc->methods->set_values)(oc, args, num_args); 135 ret = (*oc->methods->get_values)(oc, args, num_args);
|
| H A D | imConv.c | 184 if ((count = im->methods->ctstombs(ic->core.im, 253 if ((count = im->methods->ctstowcs(ic->core.im, 329 if ((count = im->methods->ctstoutf8(ic->core.im,
|
| /xsrc/external/mit/libX11/dist/modules/im/ximcp/ |
| H A D | imInt.c | 115 (void)im->methods->close((XIM)im); 144 (void)im->methods->close((XIM)im); 256 lcd->methods->open_im = _XimOpenIM; 257 lcd->methods->register_callback = _XimRegisterIMInstantiateCallback; 258 lcd->methods->unregister_callback = _XimUnRegisterIMInstantiateCallback;
|
| H A D | imInsClbk.c | 115 xim = (*icb->lcd->methods->open_im)( icb->lcd, display, 120 xim->methods->close( (XIM)xim ); 201 xim = (*lcd->methods->open_im)( lcd, display, rdb, res_name, res_class ); 214 xim->methods->close( (XIM)xim );
|
| /xsrc/external/mit/xf86-video-nouveau/dist/src/ |
| H A D | nouveau_copy.c | 44 } methods[] = { local in function:nouveau_copy_init 53 }, *method = methods;
|
| /xsrc/external/mit/MesaLib/dist/include/android_stub/hardware/ |
| H A D | fb.h | 40 * Common methods of the framebuffer device. This *must* be the first member of 162 return module->methods->open(module,
|
| H A D | hardware.h | 141 /** Modules methods */ 142 struct hw_module_methods_t* methods; member in struct:hw_module_t 165 * followed by module specific public methods and attributes.
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/ |
| H A D | si_test_dma_perf.c | 284 /* Analyze results and find the best methods. */ 316 /* The list of best chosen methods. */ 317 struct si_result *methods[32]; local in function:si_test_dma_perf 372 /* Assume some measurement error. Earlier methods occupy fewer 384 struct si_result *prev = methods[prev_index]; 391 * If there is no best, it means all methods were too slow 410 assert(num_methods < ARRAY_SIZE(methods)); 411 methods[num_methods] = best; 417 struct si_result *best = methods[i];
|
| /xsrc/external/mit/MesaLib/dist/docs/ |
| H A D | opengles.rst | 23 Both methods will install libGLESv1_CM, libGLESv2, libEGL, and one or
|
| /xsrc/external/mit/xorgproto/dist/specs/SIAddresses/ |
| H A D | localuser.md | 4 process, the "localuser" and "localgroup" authentication methods provide access
|