HomeSort by relevance Sort by last modified time
    Searched refs:keybuf (Results 1 - 14 of 14) sorted by null

  /external/dropbear/
cli-authpubkey.c 64 buffer* keybuf = NULL; local
77 keybuf = buf_new(MAX_PUBKEY_SIZE);
92 keybuf->pos = keybuf->len = 0;
93 buf_put_pub_key(keybuf, keyitem->key, keytype);
94 buf_setpos(keybuf, 0);
95 buf_incrpos(keybuf, 4); /* first int is the length of the remainder (ie
100 if (keybuf->len-4 != remotelen) {
101 TRACE(("lengths differed: localh %d remote %d", keybuf->len, remotelen))
105 if (memcmp(buf_getptr(keybuf, remotelen)
    [all...]
keyimport.c 543 unsigned char keybuf[32];
548 MD5Final(keybuf, &md5c);
551 MD5Update(&md5c, keybuf, 16);
554 MD5Final(keybuf+16, &md5c);
559 des3_decrypt_pubkey_ossh(keybuf, (unsigned char *)key->iv,
563 memset(keybuf, 0, sizeof(keybuf));
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/dga/
SDL_dgaevents.c 97 char keybuf[32]; local
99 if ( XLookupString(&xkey, keybuf, sizeof(keybuf), NULL, &state) ) {
106 keysym.unicode = (Uint8)keybuf[0];
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_amigaevents.c 522 unsigned char keybuf[32];
523 if ( XLookupString(xkey, (char *)keybuf, sizeof(keybuf),
525 keysym->unicode = keybuf[0];
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11events.c 583 char keybuf[32]; local
584 char *keydata = keybuf;
591 count = Xutf8LookupString(SDL_IC, &xevent.xkey, keydata, sizeof(keybuf), &xkeysym, &status);
712 if (keydata != NULL && keybuf != keydata) {
723 char keybuf[32]; local
730 keybuf, sizeof(keybuf),
738 keysym.unicode = (Uint8)keybuf[0];
1227 char keybuf[32]; local
    [all...]
  /external/quake/quake/src/WinQuake/
sys_dos.cpp 51 static unsigned char keybuf[KEYBUF_SIZE]; variable
149 keybuf[keybuf_head] = dos_inportb(0x60);
152 if (scantokey[keybuf[keybuf_head]&0x7f] == K_CTRL)
153 ctrl=keybuf[keybuf_head]&0x80;
154 if (ctrl && scantokey[keybuf[keybuf_head]&0x7f] == 'c')
494 k = keybuf[keybuf_tail++];
499 next = keybuf[(keybuf_tail-2)&(KEYBUF_SIZE-1)];
511 if ( keybuf[(keybuf_tail-2)&(KEYBUF_SIZE-1)]==0xe0 )
517 if (k==0xc5 && keybuf[(keybuf_tail-2)&(KEYBUF_SIZE-1)] == 0x9d)
  /external/sqlite/android/
sqlite3_android.cpp 372 char keybuf[1024]; local
373 uint32_t result = ucol_getSortKey(collator, token, -1, (uint8_t*)keybuf, sizeof(keybuf)-1);
374 if (result > sizeof(keybuf)) {
382 base16Encode(base16buf, keybuf, keysize);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
ikev2_common.c 702 u8 *keybuf, *pos; local
721 keybuf = os_malloc(keybuf_len);
722 if (keybuf == NULL)
726 data, data_len, keybuf, keybuf_len)) {
727 os_free(keybuf);
731 pos = keybuf;
788 os_free(keybuf);
  /external/qemu/block/
qcow.c 179 uint8_t keybuf[16]; local
182 memset(keybuf, 0, 16);
189 keybuf[i] = key[i];
193 if (AES_set_encrypt_key(keybuf, 128, &s->aes_encrypt_key) != 0)
195 if (AES_set_decrypt_key(keybuf, 128, &s->aes_decrypt_key) != 0)
qcow2.c 272 uint8_t keybuf[16]; local
275 memset(keybuf, 0, 16);
282 keybuf[i] = key[i];
286 if (AES_set_encrypt_key(keybuf, 128, &s->aes_encrypt_key) != 0)
288 if (AES_set_decrypt_key(keybuf, 128, &s->aes_decrypt_key) != 0)
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbevents.c 987 unsigned char keybuf[BUFSIZ]; local
993 nread = read(keyboard_fd, keybuf, BUFSIZ);
995 scancode = keybuf[i] & 0x7F;
996 if ( keybuf[i] & 0x80 ) {
  /external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
SDL_gsevents.c 762 unsigned char keybuf[BUFSIZ]; local
768 nread = read(keyboard_fd, keybuf, BUFSIZ);
770 scancode = keybuf[i] & 0x7F;
771 if ( keybuf[i] & 0x80 ) {
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5events.c 272 static void handle_keyboard(const int numevents, DIDEVICEOBJECTDATA *keybuf)
279 if ( keybuf[i].dwData & 0x80 ) {
281 TranslateKey(keybuf[i].dwOfs, &keysym, 1));
284 TranslateKey(keybuf[i].dwOfs, &keysym, 0));
  /hardware/broadcom/wlan/bcm4329/src/wl/sys/
wl_iw.c 3981 uint8 keybuf[8]; local
    [all...]

Completed in 2018 milliseconds