| /src/external/bsd/unbound/dist/services/ |
| view.h | 2 * services/view.h - named views containing local zones authority service. 39 * This file contains functions to enable named views that can hold local zone 54 * Views storage, shared. 56 struct views { struct 57 /** lock on the view tree. When locking order, the views lock 89 * Create views storage 92 struct views* views_create(void); 95 * Delete views storage 96 * @param v: views to delete. 98 void views_delete(struct views* v) [all...] |
| /src/sys/arch/amiga/dev/ |
| view.c | 67 struct view_softc views[NVIEW]; variable in typeref:struct:view_softc 119 views[i].view = NULL; 120 views[i].flags = 0; 141 * mark views that share this monitor as not displaying 144 if ((views[i].flags & VUF_DISPLAY) && 145 views[i].monitor == vu->monitor) 146 views[i].flags &= ~VUF_DISPLAY; 178 if ((views[i].flags & VUF_ADDED) && &views[i] != vu && 179 views[i].monitor == vu->monitor) [all...] |
| /src/sys/arch/atari/dev/ |
| view.c | 66 struct view_softc views[NVIEW]; variable in typeref:struct:view_softc 117 views[i].view = NULL; 118 views[i].flags = 0; 139 * mark views that share this monitor as not displaying 142 if (views[i].flags & VUF_DISPLAY) { 143 if (vu->view && (vu->view == views[i].view)) { 147 if (views[i].view) { 148 grf_save_view(views[i].view); 149 views[i].view->flags &= ~VF_DISPLAY; 151 views[i].flags &= ~VUF_DISPLAY [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| ranges_util.h | 253 namespace views { struct _Drop; } // defined in <ranges> namespace in namespace:ranges 268 friend struct views::_Drop; // Needs to inspect _S_store_size.
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| ranges_util.h | 219 namespace views { struct _Drop; } // defined in <ranges> namespace in namespace:ranges 234 friend struct views::_Drop; // Needs to inspect _S_store_size.
|
| /src/external/mpl/bind/dist/bin/check/ |
| named-checkconf.c | 520 const cfg_obj_t *views; local 525 views = NULL; 527 (void)cfg_map_get(config, "view", &views); 528 for (element = cfg_list_first(views); element != NULL; 561 if (views == NULL) {
|
| /src/external/bsd/unbound/dist/smallapp/ |
| unbound-checkconf.c | 203 /** checks for acl and views */ 205 acl_view_tag_checks(struct config_file* cfg, struct views* views) 222 v = views_find_view(views, acl->str2, 0); 295 struct views* views = NULL; local 299 if(!(views = views_create())) 300 fatal_exit("Could not create views: out of memory"); 303 if(!views_apply_cfg(views, cfg)) 304 fatal_exit("Could not set up views"); [all...] |
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| DbeSession.h | 445 Vector<DbeView*> *views; // Master list of DbeViews member in class:DbeSession
|
| /src/external/gpl3/binutils.old/dist/gprofng/src/ |
| DbeSession.h | 445 Vector<DbeView*> *views; // Master list of DbeViews member in class:DbeSession
|
| /src/external/bsd/unbound/dist/testcode/ |
| unitmain.c | 761 /** Per-view respip actions test; apply raw configuration with two views 762 * and verify that actions are as expected in respip sets of both views */ 784 struct views* views = NULL; local 796 cfg.views = cv1; 812 views = views_create(); 813 unit_assert(views); 814 unit_assert(views_apply_cfg(views, &cfg)); 815 unit_assert(respip_views_apply_cfg(views, &cfg, &have_respip_cfg)); 818 v = views_find_view(views, "view1", 0) 927 struct views* views = NULL; local [all...] |
| /src/external/bsd/unbound/dist/util/ |
| module.h | 180 struct views; 528 /** views structure containing view tree */ 529 struct views* views; member in struct:module_env
|
| config_file.h | 261 /** the views definitions, linked list */ 262 struct config_view* views; member in struct:config_file
|
| /src/external/mpl/bind/dist/lib/isccfg/ |
| check.c | 5852 * Global servers can refer to keys in views. 6349 const cfg_obj_t *views = NULL; local 6394 (void)cfg_map_get(config, "view", &views); 6396 if (views != NULL && options != NULL) { 6432 if (views == NULL) { 6447 "all zones must be in views"); 6455 "all plugins must be defined in views"); 6465 for (velement = cfg_list_first(views); velement != NULL;
|
| /src/external/bsd/unbound/dist/daemon/ |
| remote.c | 1572 v = views_find_view(worker->env.views, arg, 1 /* get write lock*/); 1604 v = views_find_view(worker->env.views, arg, 1 /* get write lock*/); 1626 v = views_find_view(worker->env.views, arg, 1 /* get write lock*/); 1651 v = views_find_view(worker->env.views, arg, 1 /* get write lock*/); 1692 v = views_find_view(worker->env.views, arg, 1 /* get write lock*/); 1715 v = views_find_view(worker->env.views, arg, 1 /* get write lock*/); 3492 struct view* v = views_find_view(worker->env.views, 3508 struct view* v = views_find_view(worker->env.views, 4632 /** construct for views */ 4633 struct views* views member in struct:fast_reload_construct [all...] |
| /src/external/mpl/bind/dist/bin/named/ |
| server.c | 228 * Maximum ADB size for views that share a cache. Use this limit to suppress 322 * Uses the isc_refcount structure to count the number of views 1890 * shared with other views. 1898 * the sharing views. 4288 "for views with class IN"); 5260 * Configure the views rrset-order. 8420 const cfg_obj_t *views = NULL; local 9203 * configure views because zone configuration may need to know 9332 * Configure the views. 9334 views = NULL [all...] |