| /freebsd/crypto/openssl/crypto/x509/ |
| H A D | x509_meth.c | 22 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() 30 return method; in X509_LOOKUP_meth_new() 33 OPENSSL_free(method); in X509_LOOKUP_meth_new() 37 void X509_LOOKUP_meth_free(X509_LOOKUP_METHOD *method) in X509_LOOKUP_meth_free() argument 39 if (method != NULL) in X509_LOOKUP_meth_free() 40 OPENSSL_free(method->name); in X509_LOOKUP_meth_free() 41 OPENSSL_free(method); in X509_LOOKUP_meth_free() [all …]
|
| /freebsd/contrib/wpa/src/eap_server/ |
| H A D | eap_server_methods.c | 2 * 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() argument 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 type or %EAP_TYPE_NONE if not found 52 return m->method; in eap_server_get_type() [all …]
|
| H A D | eap_i.h | 19 * 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 enum eap_type method; member 45 * free - Free EAP method data 46 * @method: Pointer to the method data registered with 49 * This function will be called when the EAP method is being 50 * unregistered. If the EAP method allocated resources during 52 * freed in this function. No other method functions will be called 54 * pointer is %NULL), a default handler is used to release the method [all …]
|
| /freebsd/sys/net/ |
| H A D | ifdi_if.m | 132 METHOD int attach_pre { 136 METHOD int attach_post { 140 METHOD int reinit_pre { 144 METHOD int reinit_post { 148 METHOD int detach { 152 METHOD int suspend { 156 METHOD int shutdown { 160 METHOD int resume { 169 METHOD int tx_queues_alloc { 177 METHOD int rx_queues_alloc { [all …]
|
| /freebsd/contrib/wpa/src/eap_peer/ |
| H A D | eap_methods.c | 2 * EAP peer: Method registration 21 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() argument 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 type or %EAP_TYPE_NONE if not found [all …]
|
| H A D | eap_i.h | 39 * ignore - Whether method decided to drop the current packed (OUT) 44 * methodState - Method-specific state (IN/OUT) 54 * allowNotifications - Whether method allows notifications (OUT) 61 * struct eap_method - EAP method interface 62 * This structure defines the EAP method interface. Each method will need to 63 * register its own EAP type, EAP name, and set of function pointers for method 73 * method - EAP type number (EAP_TYPE_*) 75 enum eap_type method; member 78 * name - Name of the method (e.g., "TLS") 83 * init - Initialize an EAP method [all …]
|
| /freebsd/sys/contrib/dev/acpica/components/dispatcher/ |
| H A D | dsmethod.c | 3 * Module Name: dsmethod - Parser/Interpreter interface - control method parsing 181 * PARAMETERS: Node - Namespace Node of the method 182 * ObjDesc - Method object attached to node 186 * DESCRIPTION: Parse a control method AML to scan for control methods that 190 * there is only a problem if the method actually blocks during execution. 193 * detect whether a method will block or not, so we simply mark all suspicious 197 * control method. 215 "Method auto-serialization parse [%4.4s] %p\n", in AcpiDsAutoSerializeMethod() 218 /* Create/Init a root op for the method parse tree */ in AcpiDsAutoSerializeMethod() 220 Op = AcpiPsAllocOp (AML_METHOD_OP, ObjDesc->Method.AmlStart); in AcpiDsAutoSerializeMethod() [all …]
|
| /freebsd/sys/dev/ntb/ |
| H A D | ntb_if.m | 63 METHOD int port_number { 67 METHOD int peer_port_count { 71 METHOD int peer_port_number { 76 METHOD int peer_port_idx { 81 METHOD bool link_is_up { 87 METHOD int link_enable { 93 METHOD int link_disable { 97 METHOD bool link_enabled { 101 METHOD int set_ctx { 107 METHOD void * get_ctx { [all …]
|
| /freebsd/sys/dev/pci/ |
| H A D | pci_if.m | 71 METHOD u_int32_t read_config { 78 METHOD void write_config { 86 METHOD int get_powerstate { 91 METHOD int set_powerstate { 97 METHOD int get_vpd_ident { 103 METHOD int get_vpd_readonly { 110 METHOD int enable_busmaster { 115 METHOD int disable_busmaster { 120 METHOD int enable_io { 126 METHOD int disable_io { [all …]
|
| /freebsd/contrib/llvm-project/lldb/tools/lldb-rpc/lldb-rpc-gen/server/ |
| H A D | RPCServerSourceEmitter.cpp | 33 void RPCServerSourceEmitter::EmitMethod(const Method &method) { in EmitMethod() argument 34 if (method.ContainsFunctionPointerParameter) in EmitMethod() 35 EmitCallbackFunction(method); in EmitMethod() 37 EmitCommentHeader(method); in EmitMethod() 38 EmitFunctionHeader(method); in EmitMethod() 39 EmitFunctionBody(method); in EmitMethod() 43 void RPCServerSourceEmitter::EmitCommentHeader(const Method &method) { in EmitCommentHeader() argument 47 CommentStream << "// " << method.QualifiedName << "(" in EmitCommentHeader() 48 << method.CreateParamListAsString(eServer) << ")"; in EmitCommentHeader() 49 if (method.IsConst) in EmitCommentHeader() [all …]
|
| H A D | RPCServerSourceEmitter.h | 30 /// Given a Method, emits a server-side implementation of the method 32 void EmitMethod(const Method &method); 35 void EmitCommentHeader(const Method &method); 37 void EmitFunctionHeader(const Method &method); 39 void EmitFunctionBody(const Method &method); 43 void EmitStorageForParameters(const Method &method); 50 void EmitDecodeForParameters(const Method &method); 56 std::string CreateMethodCall(const Method &method); 63 void EmitMethodCallAndEncode(const Method &method); 65 void EmitCallbackFunction(const Method &method);
|
| /freebsd/sys/contrib/device-tree/src/arm64/cavium/ |
| H A D | thunder-88xx.dtsi | 58 method = "smc"; 69 enable-method = "psci"; 75 enable-method = "psci"; 81 enable-method = "psci"; 87 enable-method = "psci"; 93 enable-method = "psci"; 99 enable-method = "psci"; 105 enable-method = "psci"; 111 enable-method = "psci"; 117 enable-method = "psci"; [all …]
|
| /freebsd/sys/dev/uart/ |
| H A D | uart_if.m | 53 # This method is called when the device is being attached. All resources 56 # The intend of this method is to setup the hardware for normal operation. 57 METHOD int attach { 62 # This method is called when a device is being detached from its bus. It 65 # The intend of this method is to disable the hardware. 66 METHOD int detach { 71 # This method is called to flush the transmitter and/or the receiver as 73 METHOD int flush { 79 # This method retrieves the DTE and DCE signals and their corresponding 85 METHOD int getsig { [all …]
|
| /freebsd/crypto/openssl/crypto/property/ |
| H A D | property.c | 37 void *method; member 40 } METHOD; typedef 45 METHOD method; member 53 METHOD method; member 162 static int ossl_method_up_ref(METHOD *method) in ossl_method_up_ref() argument 164 return (*method->up_ref)(method->method); in ossl_method_up_ref() 167 static void ossl_method_free(METHOD *method) in ossl_method_free() argument 169 (*method->free)(method->method); in ossl_method_free() 206 ossl_method_free(&impl->method); in impl_free() 214 ossl_method_free(&elem->method); in impl_cache_free() [all …]
|
| /freebsd/crypto/openssl/doc/internal/man3/ |
| H A D | ossl_method_construct.pod | 6 - generic method constructor 15 /* Get an already existing method from a store */ 17 /* Store a method in a store */ 18 int (*put)(void *store, void *method, const OSSL_PROVIDER *prov, 20 /* Construct a new method */ 23 /* Destruct a method */ 24 void (*destruct)(void *method, void *data); 40 It's important to keep in mind that a method is identified by three things: 54 ossl_method_construct() creates a method by asking all available 57 method creator through I<mcm> and the data in I<mcm_data> (which is [all …]
|
| /freebsd/stand/ficl/softwords/ |
| H A D | oo.fr | 27 \ access method 37 \ The NEW method creates and initializes an instance of a class. 52 \ has an extra field for the vtable method count. Hasvtable declares 55 \ Revised Nov 2001 - metaclass debug method now finds only metaclass methods 59 \ END-CLASS allocates and clears the vtable - then it walks class's method 60 \ list and inserts all new methods into table. For each method, if the table 61 \ slot is already nonzero, do nothing (overridden method). Otherwise fill 70 \ : is redefined to check for override, fill in vtable index, increment method 84 \ Compile the method name, and code to find and 89 \ compiles a method name so that it pushes [all …]
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | UI_create_method.pod | 14 interface method creation and destruction 24 int UI_method_set_opener(UI_METHOD *method, int (*opener) (UI *ui)); 25 int UI_method_set_writer(UI_METHOD *method, 27 int UI_method_set_flusher(UI_METHOD *method, int (*flusher) (UI *ui)); 28 int UI_method_set_reader(UI_METHOD *method, 30 int UI_method_set_closer(UI_METHOD *method, int (*closer) (UI *ui)); 31 int UI_method_set_data_duplicator(UI_METHOD *method, 34 int UI_method_set_prompt_constructor(UI_METHOD *method, 40 int UI_method_set_ex_data(UI_METHOD *method, int idx, void *data); 41 int (*UI_method_get_opener(const UI_METHOD *method)) (UI *); [all …]
|
| /freebsd/secure/lib/libcrypto/man/man3/ |
| H A D | UI_create_method.3 | 76 interface method creation and destruction 86 \& int UI_method_set_opener(UI_METHOD *method, int (*opener) (UI *ui)); 87 \& int UI_method_set_writer(UI_METHOD *method, 89 \& int UI_method_set_flusher(UI_METHOD *method, int (*flusher) (UI *ui)); 90 \& int UI_method_set_reader(UI_METHOD *method, 92 \& int UI_method_set_closer(UI_METHOD *method, int (*closer) (UI *ui)); 93 \& int UI_method_set_data_duplicator(UI_METHOD *method, 96 \& int UI_method_set_prompt_constructor(UI_METHOD *method, 102 \& int UI_method_set_ex_data(UI_METHOD *method, int idx, void *data); 103 \& int (*UI_method_get_opener(const UI_METHOD *method)) (UI *); [all …]
|
| /freebsd/tools/regression/geom/ConfCmp/ |
| H A D | a1.conf | 3 <method> 5 <name>DEV-method</name> 8 <method><ref>0x80712c0</ref></method> 20 <method><ref>0x80712c0</ref></method> 32 <method><ref>0x80712c0</ref></method> 44 <method><ref>0x80712c0</ref></method> 56 <method><ref>0x80712c0</ref></method> 68 <method><ref>0x80712c0</ref></method> 80 <method><ref>0x80712c0</ref></method> 92 <method><ref>0x80712c0</ref></method> [all …]
|
| H A D | a1a.conf | 3 <method> 5 <name>DEV-method</name> 8 <method><ref>0x90712c0</ref></method> 20 <method><ref>0x90712c0</ref></method> 32 <method><ref>0x90712c0</ref></method> 44 <method><ref>0x90712c0</ref></method> 56 <method><ref>0x90712c0</ref></method> 68 <method><ref>0x90712c0</ref></method> 80 <method><ref>0x90712c0</ref></method> 92 <method><ref>0x90712c0</ref></method> [all …]
|
| H A D | a1d.conf | 3 <method> 5 <name>DEV-method</name> 8 <method><ref>0x80712c0</ref></method> 20 <method><ref>0x80712c0</ref></method> 32 <method><ref>0x80712c0</ref></method> 44 <method><ref>0x80712c0</ref></method> 56 <method><ref>0x80712c0</ref></method> 68 <method><ref>0x80712c0</ref></method> 80 <method><ref>0x80712c0</ref></method> 92 <method><ref>0x80712c0</ref></method> [all …]
|
| H A D | a1b.conf | 3 <method> 5 <name>DEV-method</name> 8 <method><ref>0x80712c0</ref></method> 20 <method><ref>0x80712c0</ref></method> 32 <method><ref>0x80712c0</ref></method> 44 <method><ref>0x80712c0</ref></method> 56 <method><ref>0x80712c0</ref></method> 68 <method><ref>0x80712c0</ref></method> 80 <method><ref>0x80712c0</ref></method> 92 <method><ref>0x80712c0</ref></method> [all …]
|
| H A D | a1c.conf | 3 <method> 5 <name>DEV-method</name> 8 <method><ref>0x80712c0</ref></method> 20 <method><ref>0x80712c0</ref></method> 32 <method><ref>0x80712c0</ref></method> 44 <method><ref>0x80712c0</ref></method> 56 <method><ref>0x80712c0</ref></method> 68 <method><ref>0x80712c0</ref></method> 80 <method><ref>0x80712c0</ref></method> 92 <method><ref>0x80712c0</ref></method> [all …]
|
| /freebsd/sys/dev/acpi_support/ |
| H A D | acpi_system76.c | 200 * Returns corresponding acpi_ctrl of softc from method 203 acpi_system76_ctrl_map(struct acpi_system76_softc *sc, int method) in acpi_system76_ctrl_map() argument 206 switch (method) { in acpi_system76_ctrl_map() 216 device_printf(sc->dev, "Driver received unknown method\n"); in acpi_system76_ctrl_map() 222 acpi_system76_update(struct acpi_system76_softc *sc, int method, bool set) in acpi_system76_update() argument 233 if ((ctrl = acpi_system76_ctrl_map(sc, method)) == NULL) in acpi_system76_update() 236 switch (method) { in acpi_system76_update() 240 Arg[0].Integer.Value = method == S76_CTRL_BCTH ? 1 : 0; in acpi_system76_update() 251 s76_sysctl_table[method].set_method, &Args, &Buf); in acpi_system76_update() 254 s76_sysctl_table[method].get_method, &Args, &Buf); in acpi_system76_update() [all …]
|
| /freebsd/sys/dev/etherswitch/ |
| H A D | etherswitch_if.m | 81 METHOD etherswitch_info_t* getinfo { 88 METHOD void lock { 95 METHOD void unlock { 102 METHOD int readreg { 110 METHOD int writereg { 119 METHOD int readphyreg { 128 METHOD int writephyreg { 138 METHOD int getport { 146 METHOD int setport { 154 METHOD int getvgroup { [all …]
|