Searched refs:method (Results 1 - 25 of 1813) sorted by last modified time

1234567891011>>

/external/zlib/src/as400/
H A Dzlib.inc311 D method 10I 0 value Compression method
/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 Dunzip.h116 uLong compression_method; /* compression method 2 bytes */
137 uLong compression_method; /* compression method 2 bytes */
346 int* method,
352 *method will receive method of compression, *level will receive level of
355 but you CANNOT set method parameter as NULL
359 int* method,
366 *method will receive method of compression, *level will receive level of
369 but you CANNOT set method paramete
[all...]
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...]
H A Dzip.h155 int method,
166 int method,
179 method contain the compression method (0 for store, Z_DEFLATED for deflate)
195 int method,
208 int method,
224 int method,
241 int method,
267 int method,
288 int method,
[all...]
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas114 function deflateInit2(var strm: z_stream; level, method, windowBits,
165 level, method, windowBits, memLevel, strategy: Integer;
232 function deflateInit2(var strm: z_stream; level, method, windowBits, memLevel,
235 Result := deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
/external/zlib/src/
H A Ddeflate.c213 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
217 int method;
271 if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
317 s->method = (Byte)method;
H A Ddeflate.h107 Byte method; /* can only be DEFLATED */ member in struct:internal_state
H A Dzlib.h50 This version of the library supports only one compression method (deflation)
73 directory information, and uses a different, slower check method than zlib.
206 /* The deflate compression method (the only one supported in this version) */
373 exact value depends on the compression method), inflateInit determines the
374 compression method from the zlib header and allocates all data structures
529 int method,
538 The method parameter is the compression method. It must be Z_DEFLATED in
581 method), or Z_VERSION_ERROR if the zlib library version (zlib_version) is
1637 ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method,
[all...]
/external/zlib/
H A Dzlib.h50 This version of the library supports only one compression method (deflation)
73 directory information, and uses a different, slower check method than zlib.
206 /* The deflate compression method (the only one supported in this version) */
373 exact value depends on the compression method), inflateInit determines the
374 compression method from the zlib header and allocates all data structures
529 int method,
538 The method parameter is the compression method. It must be Z_DEFLATED in
581 method), or Z_VERSION_ERROR if the zlib library version (zlib_version) is
1637 ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method,
[all...]
/external/wpa_supplicant_8/hostapd/
H A Dconfig_file.c323 wpa_printf(MSG_ERROR, "No EAP method on line %d in "
343 user->methods[num_methods].method =
349 user->methods[num_methods].method == EAP_TYPE_NONE)
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dap_config.h120 u32 method; member in struct:hostapd_eap_user::__anon33529
H A Dauthsrv.c69 user->methods[i].method = eap_user->methods[i].method;
H A Deap_user_db.c39 user->methods[num_methods].method =
43 user->methods[num_methods].method == EAP_TYPE_NONE) {
227 wsc_enrollee.methods[0].method = eap_server_get_type(
236 wsc_registrar.methods[0].method = eap_server_get_type(
H A Dieee802_1x.c1354 "for " MACSTR " - server method %u URL %s",
1876 user->methods[i].method = eap_user->methods[i].method;
/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_fast.c2 * EAP peer method: EAP-FAST (RFC 4851)
174 data->phase2_type.method = EAP_TYPE_NONE;
346 data->phase2_type.method);
381 data->phase2_type.method = EAP_TYPE_TNC;
383 "vendor %d method %d for TNC",
385 data->phase2_type.method);
392 data->phase2_types[i].method != type)
396 data->phase2_type.method = data->phase2_types[i].method;
398 "vendor %d method
[all...]
H A Deap_gtc.c2 * EAP peer method: EAP-GTC (RFC 3748)
28 sm->m->method == EAP_TYPE_FAST) {
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_peap.c2 * EAP peer method: EAP-PEAP (draft-josefsson-pppext-eap-tls-eap-10.txt)
161 data->phase2_type.method = EAP_TYPE_NONE;
663 data->phase2_type.method == EAP_TYPE_NONE) {
668 data->phase2_types[i].method != *pos)
673 data->phase2_type.method =
674 data->phase2_types[i].method;
676 "Phase 2 EAP vendor %d method %d",
678 data->phase2_type.method);
682 if (*pos != data->phase2_type.method ||
694 data->phase2_type.method);
[all...]
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...]

Completed in 215 milliseconds

1234567891011>>