Searched defs:ndef (Results 1 - 20 of 20) sorted by relevance

/external/wpa_supplicant_8/wpa_supplicant/
H A Dap.h59 int ndef);
62 int ndef);
66 int ndef)
65 wpas_ap_wps_nfc_handover_sel(struct wpa_supplicant *wpa_s, int ndef) argument
H A Dnfc_pw_token.c41 struct wpabuf *buf = NULL, *ndef = NULL; local
57 ndef = ndef_build_wifi(buf);
58 if (ndef == NULL)
65 wpa_snprintf_hex_uppercase(txt, sizeof(txt), wpabuf_head(ndef),
66 wpabuf_len(ndef));
76 wpabuf_free(ndef);
H A Dap.c933 int ndef)
940 return hostapd_wps_nfc_config_token(hapd, ndef);
945 int ndef)
952 return hostapd_wps_nfc_hs_cr(hapd, ndef);
932 wpas_ap_wps_nfc_config_token(struct wpa_supplicant *wpa_s, int ndef) argument
944 wpas_ap_wps_nfc_handover_sel(struct wpa_supplicant *wpa_s, int ndef) argument
H A Dwps_supplicant.c1940 int ndef, const char *uuid)
1957 if (ndef && ret) {
2053 wpas_wps_network_config_token(struct wpa_supplicant *wpa_s, int ndef, argument
2064 if (ndef && ret) {
2079 int ndef, const char *id_str)
2094 return wpas_wps_network_config_token(wpa_s, ndef, ssid);
2099 return wpas_ap_wps_nfc_config_token(wpa_s, ndef);
2105 struct wpabuf * wpas_wps_nfc_token(struct wpa_supplicant *wpa_s, int ndef) argument
2108 return wps_nfc_token_build(ndef,
2114 return wps_nfc_token_gen(ndef,
1939 wpas_wps_er_nfc_config_token(struct wpa_supplicant *wpa_s, int ndef, const char *uuid) argument
2078 wpas_wps_nfc_config_token(struct wpa_supplicant *wpa_s, int ndef, const char *id_str) argument
2306 wpas_wps_nfc_handover_req(struct wpa_supplicant *wpa_s, int ndef) argument
2335 wpas_wps_er_nfc_handover_sel(struct wpa_supplicant *wpa_s, int ndef, const char *uuid) argument
2390 wpas_wps_nfc_handover_sel(struct wpa_supplicant *wpa_s, int ndef, int cr, const char *uuid) argument
[all...]
H A Dctrl_iface.c832 int ndef; local
841 ndef = 0;
843 ndef = 1;
847 buf = wpas_wps_nfc_config_token(wpa_s, ndef, pos);
865 int ndef; local
870 ndef = 0;
872 ndef = 1;
876 buf = wpas_wps_nfc_token(wpa_s, ndef);
929 int ndef)
934 buf = wpas_wps_nfc_handover_req(wpa_s, ndef);
927 wpas_ctrl_nfc_get_handover_req_wps(struct wpa_supplicant *wpa_s, char *reply, size_t max_len, int ndef) argument
950 wpas_ctrl_nfc_get_handover_req_p2p(struct wpa_supplicant *wpa_s, char *reply, size_t max_len, int ndef) argument
980 int ndef; local
1012 wpas_ctrl_nfc_get_handover_sel_wps(struct wpa_supplicant *wpa_s, char *reply, size_t max_len, int ndef, int cr, char *uuid) argument
1035 wpas_ctrl_nfc_get_handover_sel_p2p(struct wpa_supplicant *wpa_s, char *reply, size_t max_len, int ndef, int tag) argument
1063 int ndef; local
1425 int ndef; local
[all...]
H A Dp2p_supplicant.c7245 static struct wpabuf * wpas_p2p_nfc_handover(int ndef, struct wpabuf *wsc, argument
7276 if (ndef && ret) {
7317 int ndef)
7345 return wpas_p2p_nfc_handover(ndef, wsc, p2p);
7350 int ndef, int tag)
7378 return wpas_p2p_nfc_handover(ndef, wsc, p2p);
7316 wpas_p2p_nfc_handover_req(struct wpa_supplicant *wpa_s, int ndef) argument
7349 wpas_p2p_nfc_handover_sel(struct wpa_supplicant *wpa_s, int ndef, int tag) argument
/external/wpa_supplicant_8/hostapd/
H A Dwps-ap-nfc.py15 import nfc.ndef namespace
120 response = nfc.ndef.Message("\xd1\x02\x01Hs\x12")
125 request = nfc.ndef.HandoverRequestMessage(request)
126 except nfc.ndef.DecodeError as e:
141 sel = nfc.ndef.HandoverSelectMessage(version="1.2")
158 message = nfc.ndef.Message(data);
175 if len(tag.ndef.message):
176 for record in tag.ndef.message:
180 success = wpas_tag_read(tag.ndef.message)
194 tag.ndef
[all...]
H A Dctrl_iface.c289 int ndef; local
294 ndef = 0;
296 ndef = 1;
300 buf = hostapd_wps_nfc_config_token(hapd, ndef);
317 int ndef)
322 buf = hostapd_wps_nfc_token_gen(hapd, ndef);
368 int ndef; local
376 ndef = 0;
378 ndef = 1;
383 buf = hostapd_wps_nfc_hs_cr(hapd, ndef);
315 hostapd_ctrl_iface_wps_nfc_token_gen(struct hostapd_data *hapd, char *reply, size_t max_len, int ndef) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dp2p-nfc.py17 import nfc.ndef namespace
154 message = nfc.ndef.HandoverRequestMessage(version="1.2")
164 datamsg = nfc.ndef.Message(data)
178 datamsg = nfc.ndef.Message(data)
226 message = nfc.ndef.HandoverSelectMessage(message)
270 response = nfc.ndef.Message("\xd1\x02\x01Hs\x12")
275 request = nfc.ndef.HandoverRequestMessage(request)
276 except nfc.ndef.DecodeError as e:
292 sel = nfc.ndef.HandoverSelectMessage(version="1.2")
320 message = nfc.ndef
[all...]
H A Dwps-nfc.py17 import nfc.ndef namespace
149 response = nfc.ndef.Message("\xd1\x02\x01Hs\x12")
154 request = nfc.ndef.HandoverRequestMessage(request)
155 except nfc.ndef.DecodeError as e:
170 sel = nfc.ndef.HandoverSelectMessage(version="1.2")
188 message = nfc.ndef.Message(data);
212 message = nfc.ndef.HandoverRequestMessage(version="1.2")
214 datamsg = nfc.ndef.Message(data)
262 message = nfc.ndef.HandoverSelectMessage(message)
278 #wifi = nfc.ndef
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Dtasn_enc.c79 /* Top level i2d equivalents: the 'ndef' variant instructs the encoder
135 int i, seqcontlen, seqlen, ndef = 1; local
198 if (aclass & ASN1_TFLG_NDEF) ndef = 2;
235 seqlen = ASN1_object_size(ndef, seqcontlen, tag);
239 ASN1_put_object(out, ndef, seqcontlen, tag, aclass);
251 if (ndef == 2)
273 int i, ret, flags, ttag, tclass, ndef; local
312 /* if template and arguments require ndef, use it */
314 ndef = 2;
315 else ndef
510 int ndef = 0; local
[all...]
/external/openssl/crypto/asn1/
H A Dtasn_enc.c79 /* Top level i2d equivalents: the 'ndef' variant instructs the encoder
135 int i, seqcontlen, seqlen, ndef = 1; local
198 if (aclass & ASN1_TFLG_NDEF) ndef = 2;
235 seqlen = ASN1_object_size(ndef, seqcontlen, tag);
239 ASN1_put_object(out, ndef, seqcontlen, tag, aclass);
251 if (ndef == 2)
273 int i, ret, flags, ttag, tclass, ndef; local
312 /* if template and arguments require ndef, use it */
314 ndef = 2;
315 else ndef
510 int ndef = 0; local
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_common.c618 struct wpabuf * wps_nfc_token_build(int ndef, int id, struct wpabuf *pubkey, argument
627 if (ndef && ret) {
665 struct wpabuf * wps_nfc_token_gen(int ndef, int *id, struct wpabuf **pubkey, argument
692 return wps_nfc_token_build(ndef, *id, *pubkey, *dev_pw);
/external/wpa_supplicant_8/src/wps/
H A Dwps_common.c618 struct wpabuf * wps_nfc_token_build(int ndef, int id, struct wpabuf *pubkey, argument
627 if (ndef && ret) {
665 struct wpabuf * wps_nfc_token_gen(int ndef, int *id, struct wpabuf **pubkey, argument
692 return wps_nfc_token_build(ndef, *id, *pubkey, *dev_pw);
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_common.c618 struct wpabuf * wps_nfc_token_build(int ndef, int id, struct wpabuf *pubkey, argument
627 if (ndef && ret) {
665 struct wpabuf * wps_nfc_token_gen(int ndef, int *id, struct wpabuf **pubkey, argument
692 return wps_nfc_token_build(ndef, *id, *pubkey, *dev_pw);
/external/libnfc-nci/src/nfc/include/
H A Drw_api.h133 #define RW_NDEF_FL_UNKNOWN 0x08 /* Unable to find if tag is ndef capable/formated/read only */
251 tRW_DETECT_NDEF_DATA ndef; /* The information of detected NDEF data */ member in union:__anon23534
623 ** NFC_STATUS_OK: ndef detection procedure started
641 ** NFC_STATUS_OK: ndef detection procedure started
828 ** - If felica-lite code then poll for ndef (12fc)
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dwps_hostapd.c1740 int ndef)
1749 if (ndef && ret) {
1762 struct wpabuf * hostapd_wps_nfc_hs_cr(struct hostapd_data *hapd, int ndef) argument
1790 if (ndef && ret) {
1897 struct wpabuf * hostapd_wps_nfc_token_gen(struct hostapd_data *hapd, int ndef) argument
1900 return wps_nfc_token_build(ndef,
1906 return wps_nfc_token_gen(ndef, &hapd->conf->wps_nfc_dev_pw_id,
1739 hostapd_wps_nfc_config_token(struct hostapd_data *hapd, int ndef) argument
/external/wpa_supplicant_8/src/ap/
H A Dwps_hostapd.c1740 int ndef)
1749 if (ndef && ret) {
1762 struct wpabuf * hostapd_wps_nfc_hs_cr(struct hostapd_data *hapd, int ndef) argument
1790 if (ndef && ret) {
1897 struct wpabuf * hostapd_wps_nfc_token_gen(struct hostapd_data *hapd, int ndef) argument
1900 return wps_nfc_token_build(ndef,
1906 return wps_nfc_token_gen(ndef, &hapd->conf->wps_nfc_dev_pw_id,
1739 hostapd_wps_nfc_config_token(struct hostapd_data *hapd, int ndef) argument
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dwps_hostapd.c1740 int ndef)
1749 if (ndef && ret) {
1762 struct wpabuf * hostapd_wps_nfc_hs_cr(struct hostapd_data *hapd, int ndef) argument
1790 if (ndef && ret) {
1897 struct wpabuf * hostapd_wps_nfc_token_gen(struct hostapd_data *hapd, int ndef) argument
1900 return wps_nfc_token_build(ndef,
1906 return wps_nfc_token_gen(ndef, &hapd->conf->wps_nfc_dev_pw_id,
1739 hostapd_wps_nfc_config_token(struct hostapd_data *hapd, int ndef) argument
/external/elfutils/0.153/src/
H A Dldgeneric.c3811 int ndef = 0; local
3839 ++ndef;
3848 verneed.vn_cnt = ndef;

Completed in 345 milliseconds