Home
last modified time | relevance | path

Searched refs:method (Results 1 - 25 of 1801) sorted by relevance

12345678910>>...73

/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dx509_meth.c22 X509_LOOKUP_METHOD *method = OPENSSL_zalloc(sizeof(X509_LOOKUP_METHOD)); in X509_LOOKUP_meth_new() local
24 if (method != NULL) { in X509_LOOKUP_meth_new()
25 method->name = OPENSSL_strdup(name); in X509_LOOKUP_meth_new()
26 if (method->name == NULL) { in X509_LOOKUP_meth_new()
32 return method; in X509_LOOKUP_meth_new()
35 OPENSSL_free(method); in X509_LOOKUP_meth_new()
39 void X509_LOOKUP_meth_free(X509_LOOKUP_METHOD *method) in X509_LOOKUP_meth_free() argument
41 if (method != NULL) in X509_LOOKUP_meth_free()
42 OPENSSL_free(method->name); in X509_LOOKUP_meth_free()
43 OPENSSL_free(method); in X509_LOOKUP_meth_free()
46 X509_LOOKUP_meth_set_new_item(X509_LOOKUP_METHOD *method, int (*new_item) (X509_LOOKUP *ctx)) X509_LOOKUP_meth_set_new_item() argument
53 X509_LOOKUP_meth_get_new_item(const X509_LOOKUP_METHOD* method) X509_LOOKUP_meth_get_new_item() argument
59 X509_LOOKUP_meth_set_free( X509_LOOKUP_METHOD *method, void (*free_fn) (X509_LOOKUP *ctx)) X509_LOOKUP_meth_set_free() argument
67 X509_LOOKUP_meth_get_free(const X509_LOOKUP_METHOD* method) X509_LOOKUP_meth_get_free() argument
73 X509_LOOKUP_meth_set_init(X509_LOOKUP_METHOD *method, int (*init) (X509_LOOKUP *ctx)) X509_LOOKUP_meth_set_init() argument
80 X509_LOOKUP_meth_get_init(const X509_LOOKUP_METHOD* method) X509_LOOKUP_meth_get_init() argument
86 X509_LOOKUP_meth_set_shutdown( X509_LOOKUP_METHOD *method, int (*shutdown) (X509_LOOKUP *ctx)) X509_LOOKUP_meth_set_shutdown() argument
94 X509_LOOKUP_meth_get_shutdown(const X509_LOOKUP_METHOD* method) X509_LOOKUP_meth_get_shutdown() argument
100 X509_LOOKUP_meth_set_ctrl( X509_LOOKUP_METHOD *method, X509_LOOKUP_ctrl_fn ctrl) X509_LOOKUP_meth_set_ctrl() argument
108 X509_LOOKUP_meth_get_ctrl(const X509_LOOKUP_METHOD *method) X509_LOOKUP_meth_get_ctrl() argument
113 X509_LOOKUP_meth_set_get_by_subject(X509_LOOKUP_METHOD *method, X509_LOOKUP_get_by_subject_fn get_by_subject) X509_LOOKUP_meth_set_get_by_subject() argument
120 X509_LOOKUP_meth_get_get_by_subject( const X509_LOOKUP_METHOD *method) X509_LOOKUP_meth_get_get_by_subject() argument
127 X509_LOOKUP_meth_set_get_by_issuer_serial(X509_LOOKUP_METHOD *method, X509_LOOKUP_get_by_issuer_serial_fn get_by_issuer_serial) X509_LOOKUP_meth_set_get_by_issuer_serial() argument
135 X509_LOOKUP_meth_get_get_by_issuer_serial(const X509_LOOKUP_METHOD *method) X509_LOOKUP_meth_get_get_by_issuer_serial() argument
141 X509_LOOKUP_meth_set_get_by_fingerprint(X509_LOOKUP_METHOD *method, X509_LOOKUP_get_by_fingerprint_fn get_by_fingerprint) X509_LOOKUP_meth_set_get_by_fingerprint() argument
148 X509_LOOKUP_meth_get_get_by_fingerprint( const X509_LOOKUP_METHOD *method) X509_LOOKUP_meth_get_get_by_fingerprint() argument
154 X509_LOOKUP_meth_set_get_by_alias(X509_LOOKUP_METHOD *method, X509_LOOKUP_get_by_alias_fn get_by_alias) X509_LOOKUP_meth_set_get_by_alias() argument
161 X509_LOOKUP_meth_get_get_by_alias( const X509_LOOKUP_METHOD *method) X509_LOOKUP_meth_get_get_by_alias() argument
[all...]
/third_party/openssl/crypto/x509/
H A Dx509_meth.c22 X509_LOOKUP_METHOD *method = OPENSSL_zalloc(sizeof(X509_LOOKUP_METHOD)); in X509_LOOKUP_meth_new() local
24 if (method != NULL) { in X509_LOOKUP_meth_new()
25 method->name = OPENSSL_strdup(name); in X509_LOOKUP_meth_new()
26 if (method->name == NULL) { in X509_LOOKUP_meth_new()
32 return method; in X509_LOOKUP_meth_new()
35 OPENSSL_free(method); in X509_LOOKUP_meth_new()
39 void X509_LOOKUP_meth_free(X509_LOOKUP_METHOD *method) in X509_LOOKUP_meth_free() argument
41 if (method != NULL) in X509_LOOKUP_meth_free()
42 OPENSSL_free(method->name); in X509_LOOKUP_meth_free()
43 OPENSSL_free(method); in X509_LOOKUP_meth_free()
46 X509_LOOKUP_meth_set_new_item(X509_LOOKUP_METHOD *method, int (*new_item) (X509_LOOKUP *ctx)) X509_LOOKUP_meth_set_new_item() argument
53 X509_LOOKUP_meth_get_new_item(const X509_LOOKUP_METHOD* method) X509_LOOKUP_meth_get_new_item() argument
59 X509_LOOKUP_meth_set_free( X509_LOOKUP_METHOD *method, void (*free_fn) (X509_LOOKUP *ctx)) X509_LOOKUP_meth_set_free() argument
67 X509_LOOKUP_meth_get_free(const X509_LOOKUP_METHOD* method) X509_LOOKUP_meth_get_free() argument
73 X509_LOOKUP_meth_set_init(X509_LOOKUP_METHOD *method, int (*init) (X509_LOOKUP *ctx)) X509_LOOKUP_meth_set_init() argument
80 X509_LOOKUP_meth_get_init(const X509_LOOKUP_METHOD* method) X509_LOOKUP_meth_get_init() argument
86 X509_LOOKUP_meth_set_shutdown( X509_LOOKUP_METHOD *method, int (*shutdown) (X509_LOOKUP *ctx)) X509_LOOKUP_meth_set_shutdown() argument
94 X509_LOOKUP_meth_get_shutdown(const X509_LOOKUP_METHOD* method) X509_LOOKUP_meth_get_shutdown() argument
100 X509_LOOKUP_meth_set_ctrl( X509_LOOKUP_METHOD *method, X509_LOOKUP_ctrl_fn ctrl) X509_LOOKUP_meth_set_ctrl() argument
108 X509_LOOKUP_meth_get_ctrl(const X509_LOOKUP_METHOD *method) X509_LOOKUP_meth_get_ctrl() argument
113 X509_LOOKUP_meth_set_get_by_subject(X509_LOOKUP_METHOD *method, X509_LOOKUP_get_by_subject_fn get_by_subject) X509_LOOKUP_meth_set_get_by_subject() argument
120 X509_LOOKUP_meth_get_get_by_subject( const X509_LOOKUP_METHOD *method) X509_LOOKUP_meth_get_get_by_subject() argument
127 X509_LOOKUP_meth_set_get_by_issuer_serial(X509_LOOKUP_METHOD *method, X509_LOOKUP_get_by_issuer_serial_fn get_by_issuer_serial) X509_LOOKUP_meth_set_get_by_issuer_serial() argument
135 X509_LOOKUP_meth_get_get_by_issuer_serial(const X509_LOOKUP_METHOD *method) X509_LOOKUP_meth_get_get_by_issuer_serial() argument
141 X509_LOOKUP_meth_set_get_by_fingerprint(X509_LOOKUP_METHOD *method, X509_LOOKUP_get_by_fingerprint_fn get_by_fingerprint) X509_LOOKUP_meth_set_get_by_fingerprint() argument
148 X509_LOOKUP_meth_get_get_by_fingerprint( const X509_LOOKUP_METHOD *method) X509_LOOKUP_meth_get_get_by_fingerprint() argument
154 X509_LOOKUP_meth_set_get_by_alias(X509_LOOKUP_METHOD *method, X509_LOOKUP_get_by_alias_fn get_by_alias) X509_LOOKUP_meth_set_get_by_alias() argument
161 X509_LOOKUP_meth_get_get_by_alias( const X509_LOOKUP_METHOD *method) X509_LOOKUP_meth_get_get_by_alias() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DsuperInObjectLiterals_ES6.js4 method() {
7 method() {
8 super.method();
11 super.method();
15 super.method();
18 super.method();
21 super.method();
24 super.method();
29 method() { }
36 method() {
[all...]
H A DsuperInObjectLiterals_ES5.js4 method() {
7 method() {
8 super.method();
11 super.method();
15 super.method();
18 super.method();
21 super.method();
24 super.method();
29 method() { }
36 method() {
[all...]
H A DjsdocImplements_class.js4 method() { throw new Error(); }
8 method() { return 0 }
14 method() { return "" }
25 method() { return 11; }
29 method() { return 12; }
34 method() { return 13; }
40 method() {
49 method() {
60 method(): number;
64 method()
[all...]
H A DdestructuringParameterDeclaration8.js2 // explicit type annotation should cause `method` to have type 'x' | 'y'
5 method = 'z',
8 method?: 'x' | 'y',
12 method
17 test({ method: 'x', nested: { p: 'a' } })
18 test({ method: 'z', nested: { p: 'b' } })
19 test({ method: 'one', nested: { p: 'a' } })
23 // explicit type annotation should cause `method` to have type 'x' | 'y'
26 var _b = _a.method, method
[all...]
/third_party/node/test/parallel/
H A Dtest-zlib-convenience-methods.js50 for (const method of [
58 zlib[method[0]](expect, opts, common.mustCall((err, result) => {
59 zlib[method[1]](result, opts, common.mustCall((err, result) => {
61 `Should get original string after ${method[0]}/` +
62 `${method[1]} ${type} with options.`);
66 zlib[method[0]](expect, common.mustCall((err, result) => {
67 zlib[method[1]](result, common.mustCall((err, result) => {
69 `Should get original string after ${method[0]}/` +
70 `${method[1]} ${type} without options.`);
74 zlib[method[
[all...]
H A Dtest-console-methods.js43 function assertEqualName(method) {
45 assert.strictEqual(console[method].name, method);
47 assert.strictEqual(console[method].name, alternateNames[method]);
50 assert.strictEqual(newInstance[method].name, method);
52 assert.strictEqual(newInstance[method].name, alternateNames[method]);
56 for (const method o
[all...]
H A Dtest-zlib-bytes-read.js30 for (const method of [
40 const comp = zlib[method[0]]();
44 `Should get write size on ${method[0]} data.`);
48 `Should get write size on ${method[0]} end.`);
50 `Should get data size on ${method[0]} end.`);
56 const decomp = zlib[method[1]]();
60 `Should get write size on ${method[0]}/` +
61 `${method[1]} data.`);
65 `Should get compressed size on ${method[0]}/` +
66 `${method[
[all...]
/third_party/skia/tools/skiaserve/urlhandlers/
H A DUrlHandler.h18 virtual bool canHandle(const char* method, const char* url) = 0;
20 const char* url, const char* method,
26 bool canHandle(const char* method, const char* url) override;
28 const char* url, const char* method,
34 bool canHandle(const char* method, const char* url) override;
36 const char* url, const char* method,
42 bool canHandle(const char* method, const char* url) override;
44 const char* url, const char* method,
54 bool canHandle(const char* method, const char* url) override;
56 const char* url, const char* method,
[all...]
/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_service.cc140 const MethodDescriptor* method = descriptor_->method(i); in GenerateNewReflectiveServiceMethod() local
142 GenerateMethodSignature(printer, method, IS_CONCRETE); in GenerateNewReflectiveServiceMethod()
145 " impl.$method$(controller, request, done);\n" in GenerateNewReflectiveServiceMethod()
147 "method", UnderscoresToCamelCase(method)); in GenerateNewReflectiveServiceMethod()
179 const MethodDescriptor* method = descriptor_->method(i); in GenerateAbstractMethods() local
180 WriteMethodDocComment(printer, method); in GenerateAbstractMethods()
181 GenerateMethodSignature(printer, method, IS_ABSTRAC in GenerateAbstractMethods()
186 GetOutput( const MethodDescriptor* method) GetOutput() argument
210 const MethodDescriptor* method = descriptor_->method(i); GenerateCallMethod() local
257 const MethodDescriptor* method = descriptor_->method(i); GenerateCallBlockingMethod() local
302 const MethodDescriptor* method = descriptor_->method(i); GenerateGetPrototype() local
352 const MethodDescriptor* method = descriptor_->method(i); GenerateStub() local
394 const MethodDescriptor* method = descriptor_->method(i); GenerateBlockingStub() local
417 const MethodDescriptor* method = descriptor_->method(i); GenerateBlockingStub() local
442 GenerateMethodSignature( io::Printer* printer, const MethodDescriptor* method, IsAbstract is_abstract) GenerateMethodSignature() argument
457 GenerateBlockingMethodSignature( io::Printer* printer, const MethodDescriptor* method) GenerateBlockingMethodSignature() argument
[all...]
/third_party/skia/third_party/externals/dawn/generator/templates/
H A Dmock_webgpu.h25 // are directly represented by a delete virtual method but others need minimal state tracking to be
42 {% for method in type.methods if not has_callback_arguments(method) %}
43 virtual {{as_cType(method.return_type.name)}} {{as_MethodSuffix(type.name, method.name)}}(
45 {%- for arg in method.arguments -%}
54 {% for method in type.methods if has_callback_arguments(method) %}
55 {% set Suffix = as_MethodSuffix(type.name, method.name) %}
56 //* Stores callback and userdata and calls the On* method
[all...]
H A Dmock_webgpu.cpp21 {% for method in c_methods(type) %}
22 {{as_cType(method.return_type.name)}} Forward{{as_MethodSuffix(type.name, method.name)}}(
24 {%- for arg in method.arguments -%}
29 return object->procs->{{as_MethodSuffix(type.name, method.name)}}(self
30 {%- for arg in method.arguments -%}
47 {% for method in c_methods(type) %} in GetProcTableAndDevice()
48 table->{{as_varName(type.name, method.name)}} = reinterpret_cast<{{as_cProc(type.name, method.name)}}>(Forward{{as_MethodSuffix(type.name, method in GetProcTableAndDevice()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/
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) in eap_server_get_eap_method() argument
29 if (m->vendor == vendor && m->method == method) in eap_server_get_eap_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) eap_server_method_alloc() argument
90 eap_server_method_free(struct eap_method *method) eap_server_method_free() argument
106 eap_server_method_register(struct eap_method *method) eap_server_method_register() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/
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
26 enum eap_type method) in eap_server_get_eap_method()
30 if (m->vendor == vendor && m->method == method) in eap_server_get_eap_method()
38 * eap_server_get_type - Get EAP type for the given EAP method name
39 * @name: EAP method name, e.g., TLS
41 * Returns: EAP method typ
25 eap_server_get_eap_method(int vendor, enum eap_type method) eap_server_get_eap_method() argument
72 eap_server_method_alloc(int version, int vendor, enum eap_type method, const char *name) eap_server_method_alloc() argument
92 eap_server_method_free(struct eap_method *method) eap_server_method_free() argument
108 eap_server_method_register(struct eap_method *method) eap_server_method_register() argument
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DReflectionUtil.cs43 /// delegate from the MethodInfo, and then calling that within an anonymous method.
78 /// Creates a delegate which will cast the argument to the type that declares the method,
79 /// call the method on it, then convert the result to object.
81 /// <param name="method">The method to create a delegate for, which must be declared in an IMessage
83 internal static Func<IMessage, object> CreateFuncIMessageObject(MethodInfo method) => field in Google.Protobuf.Reflection.ReflectionUtil
84 GetReflectionHelper(method.DeclaringType, method.ReturnType).CreateFuncIMessageObject(method);
87 /// Creates a delegate which will cast the argument to the type that declares the method,
94 internal static Func<IMessage, int> CreateFuncIMessageInt32(MethodInfo method) => global() field in Google.Protobuf.Reflection.ReflectionUtil
103 internal static Action<IMessage, object> CreateActionIMessageObject(MethodInfo method) => global() field in Google.Protobuf.Reflection.ReflectionUtil
112 internal static Action<IMessage> CreateActionIMessage(MethodInfo method) => global() field in Google.Protobuf.Reflection.ReflectionUtil
115 internal static Func<IMessage, bool> CreateFuncIMessageBool(MethodInfo method) => global() field in Google.Protobuf.Reflection.ReflectionUtil
141 CreateFuncIMessageInt32(MethodInfo method) CreateFuncIMessageInt32() argument
142 CreateActionIMessage(MethodInfo method) CreateActionIMessage() argument
143 CreateFuncIMessageObject(MethodInfo method) CreateFuncIMessageObject() argument
144 CreateActionIMessageObject(MethodInfo method) CreateActionIMessageObject() argument
145 CreateFuncIMessageBool(MethodInfo method) CreateFuncIMessageBool() argument
164 CreateFuncIMessageInt32(MethodInfo method) CreateFuncIMessageInt32() argument
183 CreateActionIMessage(MethodInfo method) CreateActionIMessage() argument
189 CreateFuncIMessageObject(MethodInfo method) CreateFuncIMessageObject() argument
195 CreateActionIMessageObject(MethodInfo method) CreateActionIMessageObject() argument
201 CreateFuncIMessageBool(MethodInfo method) CreateFuncIMessageBool() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DTextureFunctionHLSL.cpp129 textureFunction.method == TextureFunctionHLSL::TextureFunction::FETCH) in OutputHLSL4SampleFunctionPrefix()
137 switch (textureFunction.method) in OutputHLSL4SampleFunctionPrefix()
155 switch (textureFunction.method) in OutputHLSL4SampleFunctionPrefix()
186 textureFunction.method != TextureFunctionHLSL::TextureFunction::GATHER) || in GetSamplerCoordinateTypeString()
187 textureFunction.method == TextureFunctionHLSL::TextureFunction::FETCH) in GetSamplerCoordinateTypeString()
251 switch (textureFunction.method) in GetHLSLCoordCount()
315 if (textureFunction.method == in OutputTextureFunctionArgumentList()
353 if (textureFunction.method == TextureFunctionHLSL::TextureFunction::GRAD) in OutputTextureFunctionArgumentList()
383 switch (textureFunction.method) in OutputTextureFunctionArgumentList()
413 if (textureFunction.method in OutputTextureFunctionArgumentList()
[all...]
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Djddctmgr.c39 * The multiplier table contents are IDCT-method-dependent. To support
40 * application changes in IDCT method between scans, we can remake the
54 /* This array contains the IDCT method code that each multiplier table
102 int method = 0; in start_pass() local
113 method = JDCT_ISLOW; /* jidctred uses islow-style table */ in start_pass()
120 method = JDCT_ISLOW; /* jidctred uses islow-style table */ in start_pass()
124 method = JDCT_ISLOW; /* jidctint uses islow-style table */ in start_pass()
131 method = JDCT_ISLOW; /* jidctred uses islow-style table */ in start_pass()
135 method = JDCT_ISLOW; /* jidctint uses islow-style table */ in start_pass()
144 method in start_pass()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/
H A Deap_methods.c21 static void eap_peer_method_free(struct eap_method *method);
25 * eap_peer_get_eap_method - Get EAP method based on type number
27 * @method: EAP type number
28 * Returns: Pointer to EAP method or %NULL if not found
30 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method) in eap_peer_get_eap_method() argument
34 if (m->vendor == vendor && m->method == method) in eap_peer_get_eap_method()
42 * eap_peer_get_type - Get EAP type for the given EAP method name
43 * @name: EAP method name, e.g., TLS
45 * Returns: EAP method typ
233 eap_peer_method_unload(struct eap_method *method) eap_peer_method_unload() argument
281 eap_peer_method_alloc(int version, int vendor, EapType method, const char *name) eap_peer_method_alloc() argument
300 eap_peer_method_free(struct eap_method *method) eap_peer_method_free() argument
316 eap_peer_method_register(struct eap_method *method) eap_peer_method_register() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/
H A Deap_methods.c21 static void eap_peer_method_free(struct eap_method *method);
25 * eap_peer_get_eap_method - Get EAP method based on type number
27 * @method: EAP type number
28 * Returns: Pointer to EAP method or %NULL if not found
31 enum eap_type method) in eap_peer_get_eap_method()
35 if (m->vendor == vendor && m->method == method) in eap_peer_get_eap_method()
43 * eap_peer_get_type - Get EAP type for the given EAP method name
44 * @name: EAP method name, e.g., TLS
46 * Returns: EAP method typ
30 eap_peer_get_eap_method(int vendor, enum eap_type method) eap_peer_get_eap_method() argument
234 eap_peer_method_unload(struct eap_method *method) eap_peer_method_unload() argument
282 eap_peer_method_alloc(int version, int vendor, enum eap_type method, const char *name) eap_peer_method_alloc() argument
302 eap_peer_method_free(struct eap_method *method) eap_peer_method_free() argument
318 eap_peer_method_register(struct eap_method *method) eap_peer_method_register() argument
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcordz_update_tracker_test.cc64 for (Method method : AllMethods()) { in TEST()
65 ASSERT_THAT(tracker.Value(method), Eq(0)); in TEST()
72 for (Method method : AllMethods()) { in TEST()
73 tracker.LossyAdd(method, n); in TEST()
74 EXPECT_THAT(tracker.Value(method), Eq(n)); in TEST()
82 for (Method method : AllMethods()) { in TEST()
83 src.LossyAdd(method, n); in TEST()
89 for (Method method : AllMethods()) { in TEST()
90 EXPECT_THAT(tracker.Value(method), Eq(n)); in TEST()
99 for (Method method in TEST()
[all...]
/third_party/node/deps/openssl/openssl/crypto/property/
H A Dproperty.c35 void *method; member
43 METHOD method; member
51 METHOD method; member
167 static int ossl_method_up_ref(METHOD *method) in ossl_method_up_ref() argument
169 return (*method->up_ref)(method->method); in ossl_method_up_ref()
172 static void ossl_method_free(METHOD *method) in ossl_method_free() argument
174 (*method->free)(method in ossl_method_free()
297 ossl_method_store_add(OSSL_METHOD_STORE *store, const OSSL_PROVIDER *prov, int nid, const char *properties, void *method, int (*method_up_ref)(void *), void (*method_destruct)(void *)) ossl_method_store_add() argument
379 ossl_method_store_remove(OSSL_METHOD_STORE *store, int nid, const void *method) ossl_method_store_remove() argument
465 alg_do_one(ALGORITHM *alg, IMPLEMENTATION *impl, void (*fn)(int id, void *method, void *fnarg), void *fnarg) alg_do_one() argument
489 ossl_method_store_do_all(OSSL_METHOD_STORE *store, void (*fn)(int id, void *method, void *fnarg), void *fnarg) ossl_method_store_do_all() argument
501 ossl_method_store_fetch(OSSL_METHOD_STORE *store, int nid, const char *prop_query, const OSSL_PROVIDER **prov_rw, void **method) ossl_method_store_fetch() argument
680 ossl_method_store_cache_get(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov, int nid, const char *prop_query, void **method) ossl_method_store_cache_get() argument
710 ossl_method_store_cache_set(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov, int nid, const char *prop_query, void *method, int (*method_up_ref)(void *), void (*method_destruct)(void *)) ossl_method_store_cache_set() argument
[all...]
/third_party/python/Lib/test/
H A Dtest_crypt.py40 for method in crypt.methods:
41 salt = crypt.mksalt(method)
42 self.assertIn(len(salt) - method.salt_chars, {0, 1, 3, 4, 6, 7})
43 if method.ident:
44 self.assertIn(method.ident, salt[:len(salt)-method.salt_chars])
47 for method in crypt.methods:
48 cr = crypt.crypt('assword', method)
49 self.assertEqual(len(cr), method.total_size)
52 cr = crypt.crypt('assword', crypt.mksalt(method))
[all...]
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_service.cc47 void InitMethodVariables(const MethodDescriptor* method, const Options& options, in InitMethodVariables() argument
49 format->Set("name", method->name()); in InitMethodVariables()
50 format->Set("input_type", QualifiedClassName(method->input_type(), options)); in InitMethodVariables()
52 QualifiedClassName(method->output_type(), options)); in InitMethodVariables()
103 "void CallMethod(const ::$proto_ns$::MethodDescriptor* method,\n" in GenerateInterface()
109 " const ::$proto_ns$::MethodDescriptor* method) const;\n" in GenerateInterface()
111 " const ::$proto_ns$::MethodDescriptor* method) const;\n"); in GenerateInterface()
156 const MethodDescriptor* method = descriptor_->method(i); in GenerateMethodSignatures() local
158 InitMethodVariables(method, options in GenerateMethodSignatures()
214 const MethodDescriptor* method = descriptor_->method(i); GenerateNotImplementedMethods() local
243 const MethodDescriptor* method = descriptor_->method(i); GenerateCallMethod() local
285 const MethodDescriptor* method = descriptor_->method(i); GenerateGetPrototype() local
308 const MethodDescriptor* method = descriptor_->method(i); GenerateStubMethods() local
[all...]
/third_party/openssl/crypto/property/
H A Dproperty.c35 void *method; member
43 METHOD method; member
51 METHOD method; member
169 static int ossl_method_up_ref(METHOD *method) in ossl_method_up_ref() argument
171 return (*method->up_ref)(method->method); in ossl_method_up_ref()
174 static void ossl_method_free(METHOD *method) in ossl_method_free() argument
176 (*method->free)(method in ossl_method_free()
299 ossl_method_store_add(OSSL_METHOD_STORE *store, const OSSL_PROVIDER *prov, int nid, const char *properties, void *method, int (*method_up_ref)(void *), void (*method_destruct)(void *)) ossl_method_store_add() argument
381 ossl_method_store_remove(OSSL_METHOD_STORE *store, int nid, const void *method) ossl_method_store_remove() argument
467 alg_do_one(ALGORITHM *alg, IMPLEMENTATION *impl, void (*fn)(int id, void *method, void *fnarg), void *fnarg) alg_do_one() argument
481 ossl_method_store_do_all(OSSL_METHOD_STORE *store, void (*fn)(int id, void *method, void *fnarg), void *fnarg) ossl_method_store_do_all() argument
515 ossl_method_store_fetch(OSSL_METHOD_STORE *store, int nid, const char *prop_query, const OSSL_PROVIDER **prov_rw, void **method) ossl_method_store_fetch() argument
694 ossl_method_store_cache_get(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov, int nid, const char *prop_query, void **method) ossl_method_store_cache_get() argument
724 ossl_method_store_cache_set(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov, int nid, const char *prop_query, void *method, int (*method_up_ref)(void *), void (*method_destruct)(void *)) ossl_method_store_cache_set() argument
[all...]

Completed in 10 milliseconds

12345678910>>...73