Searched refs:reg (Results 126 - 150 of 1419) sorted by relevance

1234567891011>>

/external/smack/src/org/jivesoftware/smack/
H A DAccountManager.java226 Registration reg = new Registration();
227 reg.setType(IQ.Type.SET);
228 reg.setTo(connection.getServiceName());
231 reg.setAttributes(attributes);
232 PacketFilter filter = new AndFilter(new PacketIDFilter(reg.getPacketID()),
235 connection.sendPacket(reg);
256 Registration reg = new Registration();
257 reg.setType(IQ.Type.SET);
258 reg.setTo(connection.getServiceName());
262 reg
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
H A Dsvga_shader_dump.c131 const struct sh_reg reg,
134 if (reg.relative) {
138 _debug_printf("%s[aL+%u]", name, reg.number);
140 _debug_printf("%s[a%u.x+%u]", name, indreg->number, reg.number);
143 _debug_printf("%s%u", name, reg.number);
147 static void dump_reg( struct sh_reg reg, struct sh_srcreg *indreg, const struct dump_info *di ) argument
149 assert( reg.is_reg == 1 );
151 switch (sh_reg_type( reg )) {
153 format_reg("r", reg, NULL);
157 format_reg("v", reg, indre
130 format_reg(const char *name, const struct sh_reg reg, const struct sh_srcreg *indreg) argument
361 struct sh_reg reg; member in union:__anon14133
[all...]
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_shader_dump.c131 const struct sh_reg reg,
134 if (reg.relative) {
138 _debug_printf("%s[aL+%u]", name, reg.number);
140 _debug_printf("%s[a%u.x+%u]", name, indreg->number, reg.number);
143 _debug_printf("%s%u", name, reg.number);
147 static void dump_reg( struct sh_reg reg, struct sh_srcreg *indreg, const struct dump_info *di ) argument
149 assert( reg.is_reg == 1 );
151 switch (sh_reg_type( reg )) {
153 format_reg("r", reg, NULL);
157 format_reg("v", reg, indre
130 format_reg(const char *name, const struct sh_reg reg, const struct sh_srcreg *indreg) argument
361 struct sh_reg reg; member in union:__anon27544
[all...]
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
H A Dgl_x86-64_asm.py33 for [reg, offset] in registers:
34 if reg[1:4] == "xmm":
58 for [reg, stack_offset] in registers:
59 save_reg( reg, stack_offset, adjust_stack )
70 [reg, stack_offset] = temp.pop()
71 restore_reg(reg, stack_offset, adjust_stack)
78 def save_reg(reg, offset, use_move):
81 print '\tmovq\t%s, (%%rsp)' % (reg)
83 print '\tmovq\t%s, %u(%%rsp)' % (reg, offset)
85 print '\tpushq\t%s' % (reg)
[all...]
/external/libunwind/src/x86/
H A DGinit.c50 tdep_uc_addr (ucontext_t *uc, int reg) argument
52 return x86_r_uc_addr (uc, reg);
190 access_reg (unw_addr_space_t as, unw_regnum_t reg, unw_word_t *val, int write, argument
196 if (unw_is_fpreg (reg))
199 if (!(addr = x86_r_uc_addr (uc, reg)))
205 Debug (12, "%s <- %x\n", unw_regname (reg), *val);
210 Debug (12, "%s -> %x\n", unw_regname (reg), *val);
215 Debug (1, "bad register number %u\n", reg);
220 access_fpreg (unw_addr_space_t as, unw_regnum_t reg, unw_fpreg_t *val, argument
226 if (!unw_is_fpreg (reg))
[all...]
H A DGregs.c30 x86_scratch_loc (struct cursor *c, unw_regnum_t reg) argument
33 return x86_get_scratch_loc (c, reg);
35 return DWARF_REG_LOC (&c->dwarf, reg);
39 tdep_access_reg (struct cursor *c, unw_regnum_t reg, unw_word_t *valp, argument
46 switch (reg)
64 arg_num = reg - UNW_X86_EAX;
78 loc = c->dwarf.loc[(reg == UNW_X86_EAX) ? EAX : EDX];
107 loc = x86_scratch_loc (c, reg);
111 Debug (1, "bad register number %u\n", reg);
122 tdep_access_fpreg (struct cursor *c, unw_regnum_t reg, unw_fpreg_ argument
[all...]
H A Dunwind_i.h59 extern dwarf_loc_t x86_scratch_loc (struct cursor *c, unw_regnum_t reg);
60 extern dwarf_loc_t x86_get_scratch_loc (struct cursor *c, unw_regnum_t reg);
61 extern void *x86_r_uc_addr (ucontext_t *uc, int reg);
/external/mesa3d/src/mapi/glapi/gen/
H A Dgl_x86-64_asm.py33 for [reg, offset] in registers:
34 if reg[1:4] == "xmm":
58 for [reg, stack_offset] in registers:
59 save_reg( reg, stack_offset, adjust_stack )
70 [reg, stack_offset] = temp.pop()
71 restore_reg(reg, stack_offset, adjust_stack)
78 def save_reg(reg, offset, use_move):
81 print '\tmovq\t%s, (%%rsp)' % (reg)
83 print '\tmovq\t%s, %u(%%rsp)' % (reg, offset)
85 print '\tpushq\t%s' % (reg)
[all...]
/external/libpcap/msdos/
H A Dpktdrvr.c150 LOCAL SWI_REGS reg; variable
156 static __dpmi_regs reg; variable
171 LOCAL struct DPMI_regs reg; variable in typeref:struct:DPMI_regs
185 } reg; variable in typeref:struct:__anon24589
312 _dx_real_int ((UINT)pktInfo.intr, &reg);
313 okay = ((reg.flags & 1) == 0); /* OK if carry clear */
316 __dpmi_int ((int)pktInfo.intr, &reg);
317 okay = ((reg.x.flags & 1) == 0);
328 s.es = FP_SEG (&reg);
329 r.x.edi = FP_OFF (&reg);
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_sanity.c602 struct reg { struct
614 static struct reg regs[Elements(reg_names)+1];
615 static struct reg scalars[512+1];
616 static struct reg vectors[512*4+1];
650 static int find_or_add_value( struct reg *reg, int val ) argument
654 for ( j = 0 ; j < reg->nvalues ; j++)
655 if ( val == reg->values[j].i )
658 if (j == reg->nalloc) {
659 reg
710 print_int_reg_assignment( struct reg *reg, int data ) argument
734 print_float_reg_assignment( struct reg *reg, float data ) argument
765 print_reg_assignment( struct reg *reg, int data ) argument
828 struct reg *reg = lookup_reg( regs, packet[id].start + i*4 ); local
856 struct reg *reg = lookup_reg( scalars, start ); local
888 struct reg *reg = lookup_reg( scalars, start ); local
924 struct reg *reg = lookup_reg( vectors, start*4+j ); local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_sanity.c324 struct reg { struct
336 static struct reg regs[Elements(reg_names)+1];
337 static struct reg scalars[512+1];
338 static struct reg vectors[512*4+1];
372 static int find_or_add_value( struct reg *reg, int val ) argument
376 for ( j = 0 ; j < reg->nvalues ; j++)
377 if ( val == reg->values[j].i )
380 if (j == reg->nalloc) {
381 reg
432 print_int_reg_assignment( struct reg *reg, int data ) argument
456 print_float_reg_assignment( struct reg *reg, float data ) argument
487 print_reg_assignment( struct reg *reg, int data ) argument
550 struct reg *reg = lookup_reg( regs, packet[id].start + i*4 ); local
578 struct reg *reg = lookup_reg( scalars, start ); local
610 struct reg *reg = lookup_reg( scalars, start ); local
646 struct reg *reg = lookup_reg( vectors, start*4+j ); local
[all...]
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_sanity.c602 struct reg { struct
614 static struct reg regs[Elements(reg_names)+1];
615 static struct reg scalars[512+1];
616 static struct reg vectors[512*4+1];
650 static int find_or_add_value( struct reg *reg, int val ) argument
654 for ( j = 0 ; j < reg->nvalues ; j++)
655 if ( val == reg->values[j].i )
658 if (j == reg->nalloc) {
659 reg
710 print_int_reg_assignment( struct reg *reg, int data ) argument
734 print_float_reg_assignment( struct reg *reg, float data ) argument
765 print_reg_assignment( struct reg *reg, int data ) argument
828 struct reg *reg = lookup_reg( regs, packet[id].start + i*4 ); local
856 struct reg *reg = lookup_reg( scalars, start ); local
888 struct reg *reg = lookup_reg( scalars, start ); local
924 struct reg *reg = lookup_reg( vectors, start*4+j ); local
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_sanity.c324 struct reg { struct
336 static struct reg regs[Elements(reg_names)+1];
337 static struct reg scalars[512+1];
338 static struct reg vectors[512*4+1];
372 static int find_or_add_value( struct reg *reg, int val ) argument
376 for ( j = 0 ; j < reg->nvalues ; j++)
377 if ( val == reg->values[j].i )
380 if (j == reg->nalloc) {
381 reg
432 print_int_reg_assignment( struct reg *reg, int data ) argument
456 print_float_reg_assignment( struct reg *reg, float data ) argument
487 print_reg_assignment( struct reg *reg, int data ) argument
550 struct reg *reg = lookup_reg( regs, packet[id].start + i*4 ); local
578 struct reg *reg = lookup_reg( scalars, start ); local
610 struct reg *reg = lookup_reg( scalars, start ); local
646 struct reg *reg = lookup_reg( vectors, start*4+j ); local
[all...]
/external/valgrind/main/memcheck/tests/amd64/
H A Dbt_everything.c410 ULong reg; local
457 reg = 0;
464 case 0: c = btsl_reg(reg, bitoff, &reg); break;
465 case 1: c = btrl_reg(reg, bitoff, &reg); break;
466 case 2: c = btcl_reg(reg, bitoff, &reg); break;
467 case 3: c = btl_reg(reg, bitoff, &reg); brea
[all...]
/external/libunwind/include/
H A Dlibunwind-dynamic.h87 int16_t reg; /* what register */ member in struct:unw_dyn_op
179 #define _U_dyn_op_save_reg(op, qp, when, reg, dst) \
180 (*(op) = _U_dyn_op (UNW_DYN_SAVE_REG, (qp), (when), (reg), (dst)))
182 #define _U_dyn_op_spill_fp_rel(op, qp, when, reg, offset) \
183 (*(op) = _U_dyn_op (UNW_DYN_SPILL_FP_REL, (qp), (when), (reg), \
186 #define _U_dyn_op_spill_sp_rel(op, qp, when, reg, offset) \
187 (*(op) = _U_dyn_op (UNW_DYN_SPILL_SP_REL, (qp), (when), (reg), \
190 #define _U_dyn_op_add(op, qp, when, reg, value) \
191 (*(op) = _U_dyn_op (UNW_DYN_ADD, (qp), (when), (reg), (value)))
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_live_variables.cpp68 int reg = inst->src[i].reg; local
70 if (!bd[b].def[reg])
71 bd[b].use[reg] = true;
80 inst->regs_written() == v->virtual_grf_sizes[inst->dst.reg] &&
84 int reg = inst->dst.reg; local
85 if (!bd[b].use[reg])
86 bd[b].def[reg] = true;
190 int reg local
197 int reg = inst->dst.reg; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_live_variables.cpp68 int reg = inst->src[i].reg; local
70 if (!bd[b].def[reg])
71 bd[b].use[reg] = true;
80 inst->regs_written() == v->virtual_grf_sizes[inst->dst.reg] &&
84 int reg = inst->dst.reg; local
85 if (!bd[b].use[reg])
86 bd[b].def[reg] = true;
190 int reg local
197 int reg = inst->dst.reg; local
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_registrar.c194 static int wps_set_ie(struct wps_registrar *reg);
198 static void wps_registrar_remove_pin(struct wps_registrar *reg,
202 static void wps_registrar_add_authorized_mac(struct wps_registrar *reg, argument
209 if (os_memcmp(reg->authorized_macs[i], addr, ETH_ALEN) == 0) {
215 os_memcpy(reg->authorized_macs[i], reg->authorized_macs[i - 1],
217 os_memcpy(reg->authorized_macs[0], addr, ETH_ALEN);
219 (u8 *) reg->authorized_macs, sizeof(reg->authorized_macs));
223 static void wps_registrar_remove_authorized_mac(struct wps_registrar *reg, argument
261 wps_device_get(struct wps_registrar *reg, const u8 *addr) argument
293 wps_device_store(struct wps_registrar *reg, struct wps_device_data *dev, const u8 *uuid) argument
314 wps_registrar_add_pbc_session(struct wps_registrar *reg, const u8 *addr, const u8 *uuid_e) argument
366 wps_registrar_remove_pbc_session(struct wps_registrar *reg, const u8 *uuid_e, const u8 *p2p_dev_addr) argument
397 wps_registrar_pbc_overlap(struct wps_registrar *reg, const u8 *addr, const u8 *uuid_e) argument
495 wps_build_selected_registrar(struct wps_registrar *reg, struct wpabuf *msg) argument
508 wps_build_sel_reg_dev_password_id(struct wps_registrar *reg, struct wpabuf *msg) argument
524 wps_build_sel_pbc_reg_uuid_e(struct wps_registrar *reg, struct wpabuf *msg) argument
561 wps_build_sel_reg_config_methods(struct wps_registrar *reg, struct wpabuf *msg) argument
584 wps_build_probe_config_methods(struct wps_registrar *reg, struct wpabuf *msg) argument
603 wps_build_config_methods_r(struct wps_registrar *reg, struct wpabuf *msg) argument
610 wps_authorized_macs(struct wps_registrar *reg, size_t *count) argument
640 struct wps_registrar *reg = os_zalloc(sizeof(*reg)); local
683 wps_registrar_deinit(struct wps_registrar *reg) argument
698 wps_registrar_invalidate_unused(struct wps_registrar *reg) argument
723 wps_registrar_add_pin(struct wps_registrar *reg, const u8 *addr, const u8 *uuid, const u8 *pin, size_t pin_len, int timeout) argument
778 wps_registrar_remove_pin(struct wps_registrar *reg, struct wps_uuid_pin *pin) argument
794 wps_registrar_expire_pins(struct wps_registrar *reg) argument
819 wps_registrar_invalidate_wildcard_pin(struct wps_registrar *reg, const u8 *dev_pw, size_t dev_pw_len) argument
849 wps_registrar_invalidate_pin(struct wps_registrar *reg, const u8 *uuid) argument
867 wps_registrar_get_pin(struct wps_registrar *reg, const u8 *uuid, size_t *pin_len) argument
926 wps_registrar_unlock_pin(struct wps_registrar *reg, const u8 *uuid) argument
946 wps_registrar_stop_pbc(struct wps_registrar *reg) argument
959 struct wps_registrar *reg = eloop_ctx; local
981 wps_registrar_button_pushed(struct wps_registrar *reg, const u8 *p2p_dev_addr) argument
1012 wps_registrar_pbc_completed(struct wps_registrar *reg) argument
1021 wps_registrar_pin_completed(struct wps_registrar *reg) argument
1054 wps_registrar_wps_cancel(struct wps_registrar *reg) argument
1082 wps_registrar_probe_req_rx(struct wps_registrar *reg, const u8 *addr, const struct wpabuf *wps_data, int p2p_wildcard) argument
1165 wps_cb_new_psk(struct wps_registrar *reg, const u8 *mac_addr, const u8 *p2p_dev_addr, const u8 *psk, size_t psk_len) argument
1176 wps_cb_pin_needed(struct wps_registrar *reg, const u8 *uuid_e, const struct wps_device_data *dev) argument
1186 wps_cb_reg_success(struct wps_registrar *reg, const u8 *mac_addr, const u8 *uuid_e, const u8 *dev_pw, size_t dev_pw_len) argument
1197 wps_cb_set_ie(struct wps_registrar *reg, struct wpabuf *beacon_ie, struct wpabuf *probe_resp_ie) argument
1204 wps_cb_set_sel_reg(struct wps_registrar *reg) argument
1229 wps_set_ie(struct wps_registrar *reg) argument
2502 struct wps_registrar *reg = wps->wps->registrar; local
2523 struct wps_registrar *reg = wps->wps->registrar; local
3343 wps_registrar_update_ie(struct wps_registrar *reg) argument
3352 struct wps_registrar *reg = eloop_ctx; local
3363 wps_registrar_sel_reg_add(struct wps_registrar *reg, struct subscription *s) argument
3396 wps_registrar_sel_reg_union(struct wps_registrar *reg) argument
3430 wps_registrar_selected_registrar_changed(struct wps_registrar *reg, u16 dev_pw_id) argument
3468 wps_registrar_get_info(struct wps_registrar *reg, const u8 *addr, char *buf, size_t buflen) argument
3506 wps_registrar_config_ap(struct wps_registrar *reg, struct wps_credential *cred) argument
3546 wps_registrar_add_nfc_pw_token(struct wps_registrar *reg, const u8 *pubkey_hash, u16 pw_id, const u8 *dev_pw, size_t dev_pw_len, int pk_hash_provided_oob) argument
3601 wps_registrar_add_nfc_password_token(struct wps_registrar *reg, const u8 *oob_dev_pw, size_t oob_dev_pw_len) argument
3632 wps_registrar_remove_nfc_pw_token(struct wps_registrar *reg, struct wps_nfc_pw_token *token) argument
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps_registrar.c194 static int wps_set_ie(struct wps_registrar *reg);
198 static void wps_registrar_remove_pin(struct wps_registrar *reg,
202 static void wps_registrar_add_authorized_mac(struct wps_registrar *reg, argument
209 if (os_memcmp(reg->authorized_macs[i], addr, ETH_ALEN) == 0) {
215 os_memcpy(reg->authorized_macs[i], reg->authorized_macs[i - 1],
217 os_memcpy(reg->authorized_macs[0], addr, ETH_ALEN);
219 (u8 *) reg->authorized_macs, sizeof(reg->authorized_macs));
223 static void wps_registrar_remove_authorized_mac(struct wps_registrar *reg, argument
261 wps_device_get(struct wps_registrar *reg, const u8 *addr) argument
293 wps_device_store(struct wps_registrar *reg, struct wps_device_data *dev, const u8 *uuid) argument
314 wps_registrar_add_pbc_session(struct wps_registrar *reg, const u8 *addr, const u8 *uuid_e) argument
366 wps_registrar_remove_pbc_session(struct wps_registrar *reg, const u8 *uuid_e, const u8 *p2p_dev_addr) argument
397 wps_registrar_pbc_overlap(struct wps_registrar *reg, const u8 *addr, const u8 *uuid_e) argument
495 wps_build_selected_registrar(struct wps_registrar *reg, struct wpabuf *msg) argument
508 wps_build_sel_reg_dev_password_id(struct wps_registrar *reg, struct wpabuf *msg) argument
524 wps_build_sel_pbc_reg_uuid_e(struct wps_registrar *reg, struct wpabuf *msg) argument
561 wps_build_sel_reg_config_methods(struct wps_registrar *reg, struct wpabuf *msg) argument
584 wps_build_probe_config_methods(struct wps_registrar *reg, struct wpabuf *msg) argument
603 wps_build_config_methods_r(struct wps_registrar *reg, struct wpabuf *msg) argument
610 wps_authorized_macs(struct wps_registrar *reg, size_t *count) argument
640 struct wps_registrar *reg = os_zalloc(sizeof(*reg)); local
683 wps_registrar_deinit(struct wps_registrar *reg) argument
698 wps_registrar_invalidate_unused(struct wps_registrar *reg) argument
723 wps_registrar_add_pin(struct wps_registrar *reg, const u8 *addr, const u8 *uuid, const u8 *pin, size_t pin_len, int timeout) argument
778 wps_registrar_remove_pin(struct wps_registrar *reg, struct wps_uuid_pin *pin) argument
794 wps_registrar_expire_pins(struct wps_registrar *reg) argument
819 wps_registrar_invalidate_wildcard_pin(struct wps_registrar *reg, const u8 *dev_pw, size_t dev_pw_len) argument
849 wps_registrar_invalidate_pin(struct wps_registrar *reg, const u8 *uuid) argument
867 wps_registrar_get_pin(struct wps_registrar *reg, const u8 *uuid, size_t *pin_len) argument
926 wps_registrar_unlock_pin(struct wps_registrar *reg, const u8 *uuid) argument
946 wps_registrar_stop_pbc(struct wps_registrar *reg) argument
959 struct wps_registrar *reg = eloop_ctx; local
981 wps_registrar_button_pushed(struct wps_registrar *reg, const u8 *p2p_dev_addr) argument
1012 wps_registrar_pbc_completed(struct wps_registrar *reg) argument
1021 wps_registrar_pin_completed(struct wps_registrar *reg) argument
1054 wps_registrar_wps_cancel(struct wps_registrar *reg) argument
1082 wps_registrar_probe_req_rx(struct wps_registrar *reg, const u8 *addr, const struct wpabuf *wps_data, int p2p_wildcard) argument
1165 wps_cb_new_psk(struct wps_registrar *reg, const u8 *mac_addr, const u8 *p2p_dev_addr, const u8 *psk, size_t psk_len) argument
1176 wps_cb_pin_needed(struct wps_registrar *reg, const u8 *uuid_e, const struct wps_device_data *dev) argument
1186 wps_cb_reg_success(struct wps_registrar *reg, const u8 *mac_addr, const u8 *uuid_e, const u8 *dev_pw, size_t dev_pw_len) argument
1197 wps_cb_set_ie(struct wps_registrar *reg, struct wpabuf *beacon_ie, struct wpabuf *probe_resp_ie) argument
1204 wps_cb_set_sel_reg(struct wps_registrar *reg) argument
1229 wps_set_ie(struct wps_registrar *reg) argument
2502 struct wps_registrar *reg = wps->wps->registrar; local
2523 struct wps_registrar *reg = wps->wps->registrar; local
3343 wps_registrar_update_ie(struct wps_registrar *reg) argument
3352 struct wps_registrar *reg = eloop_ctx; local
3363 wps_registrar_sel_reg_add(struct wps_registrar *reg, struct subscription *s) argument
3396 wps_registrar_sel_reg_union(struct wps_registrar *reg) argument
3430 wps_registrar_selected_registrar_changed(struct wps_registrar *reg, u16 dev_pw_id) argument
3468 wps_registrar_get_info(struct wps_registrar *reg, const u8 *addr, char *buf, size_t buflen) argument
3506 wps_registrar_config_ap(struct wps_registrar *reg, struct wps_credential *cred) argument
3546 wps_registrar_add_nfc_pw_token(struct wps_registrar *reg, const u8 *pubkey_hash, u16 pw_id, const u8 *dev_pw, size_t dev_pw_len, int pk_hash_provided_oob) argument
3601 wps_registrar_add_nfc_password_token(struct wps_registrar *reg, const u8 *oob_dev_pw, size_t oob_dev_pw_len) argument
3632 wps_registrar_remove_nfc_pw_token(struct wps_registrar *reg, struct wps_nfc_pw_token *token) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_registrar.c194 static int wps_set_ie(struct wps_registrar *reg);
198 static void wps_registrar_remove_pin(struct wps_registrar *reg,
202 static void wps_registrar_add_authorized_mac(struct wps_registrar *reg, argument
209 if (os_memcmp(reg->authorized_macs[i], addr, ETH_ALEN) == 0) {
215 os_memcpy(reg->authorized_macs[i], reg->authorized_macs[i - 1],
217 os_memcpy(reg->authorized_macs[0], addr, ETH_ALEN);
219 (u8 *) reg->authorized_macs, sizeof(reg->authorized_macs));
223 static void wps_registrar_remove_authorized_mac(struct wps_registrar *reg, argument
261 wps_device_get(struct wps_registrar *reg, const u8 *addr) argument
293 wps_device_store(struct wps_registrar *reg, struct wps_device_data *dev, const u8 *uuid) argument
314 wps_registrar_add_pbc_session(struct wps_registrar *reg, const u8 *addr, const u8 *uuid_e) argument
366 wps_registrar_remove_pbc_session(struct wps_registrar *reg, const u8 *uuid_e, const u8 *p2p_dev_addr) argument
397 wps_registrar_pbc_overlap(struct wps_registrar *reg, const u8 *addr, const u8 *uuid_e) argument
495 wps_build_selected_registrar(struct wps_registrar *reg, struct wpabuf *msg) argument
508 wps_build_sel_reg_dev_password_id(struct wps_registrar *reg, struct wpabuf *msg) argument
524 wps_build_sel_pbc_reg_uuid_e(struct wps_registrar *reg, struct wpabuf *msg) argument
561 wps_build_sel_reg_config_methods(struct wps_registrar *reg, struct wpabuf *msg) argument
584 wps_build_probe_config_methods(struct wps_registrar *reg, struct wpabuf *msg) argument
603 wps_build_config_methods_r(struct wps_registrar *reg, struct wpabuf *msg) argument
610 wps_authorized_macs(struct wps_registrar *reg, size_t *count) argument
640 struct wps_registrar *reg = os_zalloc(sizeof(*reg)); local
683 wps_registrar_deinit(struct wps_registrar *reg) argument
698 wps_registrar_invalidate_unused(struct wps_registrar *reg) argument
723 wps_registrar_add_pin(struct wps_registrar *reg, const u8 *addr, const u8 *uuid, const u8 *pin, size_t pin_len, int timeout) argument
778 wps_registrar_remove_pin(struct wps_registrar *reg, struct wps_uuid_pin *pin) argument
794 wps_registrar_expire_pins(struct wps_registrar *reg) argument
819 wps_registrar_invalidate_wildcard_pin(struct wps_registrar *reg, const u8 *dev_pw, size_t dev_pw_len) argument
849 wps_registrar_invalidate_pin(struct wps_registrar *reg, const u8 *uuid) argument
867 wps_registrar_get_pin(struct wps_registrar *reg, const u8 *uuid, size_t *pin_len) argument
926 wps_registrar_unlock_pin(struct wps_registrar *reg, const u8 *uuid) argument
946 wps_registrar_stop_pbc(struct wps_registrar *reg) argument
959 struct wps_registrar *reg = eloop_ctx; local
981 wps_registrar_button_pushed(struct wps_registrar *reg, const u8 *p2p_dev_addr) argument
1012 wps_registrar_pbc_completed(struct wps_registrar *reg) argument
1021 wps_registrar_pin_completed(struct wps_registrar *reg) argument
1054 wps_registrar_wps_cancel(struct wps_registrar *reg) argument
1082 wps_registrar_probe_req_rx(struct wps_registrar *reg, const u8 *addr, const struct wpabuf *wps_data, int p2p_wildcard) argument
1165 wps_cb_new_psk(struct wps_registrar *reg, const u8 *mac_addr, const u8 *p2p_dev_addr, const u8 *psk, size_t psk_len) argument
1176 wps_cb_pin_needed(struct wps_registrar *reg, const u8 *uuid_e, const struct wps_device_data *dev) argument
1186 wps_cb_reg_success(struct wps_registrar *reg, const u8 *mac_addr, const u8 *uuid_e, const u8 *dev_pw, size_t dev_pw_len) argument
1197 wps_cb_set_ie(struct wps_registrar *reg, struct wpabuf *beacon_ie, struct wpabuf *probe_resp_ie) argument
1204 wps_cb_set_sel_reg(struct wps_registrar *reg) argument
1229 wps_set_ie(struct wps_registrar *reg) argument
2502 struct wps_registrar *reg = wps->wps->registrar; local
2523 struct wps_registrar *reg = wps->wps->registrar; local
3343 wps_registrar_update_ie(struct wps_registrar *reg) argument
3352 struct wps_registrar *reg = eloop_ctx; local
3363 wps_registrar_sel_reg_add(struct wps_registrar *reg, struct subscription *s) argument
3396 wps_registrar_sel_reg_union(struct wps_registrar *reg) argument
3430 wps_registrar_selected_registrar_changed(struct wps_registrar *reg, u16 dev_pw_id) argument
3468 wps_registrar_get_info(struct wps_registrar *reg, const u8 *addr, char *buf, size_t buflen) argument
3506 wps_registrar_config_ap(struct wps_registrar *reg, struct wps_credential *cred) argument
3546 wps_registrar_add_nfc_pw_token(struct wps_registrar *reg, const u8 *pubkey_hash, u16 pw_id, const u8 *dev_pw, size_t dev_pw_len, int pk_hash_provided_oob) argument
3601 wps_registrar_add_nfc_password_token(struct wps_registrar *reg, const u8 *oob_dev_pw, size_t oob_dev_pw_len) argument
3632 wps_registrar_remove_nfc_pw_token(struct wps_registrar *reg, struct wps_nfc_pw_token *token) argument
[all...]
/external/chromium_org/v8/src/
H A Ddisasm.h18 virtual const char* NameOfCPURegister(int reg) const;
19 virtual const char* NameOfByteCPURegister(int reg) const;
20 virtual const char* NameOfXMMRegister(int reg) const;
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DLocal.java27 private int reg = -1; field in class:Local
45 this.reg = nextAvailableRegister;
72 return "v" + reg + "(" + type + ")";
/external/libunwind/src/arm/
H A DGget_save_loc.c28 unw_get_save_loc (unw_cursor_t *cursor, int reg, unw_save_loc_t *sloc) argument
35 switch (reg)
53 loc = c->dwarf.loc[reg - UNW_ARM_R0];
/external/libunwind/src/ppc32/
H A Dregname.c106 unw_regname (unw_regnum_t reg) argument
108 if (reg < (unw_regnum_t) ARRAY_SIZE (regname))
109 return regname[reg];
/external/libunwind/src/sh/
H A DGget_save_loc.c29 unw_get_save_loc (unw_cursor_t *cursor, int reg, unw_save_loc_t *sloc) argument
34 switch (reg)
54 loc = c->dwarf.loc[reg];

Completed in 574 milliseconds

1234567891011>>