HomeSort by: relevance | last modified time | path
    Searched refs:mesh (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/share/man/man4/man4.macppc/
Makefile 4 mesh.4 obio.4 pbms.4 platinumfb.4 snapper.4
  /src/external/bsd/unbound/dist/services/
mesh.c 2 * services/mesh.c - deal with mesh of query states and handle events for that.
39 * This file contains functions to assist in dealing with a mesh of
40 * query states. This mesh is supposed to be thread-specific.
46 #include "services/mesh.h"
95 * Compare two response-ip client info entries for the purpose of mesh state
99 * We cannot share the mesh state for two queries if different response-ip
209 struct mesh_area* mesh = calloc(1, sizeof(struct mesh_area)); local
210 if(!mesh) {
211 log_err("mesh area alloc: out of memory")
1067 struct mesh_area* mesh; local
1123 struct mesh_area* mesh; local
1189 struct mesh_area* mesh = qstate->env->mesh; local
1219 struct mesh_area* mesh = qstate->env->mesh; local
1264 struct mesh_area* mesh = qstate->env->mesh; local
2339 struct mesh_area* mesh = qstate->env->mesh; local
2444 struct mesh_area* mesh = qstate->env->mesh; local
    [all...]
mesh.h 2 * services/mesh.h - deal with mesh of query states and handle events for that.
39 * This file contains functions to assist in dealing with a mesh of
40 * query states. This mesh is supposed to be thread-specific.
67 * Maximum number of mesh state activations. Any more is likely an
80 * Mesh of query states
176 * A mesh query state
208 /** number of activations for the mesh state */
232 /** the mesh state */
252 /** qname from this query. len same as mesh qinfo. *
    [all...]
modstack.c 340 int m = modstack_find(&env->mesh->mods, name);
342 fptr_ok(fptr_whitelist_mod_get_mem(env->mesh->
344 return (*env->mesh->mods.mod[m]->get_mem)(env, m);
listen_dnsport.h 324 /** the buffer to use to spool reply from mesh into,
333 /** is the comm point set to send_reply (by mesh new client in worker
356 /** the mesh area of the mesh_state */
357 struct mesh_area* mesh; member in struct:tcp_req_open_item
358 /** the mesh state */
385 * Removes mesh entry references and stored results from the lists.
398 * Remove mesh state entry from list in tcp_req_info.
399 * caller has to manage the mesh state reply entry in the mesh state.
419 * Add mesh state to the tcp req list of open requests
    [all...]
listen_dnsport.c 60 #include "services/mesh.h"
2166 /* free outstanding request mesh reply entries */
2170 mesh_state_remove_reply(open->mesh, open->mesh_state, req->cp);
2205 /* caller has to manage the mesh state reply entry */
2342 * or schedule a mesh entry for later */
2357 /* it should be waiting in the mesh for recursion.
2358 * If mesh failed to add a new entry and called commpoint_drop_reply.
2359 * Then the mesh state has been cleared. */
2364 /* If mesh failed(mallocfail) and called commpoint_send_reply with
2381 struct mesh_area* mesh, struct mesh_state* m
    [all...]
  /src/external/bsd/unbound/dist/daemon/
stats.c 51 #include "services/mesh.h"
99 stats->sum_query_list_size += worker->env.mesh->all.count;
100 if((long long)worker->env.mesh->all.count > stats->max_query_list_size)
101 stats->max_query_list_size = (long long)worker->env.mesh->all.count;
108 stats->sum_query_list_size += worker->env.mesh->all.count;
109 if((long long)worker->env.mesh->all.count > stats->max_query_list_size)
110 stats->max_query_list_size = (long long)worker->env.mesh->all.count;
132 (unsigned)worker->env.mesh->stats_dropped,
133 (unsigned)worker->env.mesh->stats_jostled);
143 int m = modstack_find(&worker->env.mesh->mods, "subnetcache")
    [all...]
worker.c 62 #include "services/mesh.h"
124 size_t total, front, back, mesh, msg, rrset, infra, ac, superac; local
137 mesh = mesh_get_mem(worker->env.mesh);
143 for(i=0; i<worker->env.mesh->mods.num; i++) {
144 fptr_ok(fptr_whitelist_mod_get_mem(worker->env.mesh->
146 if(strcmp(worker->env.mesh->mods.mod[i]->name, "validator")==0)
147 val += (*worker->env.mesh->mods.mod[i]->get_mem)
150 else if(strcmp(worker->env.mesh->mods.mod[i]->name,
152 subnet += (*worker->env.mesh->mods.mod[i]->get_mem
    [all...]
remote.c 73 #include "services/mesh.h"
2286 mesh_delete_all(worker->env.mesh);
2716 * the actual mesh is not running, so we can freely edit it. */
2718 mesh_delete_all(worker->env.mesh);
3003 /** get age for the mesh state */
3022 /** get status of a mesh state */
3024 get_mesh_status(struct mesh_area* mesh, struct mesh_state* m,
3028 const char *modname = mesh->mods.mod[m->s.curmod]->name;
3052 /* look in subs from mesh state to see what */
3080 struct mesh_area* mesh; local
7517 struct mesh_area* mesh = worker->env.mesh; local
    [all...]
  /src/external/bsd/unbound/dist/testcode/
unitzonemd.c 300 env.mesh = mesh_create(&mods, &env);
301 if(!env.mesh)
336 mesh_delete(env.mesh);
  /src/external/bsd/unbound/dist/libunbound/
libworker.c 54 #include "services/mesh.h"
96 mesh_delete(w->env->mesh);
242 w->env->mesh = mesh_create(&ctx->mods, w->env);
243 if(!w->env->mesh) {
644 if(!mesh_new_callback(w->env->mesh, &qinfo, qflags, &edns,
725 if(!mesh_new_callback(w->env->mesh, &qinfo, qflags, &edns,
863 if(!mesh_new_callback(w->env->mesh, &qinfo, qflags, &edns,
909 mesh_report_reply(lw->env->mesh, e, reply_info, error);
919 mesh_report_reply(lw->env->mesh, e, reply_info,
923 mesh_report_reply(lw->env->mesh, e, reply_info, NETEVENT_NOERROR)
    [all...]
  /src/usr.bin/deroff/
deroff.c 234 static int mesh(pacmac);
1352 mesh(pacmac c12) function
1695 M(NONE, 's','h', mesh),
1696 M(NONE, 'u','h', mesh),
  /src/external/bsd/unbound/lib/libunbound/
Makefile 57 mesh.c \
  /src/external/bsd/unbound/dist/util/
netevent.h 994 /** mesh area containing mesh state */
995 struct mesh_area* mesh; member in struct:http2_stream
996 /** mesh state for query. Used to remove mesh reply before closing
1028 /** Add mesh state to stream. To be able to remove mesh reply on stream closure
1031 struct mesh_area* mesh, struct mesh_state* m);
1033 /** Remove mesh state from stream. When the mesh state has been removed. *
    [all...]
module.h 43 * they are done, the reply is passed back. In the usual setup the mesh
69 * A query comes in, and a mesh entry is created for it. The mesh
94 * There is no previous module from the validator module, and the mesh
95 * takes this to mean that the query is finally done. The mesh invokes
99 * query, then the mesh will tell them about it. It calls the inform_super
119 * The mesh meanwhile will have the newly created query (or queries) on
123 * done. When they are done the mesh calls inform_super on the module that
124 * wanted the recursion. After that the mesh calls operate() on the module
231 /** whether the option needs mesh aggregation *
498 struct mesh_area* mesh; member in struct:module_env
    [all...]
  /src/external/mit/xorg/lib/libGLU/
Makefile 25 mesh.c \
  /src/external/cddl/osnet/dist/lib/libzfs/common/
libzfs_import.c 1277 struct gmesh mesh; local
1282 errno = geom_gettree(&mesh);
1290 LIST_FOREACH(mp, &mesh.lg_class, lg_class) {
1304 geom_deletetree(&mesh);
  /src/external/bsd/wpa/dist/wpa_supplicant/
bss.c 835 const u8 *ssid, *p2p, *mesh; local
886 mesh = wpa_scan_get_ie(res, WLAN_EID_MESH_ID);
887 if (mesh && mesh[1] <= SSID_MAX_LEN)
888 ssid = mesh;
mesh.c 2 * WPA Supplicant - Basic mesh mode routines
28 #include "mesh.h"
113 wpa_msg(wpa_s, MSG_INFO, "mesh: Invalid pairwise cipher");
122 wpa_msg(wpa_s, MSG_INFO, "mesh: Invalid group cipher");
185 "mesh: Passphrase for SAE not configured");
235 wpa_printf(MSG_ERROR, "Error updating mesh frequency params");
252 wpa_printf(MSG_ERROR, "mesh: %s called without active mesh",
271 "mesh: RSN initialization failed - deinit mesh");
    [all...]
  /src/external/bsd/wpa/dist/src/ap/
ieee802_11.c 575 if (!(hapd->conf->mesh & MESH_ENABLED))
819 * unexpected mesh cases. */
897 if (!(hapd->conf->mesh & MESH_ENABLED))
1022 * In mesh case, both Commit and Confirm are sent
1031 if ((hapd->conf->mesh & MESH_ENABLED) ||
1042 "Sent Confirm (mesh)");
1074 } else if (hapd->conf->mesh & MESH_ENABLED) {
1076 * In mesh case, follow SAE finite state machine and
1135 (hapd->conf->mesh & MESH_ENABLED)) {
1364 "SAE: Cancel use of mesh PMKSA caching because peer starts SAE authentication")
    [all...]
ap_config.h 724 int mesh; member in struct:hostapd_bss_config
  /src/external/bsd/unbound/dist/validator/
validator.c 871 mesh_run(qstate->env->mesh, qstate->mesh_info, module_event_pass,
910 if(qstate->env->mesh->all.count >= qstate->env->mesh->max_reply_states)
912 else if(qstate->env->mesh->all.count >= qstate->env->mesh->max_reply_states/2)
914 else if(qstate->env->mesh->all.count >= qstate->env->mesh->max_reply_states/4)
2553 * answers are already used before the mesh
3215 * Because it is in inform_supers, the mesh itself is busy doing callbacks
3216 * for a state that is to be deleted soon; don't touch the mesh; instea
    [all...]
val_sigcrypt.c 60 #include "services/mesh.h"
1695 if(qstate && qstate->env && qstate->env->mesh)
1696 qstate->env->mesh->val_ops++;
  /src/external/bsd/unbound/dist/iterator/
iterator.c 1295 if(mesh_jostle_exceeded(qstate->env->mesh))
2071 /* If the mesh query list is full, exit the loop here.
2077 if(mesh_jostle_exceeded(qstate->env->mesh)) {
2101 /* If the mesh query list is full, exit the loop. */
2102 if(mesh_jostle_exceeded(qstate->env->mesh)) {
2288 if(mesh_jostle_exceeded(qstate->env->mesh)) {
2737 qstate->env->mesh->num_query_authzone_up++;
2773 /* if the mesh query list is full, then do not waste cpu and sockets to
2776 && !mesh_jostle_exceeded(qstate->env->mesh)) {
  /src/sys/arch/macppc/dev/
mesh.c 1 /* $NetBSD: mesh.c,v 1.44 2023/12/20 15:29:04 thorpej Exp $ */
36 __KERNEL_RCSID(0, "$NetBSD: mesh.c,v 1.44 2023/12/20 15:29:04 thorpej Exp $");
103 u_char *sc_reg; /* MESH base address */
109 int sc_meshid; /* MESH version */
181 CFATTACH_DECL_NEW(mesh, sizeof(struct mesh_softc),
190 if (strcmp(ca->ca_name, "mesh") == 0)
221 aprint_error(": unknown MESH ID (0x%x)\n", sc->sc_meshid);
494 * MESH mistakenly asserts TARGET ID bit along with its own ID bit
582 panic("mesh: transfer size >= 128k");
1134 printf("mesh: resetting DMA\n")
    [all...]

Completed in 83 milliseconds

1 2