Searched refs:mesh (Results 1 - 25 of 46) sorted by relevance

12

/freebsd-10.0-release/tools/tools/net80211/scripts/mesh/
H A Dcommon9 . config.mesh
11 WLAN=`ifconfig wlan create wlanmode mesh wlandev $WIRELESS`
13 wlandebug -i $WLAN mesh+hwmp+state+scan+assoc
H A Dsetup.simple10 . config.mesh
H A Dtopology.line3 # Script for creating a mesh in line topology.
11 . config.mesh
H A Dtopology.star3 # Script for creating a mesh in star topology.
10 . config.mesh
H A Dtopology.tree3 # Script for creating a mesh in tree (hirearchical) topology.
20 . config.mesh
H A Dtopology.ring3 # Script for creating a mesh in ring topology.
13 . config.mesh
/freebsd-10.0-release/contrib/unbound/services/
H A Dmesh.c2 * 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.
47 #include "services/mesh.h"
159 struct mesh_area* mesh = calloc(1, sizeof(struct mesh_area)); local
160 if(!mesh) {
161 log_err("mesh area alloc: out of memory");
164 mesh->histogram = timehist_setup();
165 mesh
205 mesh_delete(struct mesh_area* mesh) argument
218 mesh_delete_all(struct mesh_area* mesh) argument
237 mesh_make_new_space(struct mesh_area* mesh, ldns_buffer* qbuf) argument
276 mesh_new_client(struct mesh_area* mesh, struct query_info* qinfo, uint16_t qflags, struct edns_data* edns, struct comm_reply* rep, uint16_t qid) argument
372 mesh_new_callback(struct mesh_area* mesh, struct query_info* qinfo, uint16_t qflags, struct edns_data* edns, ldns_buffer* buf, uint16_t qid, mesh_cb_func_t cb, void* cb_arg) argument
424 mesh_new_prefetch(struct mesh_area* mesh, struct query_info* qinfo, uint16_t qflags, uint32_t leeway) argument
478 mesh_report_reply(struct mesh_area* mesh, struct outbound_entry* e, struct comm_reply* reply, int what) argument
549 struct mesh_area* mesh; local
583 struct mesh_area* mesh; local
650 struct mesh_area* mesh = qstate->env->mesh; local
677 struct mesh_area* mesh = qstate->env->mesh; local
914 mesh_walk_supers(struct mesh_area* mesh, struct mesh_state* mstate) argument
929 mesh_area_find(struct mesh_area* mesh, struct query_info* qinfo, uint16_t qflags, int prime) argument
1003 mesh_continue(struct mesh_area* mesh, struct mesh_state* mstate, enum module_ext_state s, enum module_ev* ev) argument
1053 mesh_run(struct mesh_area* mesh, struct mesh_state* mstate, enum module_ev ev, struct outbound_entry* e) argument
1090 mesh_log_list(struct mesh_area* mesh) argument
1110 mesh_stats(struct mesh_area* mesh, const char* str) argument
1134 mesh_stats_clear(struct mesh_area* mesh) argument
1151 mesh_get_mem(struct mesh_area* mesh) argument
1168 struct mesh_area* mesh = qstate->env->mesh; local
[all...]
H A Dmesh.h2 * 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.
63 * Maximum number of mesh state activations. Any more is likely an
146 * A mesh query state
172 /** number of activations for the mesh state */
194 /** the mesh state */
214 /** qname from this query. len same as mesh qinfo. */
251 * Allocate mesh, t
[all...]
/freebsd-10.0-release/usr.sbin/bsdinstall/partedit/
H A Dscripted.c41 provider_for_name(struct gmesh *mesh, const char *name) argument
47 LIST_FOREACH(classp, &mesh->lg_class, lg_class) {
70 struct gmesh mesh; local
77 error = geom_gettree(&mesh);
78 if (provider_for_name(&mesh, disk) == NULL) {
80 geom_deletetree(&mesh);
85 LIST_FOREACH(classp, &mesh.lg_class, lg_class)
107 geom_deletetree(&mesh);
108 error = geom_gettree(&mesh);
112 wizard_makeparts(&mesh, dis
[all...]
H A Dpart_wizard.c43 static char *boot_disk(struct gmesh *mesh);
44 static char *wizard_partition(struct gmesh *mesh, const char *disk);
49 struct gmesh mesh; local
53 error = geom_gettree(&mesh);
56 error = geom_gettree(&mesh);
57 disk = boot_disk(&mesh);
63 schemeroot = wizard_partition(&mesh, disk);
68 geom_deletetree(&mesh);
71 error = geom_gettree(&mesh);
73 error = wizard_makeparts(&mesh, schemeroo
84 boot_disk(struct gmesh *mesh) argument
163 provider_for_name(struct gmesh *mesh, const char *name) argument
188 wizard_partition(struct gmesh *mesh, const char *disk) argument
285 wizard_makeparts(struct gmesh *mesh, const char *disk, int interactive) argument
[all...]
H A Dpartedit.h59 int wizard_makeparts(struct gmesh *mesh, const char *disk, int interactive);
69 void gpart_revert_all(struct gmesh *mesh);
70 void gpart_commit(struct gmesh *mesh);
H A Dpartedit.c46 static int apply_changes(struct gmesh *mesh);
47 static struct partedit_item *read_geom_mesh(struct gmesh *mesh, int *nitems);
57 struct gmesh mesh; local
60 geom_gettree(&mesh);
61 gpart_revert_all(&mesh);
62 geom_deletetree(&mesh);
75 struct gmesh mesh; local
116 error = geom_gettree(&mesh);
118 items = read_geom_mesh(&mesh, &nitems);
145 gpart_revert_all(&mesh);
302 apply_changes(struct gmesh *mesh) argument
389 read_geom_mesh(struct gmesh *mesh, int *nitems) argument
[all...]
/freebsd-10.0-release/contrib/unbound/daemon/
H A Dstats.c47 #include "services/mesh.h"
78 stats->sum_query_list_size += worker->env.mesh->all.count;
79 if(worker->env.mesh->all.count > stats->max_query_list_size)
80 stats->max_query_list_size = worker->env.mesh->all.count;
87 stats->sum_query_list_size += worker->env.mesh->all.count;
88 if(worker->env.mesh->all.count > stats->max_query_list_size)
89 stats->max_query_list_size = worker->env.mesh->all.count;
109 (unsigned)worker->env.mesh->stats_dropped,
110 (unsigned)worker->env.mesh->stats_jostled);
117 int m = modstack_find(&worker->env.mesh
[all...]
H A Dworker.c62 #include "services/mesh.h"
154 size_t total, front, back, mesh, msg, rrset, infra, ac, superac; local
164 mesh = mesh_get_mem(worker->env.mesh);
170 for(i=0; i<worker->env.mesh->mods.num; i++) {
171 fptr_ok(fptr_whitelist_mod_get_mem(worker->env.mesh->
173 if(strcmp(worker->env.mesh->mods.mod[i]->name, "validator")==0)
174 val += (*worker->env.mesh->mods.mod[i]->get_mem)
176 else iter += (*worker->env.mesh->mods.mod[i]->get_mem)
192 total = front+back+mesh
[all...]
/freebsd-10.0-release/sbin/geom/class/part/
H A Dgeom_part.c196 find_class(struct gmesh *mesh, const char *name) argument
200 LIST_FOREACH(classp, &mesh->lg_class, lg_class) {
304 struct gmesh mesh; local
317 error = geom_gettree(&mesh);
323 cp = find_class(&mesh, s);
409 geom_deletetree(&mesh);
416 geom_deletetree(&mesh);
423 struct gmesh mesh; local
440 error = geom_gettree(&mesh);
446 cp = find_class(&mesh,
671 struct gmesh mesh; local
718 struct gmesh mesh; local
804 struct gmesh mesh; local
1139 struct gmesh mesh; local
[all...]
/freebsd-10.0-release/sbin/ggate/shared/
H A Dggate.c311 find_class(struct gmesh *mesh, const char *name) argument
315 LIST_FOREACH(class, &mesh->lg_class, lg_class) {
365 struct gmesh mesh; local
371 error = geom_gettree(&mesh);
374 class = find_class(&mesh, G_GATE_CLASS_NAME);
376 geom_deletetree(&mesh);
388 geom_deletetree(&mesh);
/freebsd-10.0-release/tools/tools/net80211/scripts/
H A Dconfig52 # default meshid for mesh vaps
53 test -z "$MESHID" && MESHID=freebsd-mesh
/freebsd-10.0-release/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_partition_tbl.c356 find_class(struct gmesh *mesh, const char *name) argument
360 LIST_FOREACH(classp, &mesh->lg_class, lg_class)
452 struct gmesh mesh; /* GEOM userland tree */ local
462 if ((error = geom_gettree(&mesh)) != 0) {
472 if ((classp = find_class(&mesh, "MBR")) != NULL) {
482 if ((classp = find_class(&mesh, "BSD")) != NULL) {
493 if ((classp = find_class(&mesh, "SUN")) != NULL) {
500 geom_deletetree(&mesh);
/freebsd-10.0-release/lib/libgeom/
H A Dgeom_util.c221 struct gmesh mesh; local
227 error = geom_gettree(&mesh);
236 LIST_FOREACH(mp, &mesh.lg_class, lg_class) {
262 geom_deletetree(&mesh);
/freebsd-10.0-release/sbin/geom/core/
H A Dgeom.c659 find_class(struct gmesh *mesh, const char *name) argument
663 LIST_FOREACH(classp, &mesh->lg_class, lg_class) {
774 struct gmesh mesh; local
778 error = geom_gettree(&mesh);
781 classp = find_class(&mesh, gclass_name);
782 geom_deletetree(&mesh);
791 struct gmesh mesh; local
797 error = geom_gettree(&mesh);
800 classp = find_class(&mesh, gclass_name);
802 geom_deletetree(&mesh);
998 struct gmesh mesh; local
[all...]
/freebsd-10.0-release/usr.sbin/boot0cfg/
H A Dboot0cfg.c350 struct gmesh mesh; local
353 error = geom_gettree(&mesh);
357 LIST_FOREACH(class, &mesh.lg_class, lg_class) {
359 geom_deletetree(&mesh);
364 geom_deletetree(&mesh);
/freebsd-10.0-release/contrib/unbound/libunbound/
H A Dlibworker.c55 #include "services/mesh.h"
85 mesh_delete(w->env->mesh);
221 w->env->mesh = mesh_create(&ctx->mods, w->env);
222 if(!w->env->mesh) {
594 if(!mesh_new_callback(w->env->mesh, &qinfo, qflags, &edns,
718 if(!mesh_new_callback(w->env->mesh, &qinfo, qflags, &edns,
765 mesh_report_reply(lw->env->mesh, &e, reply_info, error);
775 mesh_report_reply(lw->env->mesh, &e, reply_info,
779 mesh_report_reply(lw->env->mesh, &e, reply_info, NETEVENT_NOERROR);
791 mesh_report_reply(lw->env->mesh,
[all...]
/freebsd-10.0-release/contrib/unbound/util/
H A Dmodule.h123 * @param qstate: used to find mesh state.
139 * @param qstate: the state to find mesh state, and that wants to
164 * @param qstate: given mesh querystate.
169 * qstate mesh exists as a dependency of that name. Thus
182 /** mesh area with query state dependencies */
183 struct mesh_area* mesh; member in struct:module_env
309 /** mesh related information for this query */
/freebsd-10.0-release/lib/libunbound/
H A DMakefile20 lruhash.c mesh.c mini_event.c modstack.c module.c msgencode.c \
/freebsd-10.0-release/tools/regression/geom/ConfCmp/
H A Da2.conf0 <mesh>
207 </mesh>

Completed in 406 milliseconds

12