Home | History | Annotate | Download | only in x11

Lines Matching defs:keydata

584 			char *keydata = keybuf;
591 count = Xutf8LookupString(SDL_IC, &xevent.xkey, keydata, sizeof(keybuf), &xkeysym, &status);
596 keydata = SDL_malloc(count);
597 if ( keydata == NULL ) {
601 count = Xutf8LookupString(SDL_IC, &xevent.xkey, keydata, count, &xkeysym, &status);
645 utf16length = Utf8ToUtf16((Uint8 *)keydata, count, utf16data, utf16size);
647 /* The keydata contained an invalid byte
712 if (keydata != NULL && keybuf != keydata) {
713 SDL_free(keydata);