HomeSort by relevance Sort by last modified time
    Searched defs:kc (Results 1 - 22 of 22) sorted by null

  /external/netperf/
netcpu_kstat.c 61 static kstat_ctl_t *kc = NULL; variable
88 if (!kc)
90 kc = kstat_open();
91 if (!kc)
97 kcid = kc->kc_chain_id;
118 nkcid = kstat_chain_update(kc);
132 ks = kstat_lookup(kc, "unix", 0, "system_misc");
133 if (kstat_read(kc, ks, 0) == -1) {
153 for (ks = kc->kc_chain; ks;
158 nkcid = kstat_read(kc, ks, NULL)
    [all...]
netcpu_kstat10.c 41 static kstat_ctl_t *kc = NULL; variable
73 kc = kstat_open();
75 if (kc == NULL) {
89 kstat_close(kc);
129 ksp = kstat_lookup(kc, "cpu", cpu_num, "sys");
132 nkcid = kstat_read(kc, ksp, NULL);
215 ksp = kstat_lookup(kc, "cpu", cpu_num, "intrstat");
220 nkcid = kstat_read(kc, ksp, NULL);
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemevents.c 53 static void do_keyboard(short kc, short ks);
82 short buffer[8], kc; local
106 &mousex,&mousey,&mouseb,&kstate,&kc,&dummy
115 if ((prevkc != kc) || (prevks != kstate)) {
116 do_keyboard(kc,kstate);
278 static void do_keyboard(short kc, short ks)
282 if (kc) {
283 scancode=(kc>>8) & (ATARIBIOS_MAXKEYS-1);
  /external/webkit/Source/WebCore/platform/text/wince/
TextCodecWinCE.cpp 65 static HashMap<String, CharsetInfo> kc; local
66 return kc;
  /external/wpa_supplicant_6/wpa_supplicant/src/hlr_auc_gw/
milenage.c 238 * @kc: Buffer for Kc = 64-bit Kc
241 int gsm_milenage(const u8 *opc, const u8 *k, const u8 *_rand, u8 *sres, u8 *kc)
250 kc[i] = ck[i] ^ ck[i + 8] ^ ik[i] ^ ik[i + 8];
359 u8 kc[8]; member in struct:gsm_milenage_test_set
1114 u8 sres[4], kc[8]; local
    [all...]
hlr_auc_gw.c 37 * Kc/SRES/RAND/AUTN/IK/CK/RES/AUTS as hex strings.
40 * text file in IMSI:Kc:SRES:RAND format, IMSI in ASCII, other fields as hex
60 u8 kc[8]; member in struct:gsm_triplet
133 /* Parse IMSI:Kc:SRES:RAND */
170 /* Kc */
173 printf("%s:%d - Invalid Kc (%s)\n", fname, line, pos);
178 if (strlen(pos) != 16 || hexstr2bin(pos, g->kc, 8)) {
179 printf("%s:%d - Invalid Kc (%s)\n", fname, line, pos);
419 u8 _rand[16], sres[4], kc[8]; local
423 gsm_milenage(m->opc, m->ki, _rand, sres, kc);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11events.c 58 SDLKey X11_TranslateKeycode(Display *display, KeyCode kc);
1215 KeyCode kc = xmods->modifiermap[i * n + j]; local
1356 KeyCode kc = (i << 3 | j); local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_sim.c 31 u8 kc[EAP_SIM_MAX_CHAL][EAP_SIM_KC_LEN]; member in struct:eap_sim_data
473 (u8 *) data->rand, (u8 *) data->kc, (u8 *) data->sres, sm);
500 data->num_chal, (const u8 *) data->kc, data->mk);
eap_sim_db.c 49 u8 kc[EAP_SIM_MAX_CHAL][EAP_SIM_KC_LEN]; member in struct:eap_sim_db_pending::__anon16852::__anon16853
116 * SIM-RESP-AUTH <IMSI> Kc(i):SRES(i):RAND(i) ...
118 * (IMSI = ASCII string, Kc/SRES/RAND = hex string)
148 if (hexstr2bin(start, entry->u.sim.kc[num_chal],
527 * @kc: Buffer for Kc values
549 u8 *_rand, u8 *kc, u8 *sres,
604 os_memcpy(kc, entry->u.sim.kc, num_chal * EAP_SIM_KC_LEN);
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_sim.c 26 u8 kc[EAP_SIM_MAX_CHAL][EAP_SIM_KC_LEN]; member in struct:eap_sim_data
524 (u8 *) data->rand, (u8 *) data->kc, (u8 *) data->sres, sm);
550 data->num_chal, (const u8 *) data->kc, data->mk);
eap_sim_db.c 45 u8 kc[EAP_SIM_MAX_CHAL][EAP_SIM_KC_LEN]; member in struct:eap_sim_db_pending::__anon17074::__anon17075
409 * SIM-RESP-AUTH <IMSI> Kc(i):SRES(i):RAND(i) ...
411 * (IMSI = ASCII string, Kc/SRES/RAND = hex string)
441 if (hexstr2bin(start, entry->u.sim.kc[num_chal],
842 * @kc: Buffer for Kc values
861 u8 *_rand, u8 *kc, u8 *sres,
905 os_memcpy(kc, entry->u.sim.kc, num_chal * EAP_SIM_KC_LEN);
    [all...]
  /ndk/sources/host-tools/make-3.81/
getloadavg.c 518 kstat_ctl_t *kc;
522 kc = kstat_open ();
523 if (kc == 0)
525 ksp = kstat_lookup (kc, "unix", 0, "system_misc");
528 if (kstat_read (kc, ksp, 0) == -1)
559 kstat_close (kc);
516 kstat_ctl_t *kc; local
  /external/wpa_supplicant_6/wpa_supplicant/
eapol_test.c 796 unsigned char kc[8]; local
835 if (scard_gsm_auth(scard, _rand, sres, kc))
839 if (scard_gsm_auth(scard, _rand, sres, kc))
901 unsigned char kc[8]; local
935 if (scard_gsm_auth(scard, _rand, sres, kc))
938 /* IMSI:Kc:SRES:RAND */
943 printf("%02X", kc[j]);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_sim.c 33 u8 kc[3][EAP_SIM_KC_LEN]; member in struct:eap_sim_data
157 data->sres[0], data->kc[0]) ||
159 data->sres[1], data->kc[1]) ||
162 data->sres[2], data->kc[2]))) {
195 data->sres[i], data->kc[i])) {
205 wpa_hexdump_key(MSG_DEBUG, "EAP-SIM: Kc",
206 data->kc[i], EAP_SIM_KC_LEN);
213 /* These hardcoded Kc and SRES values are used for testing. RAND to
214 * KC/SREC mapping is very bogus as far as real authentication is
220 wpa_printf(MSG_DEBUG, "EAP-SIM: Use hardcoded Kc and SRES
    [all...]
  /external/wpa_supplicant_8/hostapd/
hlr_auc_gw.c 31 * Kc/SRES/RAND/AUTN/IK/CK/RES/AUTS as hex strings.
34 * text file in IMSI:Kc:SRES:RAND format, IMSI in ASCII, other fields as hex
66 u8 kc[8]; member in struct:gsm_triplet
278 /* Parse IMSI:Kc:SRES:RAND */
315 /* Kc */
318 printf("%s:%d - Invalid Kc (%s)\n", fname, line, pos);
323 if (strlen(pos) != 16 || hexstr2bin(pos, g->kc, 8)) {
324 printf("%s:%d - Invalid Kc (%s)\n", fname, line, pos);
643 u8 _rand[16], sres[4], kc[8]; local
647 gsm_milenage(m->opc, m->ki, _rand, sres, kc);
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_sim.c 26 u8 kc[3][EAP_SIM_KC_LEN]; member in struct:eap_sim_data
159 data->sres[0], data->kc[0]) ||
161 data->sres[1], data->kc[1]) ||
164 data->sres[2], data->kc[2]))) {
197 data->sres[i], data->kc[i])) {
207 wpa_hexdump_key(MSG_DEBUG, "EAP-SIM: Kc",
208 data->kc[i], EAP_SIM_KC_LEN);
215 /* These hardcoded Kc and SRES values are used for testing. RAND to
216 * KC/SREC mapping is very bogus as far as real authentication is
222 wpa_printf(MSG_DEBUG, "EAP-SIM: Use hardcoded Kc and SRES
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
eapol_test.c 873 unsigned char kc[8]; local
915 if (scard_gsm_auth(scard, _rand, sres, kc))
919 if (scard_gsm_auth(scard, _rand, sres, kc))
981 unsigned char kc[8]; local
1015 if (scard_gsm_auth(scard, _rand, sres, kc))
1018 /* IMSI:Kc:SRES:RAND */
1023 printf("%02X", kc[j]);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
XKBsrv.h 105 CARD8 kc; member in struct:_XkbEventCause
111 #define XkbSetCauseKey(c,k,e) { (c)->kc= (k),(c)->event= (e),\
114 #define XkbSetCauseReq(c,j,n,cl) { (c)->kc= (c)->event= 0,\
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XKBsrv.h 105 CARD8 kc; member in struct:_XkbEventCause
111 #define XkbSetCauseKey(c,k,e) { (c)->kc= (k),(c)->event= (e),\
114 #define XkbSetCauseReq(c,j,n,cl) { (c)->kc= (c)->event= 0,\
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XKBsrv.h 105 CARD8 kc; member in struct:_XkbEventCause
111 #define XkbSetCauseKey(c,k,e) { (c)->kc= (k),(c)->event= (e),\
114 #define XkbSetCauseReq(c,j,n,cl) { (c)->kc= (c)->event= 0,\
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 832 milliseconds