| /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") 1115 struct mesh_area* mesh; local 1178 struct mesh_area* mesh; local 1244 struct mesh_area* mesh = qstate->env->mesh; local 1274 struct mesh_area* mesh = qstate->env->mesh; local 1322 struct mesh_area* mesh = qstate->env->mesh; local 1780 struct mesh_area* mesh = mstate->s.env->mesh; local 2429 struct mesh_area* mesh = qstate->env->mesh; local 2541 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 73 * Maximum number of mesh state run items. These are different modules 74 * activated during a mesh run. Any more is likely an infinite loop 87 * Mesh of query states 183 * A mesh query state 215 /** number of activations for the mesh state * [all...] |
| listen_dnsport.h | 326 /** the buffer to use to spool reply from mesh into, 335 /** is the comm point set to send_reply (by mesh new client in worker 362 /** the mesh area of the mesh_state */ 363 struct mesh_area* mesh; member in struct:tcp_req_open_item 364 /** the mesh state */ 393 * Removes mesh entry references and stored results from the lists. 406 * Remove mesh state entry from list in tcp_req_info. 407 * caller has to manage the mesh state reply entry in the mesh state. 427 * Add mesh state to the tcp req list of open requests 705 struct mesh_area* mesh; member in struct:doq_stream [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.c | 59 #include "services/mesh.h" 2172 /* free outstanding request mesh reply entries */ 2176 mesh_state_remove_reply(open->mesh, open->mesh_state, req->cp, 2215 /* caller has to manage the mesh state reply entry */ 2352 * or schedule a mesh entry for later */ 2367 /* it should be waiting in the mesh for recursion. 2368 * If mesh failed to add a new entry and called commpoint_drop_reply. 2369 * Then the mesh state has been cleared. */ 2374 /* If mesh failed(mallocfail) and called commpoint_send_reply with 2391 struct mesh_area* mesh, struct mesh_state* m [all...] |
| authzone.c | 62 #include "services/mesh.h" 3721 env->mesh->num_query_authzone_down++; 3734 env->mesh->num_query_authzone_down++; 5529 auth_zone_verify_zonemd(z, env, &env->mesh->mods, NULL, 0, 0); 5535 * state machine mesh callbacks */ 5547 * state machine mesh callbacks */ 5597 int lookup_aaaa, uint16_t dclass, struct mesh_area* mesh, 5615 mesh_remove_callback(mesh, &qinfo, BIT_RD, cb, cb_arg, 5636 xfr->task_transfer->env->mesh, 5703 if(!mesh_new_callback(env->mesh, &qinfo, qflags, &edns, buf, 0 [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" 2379 mesh_delete_all(worker->env.mesh); 2812 * the actual mesh is not running, so we can freely edit it. */ 2814 mesh_delete_all(worker->env.mesh); 3099 /** get age for the mesh state */ 3118 /** get status of a mesh state */ 3120 get_mesh_status(struct mesh_area* mesh, struct mesh_state* m, 3124 const char *modname = mesh->mods.mod[m->s.curmod]->name; 3148 /* look in subs from mesh state to see what */ 3176 struct mesh_area* mesh; local 7745 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);
|
| fake_event.c | 2000 struct mesh_area* ATTR_UNUSED(mesh), struct mesh_state* ATTR_UNUSED(m)) 2032 struct mesh_area* ATTR_UNUSED(mesh), struct mesh_state* ATTR_UNUSED(m)) 2041 struct mesh_area* ATTR_UNUSED(mesh), struct mesh_state* ATTR_UNUSED(m))
|
| /src/external/bsd/unbound/dist/libunbound/ |
| libworker.c | 54 #include "services/mesh.h" 96 mesh_delete(w->env->mesh); 251 w->env->mesh = mesh_create(&ctx->mods, w->env); 252 if(!w->env->mesh) { 653 if(!mesh_new_callback(w->env->mesh, &qinfo, qflags, &edns, 735 if(!mesh_new_callback(w->env->mesh, &qinfo, qflags, &edns, 874 if(!mesh_new_callback(w->env->mesh, &qinfo, qflags, &edns, 922 mesh_report_reply(lw->env->mesh, e, reply_info, error); 932 mesh_report_reply(lw->env->mesh, e, reply_info, 936 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 | 192 /** The doq stream to register mesh states to. */ 1001 /** mesh area containing mesh state */ 1002 struct mesh_area* mesh; member in struct:http2_stream 1003 /** mesh state for query. Used to remove mesh reply before closing 1035 /** Add mesh state to stream. To be able to remove mesh reply on stream closure 1038 struct mesh_area* mesh, struct mesh_state* m); 1040 /** 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 * 501 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...] |
| /src/external/bsd/unbound/dist/validator/ |
| validator.c | 904 mesh_run(qstate->env->mesh, qstate->mesh_info, module_event_pass, 943 if(qstate->env->mesh->all.count >= qstate->env->mesh->max_reply_states) 945 else if(qstate->env->mesh->all.count >= qstate->env->mesh->max_reply_states/2) 947 else if(qstate->env->mesh->all.count >= qstate->env->mesh->max_reply_states/4) 2658 * answers are already used before the mesh 3322 * Because it is in inform_supers, the mesh itself is busy doing callbacks 3323 * for a state that is to be deleted soon; don't touch the mesh; instea [all...] |
| val_sigcrypt.c | 60 #include "services/mesh.h" 1844 if(qstate && qstate->env && qstate->env->mesh) 1845 qstate->env->mesh->val_ops++;
|
| /src/external/bsd/unbound/dist/iterator/ |
| iterator.c | 1320 if(mesh_jostle_exceeded(qstate->env->mesh)) 2097 /* If the mesh query list is full, exit the loop here. 2103 if(mesh_jostle_exceeded(qstate->env->mesh)) { 2127 /* If the mesh query list is full, exit the loop. */ 2128 if(mesh_jostle_exceeded(qstate->env->mesh)) { 2314 if(mesh_jostle_exceeded(qstate->env->mesh)) { 2769 qstate->env->mesh->num_query_authzone_up++; 2805 /* if the mesh query list is full, then do not waste cpu and sockets to 2808 && !mesh_jostle_exceeded(qstate->env->mesh)) {
|