Home
last modified time | relevance | path

Searched refs:method (Results 26 – 50 of 1241) sorted by relevance

12345678910>>...50

/freebsd/crypto/openssl/doc/man3/
H A DX509_LOOKUP_meth_new.pod30 void X509_LOOKUP_meth_free(X509_LOOKUP_METHOD *method);
32 int X509_LOOKUP_meth_set_new_item(X509_LOOKUP_METHOD *method,
37 int X509_LOOKUP_meth_set_free(X509_LOOKUP_METHOD *method,
42 int X509_LOOKUP_meth_set_init(X509_LOOKUP_METHOD *method,
47 int X509_LOOKUP_meth_set_shutdown(X509_LOOKUP_METHOD *method,
54 int X509_LOOKUP_meth_set_ctrl(X509_LOOKUP_METHOD *method,
65 const X509_LOOKUP_METHOD *method);
75 const X509_LOOKUP_METHOD *method);
85 const X509_LOOKUP_METHOD *method);
95 const X509_LOOKUP_METHOD *method);
[all …]
H A Ds2i_ASN1_IA5STRING.pod21 char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, ASN1_IA5STRING *ia5);
22 ASN1_IA5STRING *s2i_ASN1_IA5STRING(X509V3_EXT_METHOD *method,
24 char *i2s_ASN1_INTEGER(X509V3_EXT_METHOD *method, const ASN1_INTEGER *a);
25 ASN1_INTEGER *s2i_ASN1_INTEGER(X509V3_EXT_METHOD *method, const char *value);
26 char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method,
28 ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method,
30 char *i2s_ASN1_ENUMERATED(X509V3_EXT_METHOD *method, const ASN1_ENUMERATED *a);
31 char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *method,
34 char *i2s_ASN1_UTF8STRING(X509V3_EXT_METHOD *method,
36 ASN1_UTF8STRING *s2i_ASN1_UTF8STRING(X509V3_EXT_METHOD *method,
/freebsd/crypto/openssl/include/openssl/
H A Dui.h54 UI *UI_new_method(const UI_METHOD *method);
337 int UI_method_set_opener(UI_METHOD *method, int (*opener) (UI *ui));
338 int UI_method_set_writer(UI_METHOD *method,
341 int UI_method_set_reader(UI_METHOD *method,
344 int UI_method_set_data_duplicator(UI_METHOD *method,
347 int UI_method_set_prompt_constructor(UI_METHOD *method,
353 int UI_method_set_ex_data(UI_METHOD *method, int idx, void *data);
354 int (*UI_method_get_opener(const UI_METHOD *method)) (UI *);
356 int (*UI_method_get_flusher(const UI_METHOD *method)) (UI *);
358 int (*UI_method_get_closer(const UI_METHOD *method)) (UI *);
[all …]
/freebsd/crypto/openssl/crypto/bio/
H A Dbio_lib.c91 bio->method = method; in BIO_new_ex()
105 if (method->create != NULL && !method->create(bio)) { in BIO_new_ex()
147 if ((a->method != NULL) && (a->method->destroy != NULL)) in BIO_free()
255 return b->method->name; in BIO_method_name()
260 return b->method->type; in BIO_method_type()
277 if (b->method == NULL || b->method->bread == NULL) { in bio_read_intern()
348 if (b->method == NULL || b->method->bwrite == NULL) { in bio_write_intern()
410 if (b->method == NULL || b->method->bputs == NULL) { in BIO_puts()
459 if (b->method == NULL || b->method->bgets == NULL) { in BIO_gets()
569 if (b->method == NULL || b->method->ctrl == NULL) { in BIO_ctrl()
[all …]
/freebsd/crypto/openssl/crypto/x509/
H A Dv3_info.c19 *method, AUTHORITY_INFO_ACCESS
23 *method,
49 ASN1_SIMPLE(ACCESS_DESCRIPTION, method, ASN1_OBJECT),
62 X509V3_EXT_METHOD *method, AUTHORITY_INFO_ACCESS *ainfo,
75 tmp = i2v_GENERAL_NAME(method, desc->location, tret);
80 i2t_ASN1_OBJECT(objtmp, sizeof(objtmp), desc->method);
101 *method, in v2i_AUTHORITY_INFO_ACCESS() argument
131 if (!v2i_GENERAL_NAME_ex(acc->location, method, ctx, &ctmp, 0)) in v2i_AUTHORITY_INFO_ACCESS()
137 acc->method = OBJ_txt2obj(objtmp, 0); in v2i_AUTHORITY_INFO_ACCESS()
138 if (!acc->method) { in v2i_AUTHORITY_INFO_ACCESS()
[all …]
H A Dv3_conf.c82 const X509V3_EXT_METHOD *method; in do_ext_nconf() local
96 if (method->v2i) { in do_ext_nconf()
108 ext_struc = method->v2i(method, ctx, nval); in do_ext_nconf()
113 } else if (method->s2i) { in do_ext_nconf()
114 if ((ext_struc = method->s2i(method, ctx, value)) == NULL) in do_ext_nconf()
116 } else if (method->r2i) { in do_ext_nconf()
121 if ((ext_struc = method->r2i(method, ctx, value)) == NULL) in do_ext_nconf()
130 if (method->it) in do_ext_nconf()
133 method->ext_free(ext_struc); in do_ext_nconf()
147 if (method->it) { in do_ext_i2d()
[all …]
H A Dx509_lu.c27 ret->method = method; in X509_LOOKUP_new()
28 if (method->new_item != NULL && method->new_item(ret) == 0) { in X509_LOOKUP_new()
39 if ((ctx->method != NULL) && (ctx->method->free != NULL)) in X509_LOOKUP_free()
56 if (ctx->method == NULL) in X509_LOOKUP_init()
66 if (ctx->method == NULL) in X509_LOOKUP_shutdown()
77 if (ctx->method == NULL) in X509_LOOKUP_ctrl_ex()
97 || ctx->method == NULL in X509_LOOKUP_by_subject_ex()
119 if ((ctx->method == NULL) || (ctx->method->get_by_issuer_serial == NULL)) in X509_LOOKUP_by_issuer_serial()
128 if ((ctx->method == NULL) || (ctx->method->get_by_fingerprint == NULL)) in X509_LOOKUP_by_fingerprint()
136 if ((ctx->method == NULL) || (ctx->method->get_by_alias == NULL)) in X509_LOOKUP_by_alias()
[all …]
/freebsd/sys/dev/acpi_support/
H A Dacpi_hp.c179 int method; member
267 .method = ACPI_HP_METHOD_ALS,
284 .method = ACPI_HP_METHOD_DOCK,
561 acpi_hp_sysctls[i].method == in acpi_hp_attach()
563 acpi_hp_sysctls[i].method == in acpi_hp_attach()
565 acpi_hp_sysctls[i].method == in acpi_hp_attach()
567 acpi_hp_sysctls[i].method == in acpi_hp_attach()
643 int method; in acpi_hp_sysctl() local
649 method = acpi_hp_sysctls[function].method; in acpi_hp_sysctl()
671 switch (method) { in acpi_hp_sysctl_get()
[all …]
H A Dacpi_fujitsu.c176 int method; member
181 .method = METHOD_MUTE,
186 .method = METHOD_GMOU,
191 .method = METHOD_GBLL,
196 .method = METHOD_GBLS,
201 .method = METHOD_GVOL,
206 .method = METHOD_RVOL,
431 int method; in acpi_fujitsu_sysctl() local
437 method = sysctl_table[function_num].method; in acpi_fujitsu_sysctl()
464 switch (method) { in acpi_fujitsu_method_get()
[all …]
/freebsd/crypto/openssl/doc/internal/man3/
H A DOSSL_METHOD_STORE.pod11 - implementation method store and query
24 int nid, const char *properties, void *method,
28 int nid, const void *method);
31 void **method, const OSSL_PROVIDER **prov_rw);
66 ossl_method_store_new() create a new empty method store using the supplied
74 has a method from the same provider with the same I<nid> and I<properties>.
76 reference count of the method.
84 ossl_method_store_fetch() queries I<store> for a method identified by I<nid>
97 for a method identified by I<nid> that matches the property query
101 The result, if any, is returned in I<method>.
[all …]
/freebsd/contrib/ofed/libibmad/
H A Dbm.c45 static inline int response_expected(int method) in response_expected() argument
47 return method == IB_MAD_METHOD_GET || in response_expected()
48 method == IB_MAD_METHOD_SET || method == IB_MAD_METHOD_TRAP; in response_expected()
68 resp_expected = response_expected(call->method); in bm_call_via()
72 rpc.method = call->method; in bm_call_via()
87 rpc.method, rpc.attr.id, rpc.attr.mod, rpc.datasz, rpc.dataoffs, in bm_call_via()
H A Dvendor.c51 static inline int response_expected(int method) in response_expected() argument
53 return method == IB_MAD_METHOD_GET || in response_expected()
54 method == IB_MAD_METHOD_SET || method == IB_MAD_METHOD_TRAP; in response_expected()
80 resp_expected = response_expected(call->method); in ib_vendor_call_via()
84 rpc.method = call->method; in ib_vendor_call_via()
98 rpc.mgtclass, rpc.method, rpc.attr.id, rpc.attr.mod, rpc.datasz, in ib_vendor_call_via()
/freebsd/sys/contrib/device-tree/src/arm64/marvell/
H A Darmada-ap810-ap0-octa-core.dtsi20 enable-method = "psci";
26 enable-method = "psci";
32 enable-method = "psci";
38 enable-method = "psci";
44 enable-method = "psci";
50 enable-method = "psci";
56 enable-method = "psci";
62 enable-method = "psci";
/freebsd/crypto/openssl/crypto/
H A Dcore_fetch.c107 void *method = NULL; in ossl_method_construct_this() local
109 if ((method = data->mcm->construct(algo, provider, data->mcm_data)) in ossl_method_construct_this()
123 data->mcm->put(data->store, method, provider, algo->algorithm_names, in ossl_method_construct_this()
127 data->mcm->destruct(method, data->mcm_data); in ossl_method_construct_this()
134 void *method = NULL; in ossl_method_construct() local
163 method = mcm->get(cbdata.store, (const OSSL_PROVIDER **)provider_rw, in ossl_method_construct()
167 if (method == NULL) in ossl_method_construct()
168 method = mcm->get(NULL, (const OSSL_PROVIDER **)provider_rw, mcm_data); in ossl_method_construct()
170 return method; in ossl_method_construct()
/freebsd/stand/ficl/softwords/
H A Doo.fr27 \ access method
106 \ by parse-method) and attempts to look this method up in the method list of
123 : catch-method ( instance class c-addr u -- <method-signature> exc-flag )
124 lookup-method catch
127 : exec-method ( instance class c-addr u -- <method-signature> )
128 lookup-method execute
139 parse-method postpone exec-method
148 parse-method postpone catch-method
155 \ method next
156 \ method prev
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/hisilicon/
H A Dhip05.dtsi18 method = "smc";
88 enable-method = "psci";
96 enable-method = "psci";
104 enable-method = "psci";
112 enable-method = "psci";
120 enable-method = "psci";
128 enable-method = "psci";
136 enable-method = "psci";
144 enable-method = "psci";
152 enable-method = "psci";
[all …]
H A Dhip07.dtsi18 method = "smc";
271 enable-method = "psci";
280 enable-method = "psci";
289 enable-method = "psci";
298 enable-method = "psci";
307 enable-method = "psci";
316 enable-method = "psci";
325 enable-method = "psci";
334 enable-method = "psci";
343 enable-method = "psci";
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/arm/
H A Dfoundation-v8-psci.dtsi10 method = "smc";
15 enable-method = "psci";
19 enable-method = "psci";
23 enable-method = "psci";
27 enable-method = "psci";
/freebsd/contrib/ofed/libibumad/
H A Dumad_str.c88 static const char * umad_common_method_str(uint8_t method) in umad_common_method_str() argument
90 switch(method) { in umad_common_method_str()
112 static const char * umad_sa_method_str(uint8_t method) in umad_sa_method_str() argument
114 switch(method) { in umad_sa_method_str()
130 return (umad_common_method_str(method)); in umad_sa_method_str()
134 const char * umad_method_str(uint8_t mgmt_class, uint8_t method) in umad_method_str() argument
137 return(umad_sa_method_str(method)); in umad_method_str()
139 return (umad_common_method_str(method)); in umad_method_str()
/freebsd/sys/contrib/device-tree/src/arm64/mediatek/
H A Dmt6755.dtsi18 method = "smc";
28 enable-method = "psci";
35 enable-method = "psci";
42 enable-method = "psci";
49 enable-method = "psci";
56 enable-method = "psci";
63 enable-method = "psci";
70 enable-method = "psci";
77 enable-method = "psci";
/freebsd/contrib/ofed/infiniband-diags/src/
H A Dmcm_rereg_test.c84 rpc.method = method; in build_mcm_rec_umad()
102 build_mcm_rec_umad(umad, dport, method, comp_mask, data); in rereg_send()
105 (method == IB_MAD_METHOD_GET) ? "query" : "non query", in rereg_send()
109 dbg("umad_send %d: tid = 0x%016" PRIx64 "\n", method, in rereg_send()
212 unsigned n, method, status; in rereg_recv_all() local
229 method = mad_get_field(mad, 0, IB_MAD_METHOD_F); in rereg_recv_all()
233 dbg("MAD status %x, method %x\n", status, method); in rereg_recv_all()
248 ntohll(list[i].guid), method, status); in rereg_recv_all()
268 unsigned method, status; in rereg_query_all() local
296 method = mad_get_field(mad, 0, IB_MAD_METHOD_F); in rereg_query_all()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/arm/cpu-enable-method/
H A Dmarvell,berlin-smp2 Secondary CPU enable-method "marvell,berlin-smp" binding
5 This document describes the "marvell,berlin-smp" method for enabling secondary
6 CPUs. To apply to all CPUs, a single "marvell,berlin-smp" enable method should
9 Enable method name: "marvell,berlin-smp"
15 This enable method needs valid nodes compatible with "arm,cortex-a9-scu" and
23 enable-method = "marvell,berlin-smp";
/freebsd/sys/contrib/device-tree/Bindings/
H A Dnuma.txt178 enable-method = "psci";
186 enable-method = "psci";
193 enable-method = "psci";
200 enable-method = "psci";
207 enable-method = "psci";
214 enable-method = "psci";
221 enable-method = "psci";
228 enable-method = "psci";
235 enable-method = "psci";
243 enable-method = "psci";
[all …]
/freebsd/sys/contrib/device-tree/src/arm/qcom/
H A Dqcom-msm8916-smp.dtsi6 enable-method = "qcom,msm8916-smp";
9 enable-method = "qcom,msm8916-smp";
12 enable-method = "qcom,msm8916-smp";
15 enable-method = "qcom,msm8916-smp";
19 /delete-property/ entry-method;
/freebsd/sys/kern/
H A Ddevice_if.m79 * Users should not call this method directly. Normally, this
130 * in the driver's method list:
175 * in the driver's method list:
198 * in the driver's method list:
230 * in the driver's method list:
256 * in the driver's method list:
275 * the driver's method list:
297 * in the driver's method list:
323 * in the driver's method list:
346 * in the driver's method list:
[all …]

12345678910>>...50