HomeSort by: relevance | last modified time | path
    Searched defs:methods (Results 1 - 25 of 86) sorted by relevancy

1 2 3 4

  /src/crypto/external/bsd/openssh/dist/
auth2-methods.c 1 /* $NetBSD: auth2-methods.c,v 1.2 2024/07/08 22:33:43 christos Exp $ */
20 __RCSID("$NetBSD: auth2-methods.c,v 1.2 2024/07/08 22:33:43 christos Exp $");
37 * Configuration of enabled authentication methods. Separate from the rest of
98 * Check a comma-separated list of methods for validity. If need_enable is
99 * non-zero, then also require that the methods are enabled.
100 * Returns 0 on success or -1 if the methods list is invalid.
105 char *methods, *omethods, *method, *p; local
114 omethods = methods = xstrdup(_methods);
115 while ((method = strsep(&methods, ",")) != NULL) {
  /src/external/apache2/llvm/dist/clang/utils/perf-training/
perf-helper.py 315 methods = dict((name[len("form_by_"):],value) variable
336 help="order file generation method to use", choices=list(methods.keys()),
374 method = methods.get(opts.method)
  /src/external/mpl/bind/dist/lib/dns/include/dns/
rdatasetiter.h 40 *\li The iterator methods ensure appropriate database locking.
94 dns_rdatasetitermethods_t *methods; member in struct:dns_rdatasetiter
dbiterator.h 40 *\li The iterator methods ensure appropriate database locking.
104 dns_dbiteratormethods_t *methods; member in struct:dns_dbiterator
dlz.h 144 dns_clientinfomethods_t *methods,
193 /*% the methods supplied by a DLZ driver */
206 const dns_dlzmethods_t *methods; member in struct:dns_dlzimplementation
260 * methods, this function will call it.
264 dns_dlzregister(const char *drivername, const dns_dlzmethods_t *methods,
270 * type 'drivername', implemented by the functions in '*methods'.
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
dbiterator.h 41 *\li The iterator methods ensure appropriate database locking.
102 dns_dbiteratormethods_t *methods; member in struct:dns_dbiterator
rdatasetiter.h 41 *\li The iterator methods ensure appropriate database locking.
94 dns_rdatasetitermethods_t *methods; member in struct:dns_rdatasetiter
dlz.h 145 dns_clientinfomethods_t *methods,
194 /*% the methods supplied by a DLZ driver */
207 const dns_dlzmethods_t *methods; member in struct:dns_dlzimplementation
261 * methods, this function will call it.
265 dns_dlzregister(const char *drivername, const dns_dlzmethods_t *methods,
271 * type 'drivername', implemented by the functions in '*methods'.
  /src/external/bsd/ntp/dist/libntp/lib/isc/include/isc/
app.h 105 * app module methods. Only app driver implementations use this structure.
136 isc_appmethods_t *methods; member in struct:isc_appctx
task.h 111 /*% Task and task manager methods */
157 isc_taskmgrmethods_t *methods; member in struct:isc_taskmgr
171 isc_taskmethods_t *methods; member in struct:isc_task
timer.h 108 /*% Timer and timer manager methods */
142 isc_timermgrmethods_t *methods; member in struct:isc_timermgr
156 isc_timermethods_t *methods; member in struct:isc_timer
  /src/external/bsd/wpa/dist/src/ap/
eap_user_db.c 23 static void set_user_methods(struct hostapd_eap_user *user, const char *methods)
28 buf = os_strdup(methods);
32 os_memset(&user->methods, 0, sizeof(user->methods));
39 user->methods[num_methods].method =
41 &user->methods[num_methods].vendor);
42 if (user->methods[num_methods].vendor == EAP_VENDOR_IETF &&
43 user->methods[num_methods].method == EAP_TYPE_NONE) {
90 } else if (os_strcmp(col[i], "methods") == 0 && argv[i]) {
106 int i, id = -1, methods = -1 local
    [all...]
  /src/external/gpl3/gcc/dist/libobjc/
protocols.c 324 with actually checking the list of methods they have!). Two
361 struct objc_method_description_list *methods; local
365 /* The current ABI does not have any information on optional protocol methods. */
375 methods = ((struct objc_protocol *)protocol)->instance_methods;
377 methods = ((struct objc_protocol *)protocol)->class_methods;
379 if (methods)
381 for (i = 0; i < methods->count; i++)
383 if (sel_isEqual (methods->list[i].name, selector))
384 return methods->list[i];
386 if (strcmp (sel_getName (methods->list[i].name), selector_name) == 0
400 struct objc_method_description_list *methods; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libobjc/
protocols.c 324 with actually checking the list of methods they have!). Two
361 struct objc_method_description_list *methods; local
365 /* The current ABI does not have any information on optional protocol methods. */
375 methods = ((struct objc_protocol *)protocol)->instance_methods;
377 methods = ((struct objc_protocol *)protocol)->class_methods;
379 if (methods)
381 for (i = 0; i < methods->count; i++)
383 if (sel_isEqual (methods->list[i].name, selector))
384 return methods->list[i];
386 if (strcmp (sel_getName (methods->list[i].name), selector_name) == 0
400 struct objc_method_description_list *methods; local
    [all...]
  /src/lib/lua/gpio/
gpio.c 46 #define GPIO_METATABLE "GPIO object methods"
274 static const struct luaL_Reg methods[] = { local
291 luaL_newlib(L, methods);
  /src/crypto/external/apache2/openssl/dist/crypto/slh_dsa/
slh_hash.c 271 static const SLH_HASH_FUNC methods[] = { local
285 return &methods[is_shake ? 0 : 1];
slh_adrs.c 155 static const SLH_ADRS_FUNC methods[] = { local
183 return &methods[is_compressed == 0 ? 0 : 1];
  /src/external/bsd/libevent/dist/test/
bench.c 154 const char **methods; local
180 methods = event_get_supported_methods();
181 fprintf(stdout, "Using Libevent %s. Available methods are:\n",
183 for (i = 0; methods[i] != NULL; ++i)
184 printf(" %s\n", methods[i]);
209 methods = event_get_supported_methods();
210 for (i = 0; methods[i] != NULL; ++i)
211 if (strcmp(methods[i], method))
212 event_config_avoid_method(cfg, methods[i]);
  /src/external/bsd/ntp/dist/sntp/libevent/test/
bench.c 153 const char **methods; local
179 methods = event_get_supported_methods();
180 fprintf(stdout, "Using Libevent %s. Available methods are:\n",
182 for (i = 0; methods[i] != NULL; ++i)
183 printf(" %s\n", methods[i]);
208 methods = event_get_supported_methods();
209 for (i = 0; methods[i] != NULL; ++i)
210 if (strcmp(methods[i], method))
211 event_config_avoid_method(cfg, methods[i]);
  /src/external/gpl2/gettext/dist/gettext-tools/src/
read-catalog.c 40 /* Inline functions to invoke the methods. */
45 default_catalog_reader_class_ty *methods = local
46 (default_catalog_reader_class_ty *) this->methods;
48 if (methods->set_domain)
49 methods->set_domain (this, name);
60 default_catalog_reader_class_ty *methods = local
61 (default_catalog_reader_class_ty *) this->methods;
63 if (methods->add_message)
64 methods->add_message (this, msgctxt,
76 default_catalog_reader_class_ty *methods local
    [all...]
  /src/external/mpl/bind/dist/lib/dns/
rdatalist.c 29 static dns_rdatasetmethods_t methods = { variable
77 .methods = &methods,
95 REQUIRE(rdataset->methods == &methods);
  /src/external/mpl/dhcp/bind/dist/lib/dns/
rdatalist.c 31 static dns_rdatasetmethods_t methods = { variable
84 rdataset->methods = &methods;
  /src/crypto/external/bsd/heimdal/dist/lib/hdb/
hdb.c 68 static struct hdb_method methods[] = { variable in typeref:struct:hdb_method
333 for (h = methods; h->prefix != NULL; ++h) {
402 for (h = methods; h->prefix != NULL; ++h) {
415 for (h = methods; h->prefix != NULL; ++h) {
440 if (h != methods)
  /src/external/bsd/wpa/dist/src/eap_peer/
eap_tls_common.c 903 * EAP-TLS, EAP-PEAP, EAP-TTLS, and EAP-FAST methods are expected to use this
1097 * @types: Buffer for returning allocated list of allowed EAP methods
1098 * @num_types: Buffer for returning number of allocated EAP methods
1101 * This function is used to parse EAP method list and select allowed methods
1110 struct eap_method_type *methods = NULL, *_methods; local
1145 os_free(methods);
1150 _methods = os_realloc_array(methods, num_methods,
1151 sizeof(*methods));
1153 os_free(methods);
1157 methods = _methods
    [all...]
  /src/external/bsd/wpa/dist/src/p2p/
p2p_build.c 196 u16 methods; local
206 /* Config Methods */
207 methods = 0;
210 methods |= WPS_CONFIG_PUSHBUTTON;
212 methods |= WPS_CONFIG_P2PS;
215 methods |= WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD;
217 methods |= p2p->cfg->config_methods &
221 methods |= WPS_CONFIG_PUSHBUTTON;
222 methods |= WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD;
223 methods |= WPS_CONFIG_P2PS
    [all...]

Completed in 45 milliseconds

1 2 3 4