Searched refs:data (Results 201 - 225 of 7693) sorted by relevance

1234567891011>>

/external/iptables/extensions/
H A Dlibxt_ipvs.c68 struct xt_ipvs_mtinfo *data = cb->data; local
73 data->l4proto = cb->val.protocol;
76 memcpy(&data->vaddr, &cb->val.haddr, sizeof(cb->val.haddr));
77 memcpy(&data->vmask, &cb->val.hmask, sizeof(cb->val.hmask));
81 data->bitmask |= XT_IPVS_DIR;
82 data->invert &= ~XT_IPVS_DIR;
84 data->bitmask |= XT_IPVS_DIR;
85 data->invert |= XT_IPVS_DIR;
93 data
157 ipvs_mt_dump(const void *ip, const struct xt_ipvs_mtinfo *data, unsigned int family, bool numeric, const char *prefix) argument
227 const struct xt_ipvs_mtinfo *data = (const void *)match->data; local
234 const struct xt_ipvs_mtinfo *data = (const void *)match->data; local
240 const struct xt_ipvs_mtinfo *data = (const void *)match->data; local
246 const struct xt_ipvs_mtinfo *data = (const void *)match->data; local
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
H A DAppleDataBox.java8 * Most stupid box of the world. Encapsulates actual data within
11 public static final String TYPE = "data";
14 private byte[] data; field in class:AppleDataBox
56 return data.length + 8;
59 public void setData(byte[] data) { argument
60 this.data = new byte[data.length];
61 System.arraycopy(data, 0, this.data, 0, data
[all...]
/external/qemu/
H A Dnet-checksum.c56 void net_checksum_calculate(uint8_t *data, int length) argument
61 if ((data[14] & 0xf0) != 0x40)
63 hlen = (data[14] & 0x0f) * 4;
64 plen = (data[16] << 8 | data[17]) - hlen;
65 proto = data[23];
81 data[14+hlen+csum_offset] = 0;
82 data[14+hlen+csum_offset+1] = 0;
83 csum = net_checksum_tcpudp(plen, proto, data+14+12, data
[all...]
/external/sonivox/jet_tools/JetCreator/
H A DJetStatusEvent.py32 def __init__(self, mode, data):
36 self.data = data
/external/srtp/crypto/include/
H A Dstat.h55 stat_test_monobit(uint8_t *data);
58 stat_test_poker(uint8_t *data);
61 stat_test_runs(uint8_t *data);
/external/valgrind/main/memcheck/tests/amd64/
H A Dbug279698.c9 unsigned char data[32], vbits[32]; local
14 ::"r"(data)
18 VALGRIND_GET_VBITS( data, vbits, 32 );
/external/webkit/Source/JavaScriptCore/wtf/
H A DThreading.cpp36 NewThreadContext(ThreadFunction entryPoint, void* data, const char* name) argument
38 , data(data)
44 void* data; member in struct:WTF::NewThreadContext
64 void* data = context->data; local
67 return entryPoint(data);
70 ThreadIdentifier createThread(ThreadFunction entryPoint, void* data, const char* name) argument
79 NewThreadContext* context = new NewThreadContext(entryPoint, data, name);
92 ThreadIdentifier createThread(ThreadFunction entryPoint, void* data);
94 createThread(ThreadFunction entryPoint, void* data) argument
[all...]
/external/webkit/Source/WebCore/html/canvas/
H A DArrayBuffer.cpp35 void* data = tryAllocate(numElements, elementByteSize); local
36 if (!data)
38 return adoptRef(new ArrayBuffer(data, numElements * elementByteSize));
43 return ArrayBuffer::create(other->data(), other->byteLength());
48 void* data = tryAllocate(byteLength, 1); local
49 if (!data)
51 RefPtr<ArrayBuffer> buffer = adoptRef(new ArrayBuffer(data, byteLength));
52 memcpy(buffer->data(), source, byteLength);
56 ArrayBuffer::ArrayBuffer(void* data, unsigned sizeInBytes) argument
58 , m_data(data)
62 void* ArrayBuffer::data() function in class:WebCore::ArrayBuffer
67 const void* ArrayBuffer::data() const function in class:WebCore::ArrayBuffer
[all...]
/external/webkit/Source/WebCore/loader/
H A DCachedMetadata.h41 // Serialized data is NOT portable across architectures. However, reading the
42 // data type ID will reject data generated with a different byte-order.
45 static PassRefPtr<CachedMetadata> create(unsigned dataTypeID, const char* data, size_t size) argument
47 return adoptRef(new CachedMetadata(dataTypeID, data, size));
50 static PassRefPtr<CachedMetadata> deserialize(const char* data, size_t size) argument
52 return adoptRef(new CachedMetadata(data, size));
67 const char* data() const function in class:WebCore::CachedMetadata
71 return m_serializedData.data() + dataStart;
87 return *reinterpret_cast_ptr<unsigned*>(const_cast<char*>(m_serializedData.data()
96 CachedMetadata(const char* data, size_t size) argument
104 CachedMetadata(unsigned dataTypeID, const char* data, size_t size) argument
[all...]
/external/webkit/Source/WebCore/loader/cf/
H A DResourceLoaderCFNet.cpp42 CFDataRef data = CFCachedURLResponseGetReceiverData(cachedResponse); local
43 return frameLoader()->client()->shouldCacheResponse(documentLoader(), identifier(), response, CFDataGetBytePtr(data), CFDataGetLength(data));
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dupnp_xml.h16 void xml_data_encode(struct wpabuf *buf, const char *data, int len);
18 const char *data);
22 struct wpabuf * xml_get_base64_item(const char *data, const char *name,
/external/wpa_supplicant_8/src/wps/
H A Dupnp_xml.h16 void xml_data_encode(struct wpabuf *buf, const char *data, int len);
18 const char *data);
22 struct wpabuf * xml_get_base64_item(const char *data, const char *name,
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dupnp_xml.h16 void xml_data_encode(struct wpabuf *buf, const char *data, int len);
18 const char *data);
22 struct wpabuf * xml_get_base64_item(const char *data, const char *name,
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_ttls.c71 struct eap_ttls_data *data; local
75 data = os_zalloc(sizeof(*data));
76 if (data == NULL)
78 data->ttls_version = EAP_TTLS_VERSION;
80 data->phase2_type = EAP_TTLS_PHASE2_EAP;
85 data->phase2_type = EAP_TTLS_PHASE2_EAP;
88 data->phase2_type = EAP_TTLS_PHASE2_MSCHAPV2;
91 data->phase2_type = EAP_TTLS_PHASE2_MSCHAP;
94 data
125 eap_ttls_phase2_eap_deinit(struct eap_sm *sm, struct eap_ttls_data *data) argument
138 struct eap_ttls_data *data = priv; local
175 eap_ttls_avp_add(u8 *start, u8 *avphdr, u32 avp_code, u32 vendor_id, int mandatory, const u8 *data, size_t len) argument
213 eap_ttls_v0_derive_key(struct eap_sm *sm, struct eap_ttls_data *data) argument
243 eap_ttls_implicit_challenge(struct eap_sm *sm, struct eap_ttls_data *data, size_t len) argument
250 eap_ttls_phase2_select_eap_method(struct eap_ttls_data *data, u8 method) argument
272 eap_ttls_phase2_eap_process(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, size_t len, struct wpabuf **resp) argument
298 eap_ttls_phase2_request_eap_method(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, size_t len, u8 method, struct wpabuf **resp) argument
370 eap_ttls_phase2_request_eap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, struct wpabuf **resp) argument
413 eap_ttls_phase2_request_mschapv2(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct wpabuf **resp) argument
513 eap_ttls_phase2_request_mschap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct wpabuf **resp) argument
595 eap_ttls_phase2_request_pap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct wpabuf **resp) argument
649 eap_ttls_phase2_request_chap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct wpabuf **resp) argument
725 eap_ttls_phase2_request(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, struct wpabuf **resp) argument
980 eap_ttls_encrypt_response(struct eap_sm *sm, struct eap_ttls_data *data, struct wpabuf *resp, u8 identifier, struct wpabuf **out_data) argument
1003 eap_ttls_process_phase2_eap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct ttls_parse_avp *parse, struct wpabuf **resp) argument
1059 eap_ttls_process_phase2_mschapv2(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct ttls_parse_avp *parse) argument
1121 eap_ttls_process_tnc_start(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct ttls_parse_avp *parse, struct wpabuf **resp) argument
1152 eap_ttls_process_decrypted(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct ttls_parse_avp *parse, struct wpabuf *in_decrypted, struct wpabuf **out_data) argument
1225 eap_ttls_implicit_identity_request(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct wpabuf **out_data) argument
1278 eap_ttls_phase2_start(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct wpabuf **out_data) argument
1308 eap_ttls_decrypt(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, const struct wpabuf *in_data, struct wpabuf **out_data) argument
1380 eap_ttls_process_handshake(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, const u8 *in_data, size_t in_len, struct wpabuf **out_data) argument
1434 eap_ttls_check_auth_status(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret) argument
1475 struct eap_ttls_data *data = priv; local
1522 struct eap_ttls_data *data = priv; local
1530 struct eap_ttls_data *data = priv; local
1542 struct eap_ttls_data *data = priv; local
1565 struct eap_ttls_data *data = priv; local
1607 struct eap_ttls_data *data = priv; local
1614 struct eap_ttls_data *data = priv; local
1633 struct eap_ttls_data *data = priv; local
[all...]
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_ttls.c71 struct eap_ttls_data *data; local
75 data = os_zalloc(sizeof(*data));
76 if (data == NULL)
78 data->ttls_version = EAP_TTLS_VERSION;
80 data->phase2_type = EAP_TTLS_PHASE2_EAP;
85 data->phase2_type = EAP_TTLS_PHASE2_EAP;
88 data->phase2_type = EAP_TTLS_PHASE2_MSCHAPV2;
91 data->phase2_type = EAP_TTLS_PHASE2_MSCHAP;
94 data
125 eap_ttls_phase2_eap_deinit(struct eap_sm *sm, struct eap_ttls_data *data) argument
138 struct eap_ttls_data *data = priv; local
175 eap_ttls_avp_add(u8 *start, u8 *avphdr, u32 avp_code, u32 vendor_id, int mandatory, const u8 *data, size_t len) argument
213 eap_ttls_v0_derive_key(struct eap_sm *sm, struct eap_ttls_data *data) argument
243 eap_ttls_implicit_challenge(struct eap_sm *sm, struct eap_ttls_data *data, size_t len) argument
250 eap_ttls_phase2_select_eap_method(struct eap_ttls_data *data, u8 method) argument
272 eap_ttls_phase2_eap_process(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, size_t len, struct wpabuf **resp) argument
298 eap_ttls_phase2_request_eap_method(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, size_t len, u8 method, struct wpabuf **resp) argument
370 eap_ttls_phase2_request_eap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, struct wpabuf **resp) argument
413 eap_ttls_phase2_request_mschapv2(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct wpabuf **resp) argument
513 eap_ttls_phase2_request_mschap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct wpabuf **resp) argument
595 eap_ttls_phase2_request_pap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct wpabuf **resp) argument
649 eap_ttls_phase2_request_chap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct wpabuf **resp) argument
725 eap_ttls_phase2_request(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, struct wpabuf **resp) argument
980 eap_ttls_encrypt_response(struct eap_sm *sm, struct eap_ttls_data *data, struct wpabuf *resp, u8 identifier, struct wpabuf **out_data) argument
1003 eap_ttls_process_phase2_eap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct ttls_parse_avp *parse, struct wpabuf **resp) argument
1059 eap_ttls_process_phase2_mschapv2(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct ttls_parse_avp *parse) argument
1121 eap_ttls_process_tnc_start(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct ttls_parse_avp *parse, struct wpabuf **resp) argument
1152 eap_ttls_process_decrypted(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct ttls_parse_avp *parse, struct wpabuf *in_decrypted, struct wpabuf **out_data) argument
1225 eap_ttls_implicit_identity_request(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct wpabuf **out_data) argument
1278 eap_ttls_phase2_start(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct wpabuf **out_data) argument
1308 eap_ttls_decrypt(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, const struct wpabuf *in_data, struct wpabuf **out_data) argument
1380 eap_ttls_process_handshake(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, const u8 *in_data, size_t in_len, struct wpabuf **out_data) argument
1434 eap_ttls_check_auth_status(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret) argument
1475 struct eap_ttls_data *data = priv; local
1522 struct eap_ttls_data *data = priv; local
1530 struct eap_ttls_data *data = priv; local
1542 struct eap_ttls_data *data = priv; local
1565 struct eap_ttls_data *data = priv; local
1607 struct eap_ttls_data *data = priv; local
1614 struct eap_ttls_data *data = priv; local
1633 struct eap_ttls_data *data = priv; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_ttls.c71 struct eap_ttls_data *data; local
75 data = os_zalloc(sizeof(*data));
76 if (data == NULL)
78 data->ttls_version = EAP_TTLS_VERSION;
80 data->phase2_type = EAP_TTLS_PHASE2_EAP;
85 data->phase2_type = EAP_TTLS_PHASE2_EAP;
88 data->phase2_type = EAP_TTLS_PHASE2_MSCHAPV2;
91 data->phase2_type = EAP_TTLS_PHASE2_MSCHAP;
94 data
125 eap_ttls_phase2_eap_deinit(struct eap_sm *sm, struct eap_ttls_data *data) argument
138 struct eap_ttls_data *data = priv; local
175 eap_ttls_avp_add(u8 *start, u8 *avphdr, u32 avp_code, u32 vendor_id, int mandatory, const u8 *data, size_t len) argument
213 eap_ttls_v0_derive_key(struct eap_sm *sm, struct eap_ttls_data *data) argument
243 eap_ttls_implicit_challenge(struct eap_sm *sm, struct eap_ttls_data *data, size_t len) argument
250 eap_ttls_phase2_select_eap_method(struct eap_ttls_data *data, u8 method) argument
272 eap_ttls_phase2_eap_process(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, size_t len, struct wpabuf **resp) argument
298 eap_ttls_phase2_request_eap_method(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, size_t len, u8 method, struct wpabuf **resp) argument
370 eap_ttls_phase2_request_eap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, struct wpabuf **resp) argument
413 eap_ttls_phase2_request_mschapv2(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct wpabuf **resp) argument
513 eap_ttls_phase2_request_mschap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct wpabuf **resp) argument
595 eap_ttls_phase2_request_pap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct wpabuf **resp) argument
649 eap_ttls_phase2_request_chap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct wpabuf **resp) argument
725 eap_ttls_phase2_request(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, struct wpabuf **resp) argument
980 eap_ttls_encrypt_response(struct eap_sm *sm, struct eap_ttls_data *data, struct wpabuf *resp, u8 identifier, struct wpabuf **out_data) argument
1003 eap_ttls_process_phase2_eap(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct ttls_parse_avp *parse, struct wpabuf **resp) argument
1059 eap_ttls_process_phase2_mschapv2(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct ttls_parse_avp *parse) argument
1121 eap_ttls_process_tnc_start(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, struct ttls_parse_avp *parse, struct wpabuf **resp) argument
1152 eap_ttls_process_decrypted(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct ttls_parse_avp *parse, struct wpabuf *in_decrypted, struct wpabuf **out_data) argument
1225 eap_ttls_implicit_identity_request(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct wpabuf **out_data) argument
1278 eap_ttls_phase2_start(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct wpabuf **out_data) argument
1308 eap_ttls_decrypt(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, const struct wpabuf *in_data, struct wpabuf **out_data) argument
1380 eap_ttls_process_handshake(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, const u8 *in_data, size_t in_len, struct wpabuf **out_data) argument
1434 eap_ttls_check_auth_status(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret) argument
1475 struct eap_ttls_data *data = priv; local
1522 struct eap_ttls_data *data = priv; local
1530 struct eap_ttls_data *data = priv; local
1542 struct eap_ttls_data *data = priv; local
1565 struct eap_ttls_data *data = priv; local
1607 struct eap_ttls_data *data = priv; local
1614 struct eap_ttls_data *data = priv; local
1633 struct eap_ttls_data *data = priv; local
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dbase64.h52 static void EncodeFromArray(const void* data, size_t len,
54 static bool DecodeFromArray(const char* data, size_t len, DecodeFlags flags,
56 static bool DecodeFromArray(const char* data, size_t len, DecodeFlags flags,
60 static inline std::string Encode(const std::string& data) { argument
62 EncodeFromArray(data.data(), data.size(), &result);
65 static inline std::string Decode(const std::string& data, DecodeFlags flags) { argument
67 DecodeFromArray(data.data(), dat
70 Decode(const std::string& data, DecodeFlags flags, std::string* result, size_t* data_used) argument
75 Decode(const std::string& data, DecodeFlags flags, std::vector<char>* result, size_t* data_used) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/commands/
H A DAdHocCommand.java47 * have to provide the data forms the user must complete in each stage and the
78 private AdHocCommandData data; field in class:AdHocCommand
82 data = new AdHocCommandData();
112 data.setName(name);
121 return data.getName();
131 data.setNode(node);
141 return data.getNode();
158 return data.getNotes();
170 data.addNote(note);
174 return data
324 setData(AdHocCommandData data) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_mschapv2.c22 /* followed by data */
60 struct eap_mschapv2_data *data; local
62 data = os_zalloc(sizeof(*data));
63 if (data == NULL)
65 data->state = CHALLENGE;
68 os_memcpy(data->auth_challenge, sm->auth_challenge,
70 data->auth_challenge_from_tls = 1;
74 data->peer_challenge = os_malloc(CHALLENGE_LEN);
75 if (data
89 struct eap_mschapv2_data *data = priv; local
98 eap_mschapv2_build_challenge( struct eap_sm *sm, struct eap_mschapv2_data *data, u8 id) argument
142 eap_mschapv2_build_success_req( struct eap_sm *sm, struct eap_mschapv2_data *data, u8 id) argument
186 eap_mschapv2_build_failure_req( struct eap_sm *sm, struct eap_mschapv2_data *data, u8 id) argument
222 struct eap_mschapv2_data *data = priv; local
243 struct eap_mschapv2_data *data = priv; local
282 eap_mschapv2_process_response(struct eap_sm *sm, struct eap_mschapv2_data *data, struct wpabuf *respData) argument
429 eap_mschapv2_process_success_resp(struct eap_sm *sm, struct eap_mschapv2_data *data, struct wpabuf *respData) argument
456 eap_mschapv2_process_failure_resp(struct eap_sm *sm, struct eap_mschapv2_data *data, struct wpabuf *respData) argument
486 struct eap_mschapv2_data *data = priv; local
514 struct eap_mschapv2_data *data = priv; local
521 struct eap_mschapv2_data *data = priv; local
543 struct eap_mschapv2_data *data = priv; local
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_mschapv2.c22 /* followed by data */
60 struct eap_mschapv2_data *data; local
62 data = os_zalloc(sizeof(*data));
63 if (data == NULL)
65 data->state = CHALLENGE;
68 os_memcpy(data->auth_challenge, sm->auth_challenge,
70 data->auth_challenge_from_tls = 1;
74 data->peer_challenge = os_malloc(CHALLENGE_LEN);
75 if (data
89 struct eap_mschapv2_data *data = priv; local
98 eap_mschapv2_build_challenge( struct eap_sm *sm, struct eap_mschapv2_data *data, u8 id) argument
142 eap_mschapv2_build_success_req( struct eap_sm *sm, struct eap_mschapv2_data *data, u8 id) argument
186 eap_mschapv2_build_failure_req( struct eap_sm *sm, struct eap_mschapv2_data *data, u8 id) argument
222 struct eap_mschapv2_data *data = priv; local
243 struct eap_mschapv2_data *data = priv; local
282 eap_mschapv2_process_response(struct eap_sm *sm, struct eap_mschapv2_data *data, struct wpabuf *respData) argument
429 eap_mschapv2_process_success_resp(struct eap_sm *sm, struct eap_mschapv2_data *data, struct wpabuf *respData) argument
456 eap_mschapv2_process_failure_resp(struct eap_sm *sm, struct eap_mschapv2_data *data, struct wpabuf *respData) argument
486 struct eap_mschapv2_data *data = priv; local
514 struct eap_mschapv2_data *data = priv; local
521 struct eap_mschapv2_data *data = priv; local
543 struct eap_mschapv2_data *data = priv; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_mschapv2.c22 /* followed by data */
60 struct eap_mschapv2_data *data; local
62 data = os_zalloc(sizeof(*data));
63 if (data == NULL)
65 data->state = CHALLENGE;
68 os_memcpy(data->auth_challenge, sm->auth_challenge,
70 data->auth_challenge_from_tls = 1;
74 data->peer_challenge = os_malloc(CHALLENGE_LEN);
75 if (data
89 struct eap_mschapv2_data *data = priv; local
98 eap_mschapv2_build_challenge( struct eap_sm *sm, struct eap_mschapv2_data *data, u8 id) argument
142 eap_mschapv2_build_success_req( struct eap_sm *sm, struct eap_mschapv2_data *data, u8 id) argument
186 eap_mschapv2_build_failure_req( struct eap_sm *sm, struct eap_mschapv2_data *data, u8 id) argument
222 struct eap_mschapv2_data *data = priv; local
243 struct eap_mschapv2_data *data = priv; local
282 eap_mschapv2_process_response(struct eap_sm *sm, struct eap_mschapv2_data *data, struct wpabuf *respData) argument
429 eap_mschapv2_process_success_resp(struct eap_sm *sm, struct eap_mschapv2_data *data, struct wpabuf *respData) argument
456 eap_mschapv2_process_failure_resp(struct eap_sm *sm, struct eap_mschapv2_data *data, struct wpabuf *respData) argument
486 struct eap_mschapv2_data *data = priv; local
514 struct eap_mschapv2_data *data = priv; local
521 struct eap_mschapv2_data *data = priv; local
543 struct eap_mschapv2_data *data = priv; local
[all...]
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
H A DCipherInputStreamTest.java37 public TestInputStream(byte[] data) { argument
38 super(data);
56 byte[] data = new byte[] { -127, -100, -50, -10, -1, 0, 1, 10, 50, 127 };
57 TestInputStream tis = new TestInputStream(data);
60 for (int i = 0; i < data.length; i++) {
61 if ((byte) cis.read() != data[i]) {
76 byte[] data = new byte[] { -127, -100, -50, -10, -1, 0, 1, 10, 50, 127 };
77 TestInputStream tis = new TestInputStream(data);
80 for (int i = 0; i < data.length; i++) {
81 if ((res = (byte) cis.read()) != data[
[all...]
/external/srec/srec/ca/
H A Dutt_basi.c73 if (hUtt->data.utt_type != 0)
76 init_utterance(&hUtt->data, LIVE_INPUT, 3*hFrontPar->mel_dim, /* TODO: change to proper function */
80 set_voicing_durations(&hUtt->data, hFrontPar->voice_duration / 2,
85 set_voicing_durations(&hUtt->data, hFrontPar->voice_duration,
102 if (hUtt->data.utt_type == 0)
107 if (hUtt->data.utt_type == LIVE_INPUT)
109 free_utterance(&hUtt->data);
110 hUtt->data.utt_type = 0;
129 if (hUtt->data.utt_type != LIVE_INPUT)
132 status_code = advance_utterance_frame(&hUtt->data);
[all...]
/external/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h27 length(length), data(new PBQPNum[length]) {
32 length(length), data(new PBQPNum[length]) {
33 std::fill(data, data + length, initVal);
38 length(v.length), data(new PBQPNum[length]) {
39 std::copy(v.data, v.data + length, data);
43 ~Vector() { delete[] data; }
47 delete[] data;
[all...]
/external/srec/srec/cfront/
H A Dsp_fft.c59 /* convert trigonomy function data to its required representation*/
107 /* determine the maximum number of bits required to represent the data */
108 static PINLINE int data_bits(const int length, fftdata data[]) argument
114 ASSERT(sizeof(data[0]) == 4);
118 d = data[i];
358 static PINLINE void four_point_fft1(fftdata* data) argument
362 r0 = data[0];
363 r1 = data[4];
364 data[0] = r0 + r1;
365 data[
406 two_point_fft1(fftdata* data) argument
422 comp_L_butterfly1(unsigned butteflyIndex, unsigned quarterLength, trigonomydata cc1, trigonomydata ss1, trigonomydata cc3, trigonomydata ss3, fftdata* data) argument
481 do_fft1(srfft* pthis, unsigned length2, fftdata* data) argument
586 do_real_fft(srfft* pthis, unsigned n, fftdata* data) argument
640 do_real_fft_magsq(srfft* pthis, unsigned n, fftdata* data) argument
[all...]

Completed in 3874 milliseconds

1234567891011>>