Searched defs:method (Results 1 - 25 of 965) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/minizip/
H A Dmztools.c56 unsigned int method = READ_16(header + 8); local
156 WRITE_16(header + 10, method);
H A Dunzip.c157 uLong compression_method; /* compression method (0==store) */
1472 extern int ZEXPORT unzOpenCurrentFile3 (unzFile file, int* method, argument
1518 if (method!=NULL)
1519 *method = (int)s->cur_file_info.compression_method;
1651 extern int ZEXPORT unzOpenCurrentFile2 (unzFile file, int* method, int* level, int raw) argument
1653 return unzOpenCurrentFile3(file, method, level, raw, NULL);
H A Dzip.c148 int method; /* compression method of file currenty wr.*/ member in struct:__anon34345
979 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.method,2);
1058 const char* comment, int method, int level, int raw,
1079 if ((method!=0) && (method!=Z_DEFLATED) && (method!=Z_BZIP2ED))
1082 if ((method!=0) && (method!=Z_DEFLATED))
1126 zi->ci.method
1055 zipOpenNewFileInZip4_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase, int zip64) argument
1265 zipOpenNewFileInZip4(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase) argument
1281 zipOpenNewFileInZip3(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting) argument
1296 zipOpenNewFileInZip3_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, int zip64) argument
1311 zipOpenNewFileInZip2(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw) argument
1324 zipOpenNewFileInZip2_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int zip64) argument
1337 zipOpenNewFileInZip64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void*extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int zip64) argument
1350 zipOpenNewFileInZip(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void*extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level) argument
[all...]
/external/zlib/src/
H A Ddeflate.h107 Byte method; /* can only be DEFLATED */ member in struct:internal_state
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dap_config.h120 u32 method; member in struct:hostapd_eap_user::__anon33529
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap.c12 * functions in this file. The method functions, m.func(), are similar to the
39 EapType method);
112 wpa_printf(MSG_DEBUG, "EAP: deinitialize previously used EAP method "
121 * eap_allowed_method - Check whether EAP method is allowed
124 * @method: EAP type
125 * Returns: 1 = allowed EAP method, 0 = not allowed
127 int eap_allowed_method(struct eap_sm *sm, int vendor, u32 method) argument
138 m[i].method != EAP_TYPE_NONE; i++) {
139 if (m[i].vendor == vendor && m[i].method == method)
248 EapType method; local
811 eap_sm_allowMethod(struct eap_sm *sm, int vendor, EapType method) argument
1020 enum { EAP_SM_SIM, EAP_SM_AKA, EAP_SM_AKA_PRIME } method = EAP_SM_SIM; local
1911 u32 method; local
[all...]
H A Deap.h22 u32 method; member in struct:eap_method_type
202 * An EAP method can perform a pending operation (e.g., to get a
234 * @parameter: Step-specific parameter, e.g., EAP method name
H A Deap_i.h36 * ignore - Whether method decided to drop the current packed (OUT)
51 * allowNotifications - Whether method allows notifications (OUT)
58 * struct eap_method - EAP method interface
59 * This structure defines the EAP method interface. Each method will need to
60 * register its own EAP type, EAP name, and set of function pointers for method
70 * method - EAP type number (EAP_TYPE_*)
72 EapType method; member in struct:eap_method
75 * name - Name of the method (e.g., "TLS")
80 * init - Initialize an EAP method
[all...]
H A Deap_methods.c23 * eap_peer_get_eap_method - Get EAP method based on type number
25 * @method: EAP type number
26 * Returns: Pointer to EAP method or %NULL if not found
28 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method) argument
32 if (m->vendor == vendor && m->method == method)
40 * eap_peer_get_type - Get EAP type for the given EAP method name
41 * @name: EAP method name, e.g., TLS
43 * Returns: EAP method type or %EAP_TYPE_NONE if not found
54 return m->method;
231 eap_peer_method_unload(struct eap_method *method) argument
279 eap_peer_method_alloc(int version, int vendor, EapType method, const char *name) argument
298 eap_peer_method_free(struct eap_method *method) argument
313 eap_peer_method_register(struct eap_method *method) argument
[all...]
H A Deap_methods.h14 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method);
18 EapType method, const char *name);
19 void eap_peer_method_free(struct eap_method *method);
20 int eap_peer_method_register(struct eap_method *method);
69 int eap_peer_method_unload(struct eap_method *method);
78 static inline int eap_peer_method_unload(struct eap_method *method) argument
85 /* EAP peer method registration calls for statically linked in methods */
H A Deap_tls_common.c231 * @eap_type: EAP method used in Phase 1 (EAP_TYPE_TLS/PEAP/TTLS/FAST)
364 * @eap_type: EAP method used in Phase 1 (EAP_TYPE_TLS/PEAP/TTLS/FAST)
369 * (client/server random and method type).
669 * tls_connection_established() returns 1, EAP method specific decrypting of
828 * for continuation of EAP method processing. The caller is responsible for
1014 * eap_peer_select_phase2_methods - Select phase 2 EAP method
1021 * This function is used to parse EAP method list and select allowed methods
1031 u8 method; local
1057 method = eap_get_phase2_type(start, &vendor);
1058 if (vendor == EAP_VENDOR_IETF && method
[all...]
H A Deap_ttls.c2 * EAP peer method: EAP-TTLS (RFC 5281)
112 data->phase2_eap_type.method = EAP_TYPE_NONE;
260 u8 method)
265 data->phase2_eap_types[i].method != method)
270 data->phase2_eap_type.method =
271 data->phase2_eap_types[i].method;
273 "Phase 2 EAP vendor %d method %d",
275 data->phase2_eap_type.method);
311 u8 method, struc
259 eap_ttls_phase2_select_eap_method(struct eap_ttls_data *data, u8 method) argument
307 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
[all...]
H A Dikev2.c522 u8 method, const u8 *auth, size_t auth_len)
524 if (method != AUTH_RSA_SIGN) {
526 "method %d", method);
536 u8 method, const u8 *auth,
542 if (method != AUTH_SHARED_KEY_MIC) {
544 "method %d", method);
521 ikev2_process_auth_cert(struct ikev2_responder_data *data, u8 method, const u8 *auth, size_t auth_len) argument
535 ikev2_process_auth_secret(struct ikev2_responder_data *data, u8 method, const u8 *auth, size_t auth_len) argument
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap.h27 u32 method; member in struct:eap_user::__anon33671
H A Deap_i.h19 * struct eap_method - EAP method interface
20 * This structure defines the EAP method interface. Each method will need to
21 * register its own EAP type, EAP name, and set of function pointers for method
26 EapType method; member in struct:eap_method
46 * free - Free EAP method data
47 * @method: Pointer to the method data registered with
50 * This function will be called when the EAP method is being
51 * unregistered. If the EAP method allocate
[all...]
H A Deap_server.c44 static Boolean eap_sm_Policy_doPickUp(struct eap_sm *sm, EapType method);
161 * Need to allow internal Identity method to be used instead
178 * This is not defined in RFC 4137, but method state needs to be
221 "initialize EAP method %d",
233 "method=%u", sm->currentMethod);
321 wpa_printf(MSG_DEBUG, "EAP: method not initialized");
387 "method %d", sm->currentMethod);
394 wpa_printf(MSG_DEBUG, "EAP: Could not find suitable EAP method");
395 eap_log_msg(sm, "Could not find suitable EAP method");
406 "vendor=%u method
1231 eap_sm_Policy_doPickUp(struct eap_sm *sm, EapType method) argument
[all...]
H A Deap_server_methods.c2 * EAP server method registration
20 * eap_server_get_eap_method - Get EAP method based on type number
22 * @method: EAP type number
23 * Returns: Pointer to EAP method or %NULL if not found
25 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method) argument
29 if (m->vendor == vendor && m->method == method)
37 * eap_server_get_type - Get EAP type for the given EAP method name
38 * @name: EAP method name, e.g., TLS
40 * Returns: EAP method typ
71 eap_server_method_alloc(int version, int vendor, EapType method, const char *name) argument
90 eap_server_method_free(struct eap_method *method) argument
105 eap_server_method_register(struct eap_method *method) argument
[all...]
H A Deap_sim_db.c978 * @method: EAP method (SIM/AKA/AKA')
987 enum eap_sim_db_method method)
991 switch (method) {
1010 * @method: EAP method (SIM/AKA/AKA')
1020 enum eap_sim_db_method method)
1024 switch (method) {
986 eap_sim_db_get_next_pseudonym(struct eap_sim_db_data *data, enum eap_sim_db_method method) argument
1019 eap_sim_db_get_next_reauth_id(struct eap_sim_db_data *data, enum eap_sim_db_method method) argument
H A Dikev2.c590 u8 method, const u8 *auth, size_t auth_len)
592 if (method != AUTH_RSA_SIGN) {
594 "method %d", method);
604 u8 method, const u8 *auth,
610 if (method != AUTH_SHARED_KEY_MIC) {
612 "method %d", method);
589 ikev2_process_auth_cert(struct ikev2_initiator_data *data, u8 method, const u8 *auth, size_t auth_len) argument
603 ikev2_process_auth_secret(struct ikev2_initiator_data *data, u8 method, const u8 *auth, size_t auth_len) argument
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p.c3574 const char * p2p_wps_method_text(enum p2p_wps_method method) argument
3576 switch (method) {
/external/wpa_supplicant_8/hs20/server/www/
H A Dest.php8 $method = $_SERVER["REQUEST_METHOD"]; variable
66 $A2 = md5($method . ':' . $data['uri']);
76 if ($method == "GET" && $cmd == "cacerts") {
90 } else if ($method == "GET" && $cmd == "csrattrs") {
95 } else if ($method == "POST" && $cmd == "simpleenroll") {
194 error_log("EST: Unexpected method or path");
195 die("Unexpected method or path");
/external/wpa_supplicant_8/src/ap/
H A Dap_config.h120 u32 method; member in struct:hostapd_eap_user::__anon33782
/external/wpa_supplicant_8/src/eap_peer/
H A Deap.c12 * functions in this file. The method functions, m.func(), are similar to the
39 EapType method);
112 wpa_printf(MSG_DEBUG, "EAP: deinitialize previously used EAP method "
121 * eap_allowed_method - Check whether EAP method is allowed
124 * @method: EAP type
125 * Returns: 1 = allowed EAP method, 0 = not allowed
127 int eap_allowed_method(struct eap_sm *sm, int vendor, u32 method) argument
138 m[i].method != EAP_TYPE_NONE; i++) {
139 if (m[i].vendor == vendor && m[i].method == method)
248 EapType method; local
811 eap_sm_allowMethod(struct eap_sm *sm, int vendor, EapType method) argument
1020 enum { EAP_SM_SIM, EAP_SM_AKA, EAP_SM_AKA_PRIME } method = EAP_SM_SIM; local
1911 u32 method; local
[all...]
H A Deap.h22 u32 method; member in struct:eap_method_type
202 * An EAP method can perform a pending operation (e.g., to get a
234 * @parameter: Step-specific parameter, e.g., EAP method name
H A Deap_i.h36 * ignore - Whether method decided to drop the current packed (OUT)
51 * allowNotifications - Whether method allows notifications (OUT)
58 * struct eap_method - EAP method interface
59 * This structure defines the EAP method interface. Each method will need to
60 * register its own EAP type, EAP name, and set of function pointers for method
70 * method - EAP type number (EAP_TYPE_*)
72 EapType method; member in struct:eap_method
75 * name - Name of the method (e.g., "TLS")
80 * init - Initialize an EAP method
[all...]

Completed in 242 milliseconds

1234567891011>>