| /freebsd/tools/lua/ | 
| H A D | template.lua | 124 local function rpos(view, s) 126         local c = byte(view, s, s) 136 local function escaped(view, s) 137     if s > 1 and byte(view, s - 1, s - 1) == BSOL then 138         if s > 2 and byte(view, s - 2, s - 2) == BSOL then 157     return function(view, plain) 158 	if plain == true then return view end 159 	local path, root = view, template.root 162 	    if byte(view,  1) == SOL then path = sub(view, 2) end 165 	return plain == false and assert(read_file(path)) or read_file(path) or view [all …] 
 | 
| /freebsd/contrib/wpa/src/utils/ | 
| H A D | browser.c | 22 	WebKitWebView *view;  member 91 static void view_cb_notify_estimated_load_progress(WebKitWebView *view,  in view_cb_notify_estimated_load_progress()  argument 95 	ctx->progress = 100 * webkit_web_view_get_estimated_load_progress(view);  in view_cb_notify_estimated_load_progress() 102 static void view_cb_resource_load_starting(WebKitWebView *view,  in view_cb_resource_load_starting()  argument 114 static gboolean view_cb_decide_policy(WebKitWebView *view,  in view_cb_decide_policy()  argument 157 static void view_cb_mouse_target_changed(WebKitWebView *view,  in view_cb_mouse_target_changed()  argument 183 static void view_cb_notify_title(WebKitWebView *view, GParamSpec *ps,  in view_cb_notify_title()  argument 188 	title = webkit_web_view_get_title(ctx->view);  in view_cb_notify_title() 197 static void view_cb_notify_progress(WebKitWebView *view, GParamSpec *pspec,  in view_cb_notify_progress()  argument 200 	ctx->progress = 100 * webkit_web_view_get_progress(view);  in view_cb_notify_progress() [all …] 
 | 
| /freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ | 
| H A D | SourceCoverageView.h | 1 //===- SourceCoverageView.h - Code coverage view for source code ----------===// 29 /// A view that represents a macro or include expansion. 32   std::unique_ptr<SourceCoverageView> View;  member 35                 std::unique_ptr<SourceCoverageView> View)  in ExpansionView() 36       : Region(Region), View(std::move(View)) {}  in ExpansionView() 38       : Region(std::move(RHS.Region)), View(std::move(RHS.View)) {}  in ExpansionView() 41     View = std::move(RHS.View); 54 /// A view that represents a function instantiation. 58   std::unique_ptr<SourceCoverageView> View;  member 61                     std::unique_ptr<SourceCoverageView> View)  in InstantiationView() [all …] 
 | 
| /freebsd/contrib/unbound/services/ | 
| H A D | view.h | 2  * services/view.h - named views containing local zones authority service. 57 	/** lock on the view tree. When locking order, the views lock 60 	/** rbtree of struct view */ 65  * View. Named structure holding local authority zones. 67 struct view { 70 	/** view name. 74 	/** view specific local authority zones */ 76 	/** response-ip configuration data for this view */ 78 	/** Fallback to global local_zones when there is no match in the view 103  * @param v: view i 66 struct view { global()  struct  69 nodeview global()  argument  73 nameview global()  argument  75 local_zonesview global()  argument  77 respip_setview global()  argument  102 lockview global()  argument  [all...] | 
| H A D | view.c | 2  * services/view.c - named views containing local zones authority service. 43 #include "services/view.h" 51 	struct view* a = (struct view*)v1; in view_cmp()  52 	struct view* b = (struct view*)v2; in view_cmp()  71 view_delete(struct view* v) 85 	struct view* v = (struct view*)n; 99 /** create a new view */ in views_delete()  [all...] | 
| /freebsd/contrib/bsnmp/snmp_vacm/ | 
| H A D | vacm_snmp.c | 462 	struct vacm_view *view;  in op_vacm_view()  local 466 		if ((view = vacm_get_view(&val->var, sub)) == NULL)  in op_vacm_view() 471 		if ((view = vacm_get_next_view(&val->var, sub)) == NULL)  in op_vacm_view() 473 		vacm_append_viewindex(&val->var, sub, view);  in op_vacm_view() 477 		if ((view = vacm_get_view(&val->var, sub)) == NULL &&  in op_vacm_view() 481 		if (view != NULL) {  in op_vacm_view() 483 			    view->type == StorageType_readOnly)  in op_vacm_view() 485 			if (view->status == RowStatus_active &&  in op_vacm_view() 492 			if (val->v.octetstring.len > sizeof(view->mask))  in op_vacm_view() 493 			ctx->scratch->ptr1 = malloc(sizeof(view->mask));  in op_vacm_view() [all …] 
 | 
| H A D | snmp_vacm.3 | 35 .Nd "View-based Access Control module for" 42 module implements SNMPv3 View-based Access Control Model MIB as defined in 50 to implement proper view-based access control. If the module is not loaded, 58 specified in the SNMP-VIEW-BASED-ACM-MIB. All entries maintained by the module 74 objects under the subtree in the relevant view.
  | 
| /freebsd/contrib/llvm-project/libcxx/modules/std/ | 
| H A D | ranges.cppm |  | 
| H A D | ranges.inc | 53     // [range.view], views 55     using std::ranges::view; 69     // [view.interface], class template view_interface 98     // [range.empty], empty view 105     // [range.single], single view 112     // [range.iota], iota view 120     // [range.repeat], repeat view 129     // [range.istream], istream view 158     // [range.all], all view 164     // [range.ref.view], ref view [all …] 
 | 
| H A D | string_view.cppm |  | 
| /freebsd/contrib/llvm-project/libcxx/include/ | 
| H A D | ranges | 62   // [range.view], views 69     concept view = ...; 101   // [view.interface], class template view_interface 125   // [range.elements], elements view 147   template<class C, input_range R, class... Args> requires (!view<C>) 151   template<class C, class... Args> requires (!view<C>) 156   // [range.empty], empty view 169   // [range.all], all view 191   // [range.filter], filter view 193     requires view<V> && is_object_v<Pred> [all …] 
 | 
| /freebsd/crypto/krb5/src/windows/leash/htmlhelp/html/ | 
| H A D | Glossary.htm | 19 … that option in the  View Options panel in the Options tab. <br><a href="HTML/Options_Tab.htm#usin… 25 …e) assigned to a ticket when you obtain it.  Show or hide flags with the  View Options panel in th… 26 <a href="HTML/Options_Tab.htm#using-view-options"> How to: Use View Options Panel</a> 35 …nformation with the  View Options panel in the Options tab. <br><a href="HTML/Options_Tab.htm#usin… 50 …nformation with the  View Options panel in the Options tab. <br><a href="HTML/Options_Tab.htm#usin… 59 …mmunications between computers. View the encryption type of your session keys by selecting Encrypt… 60 <a href="HTML/Options_Tab.htm#using-view-options"> How to: Use View Options Panel</a><br> 69 …nformation with the  View Options panel in the Options tab. <br><a href="HTML/Options_Tab.htm#usin…
  | 
| H A D | Tickets.htm | 33 <li><a href="HTML/View_Tickets.htm">View tickets</a></li> 51 <tr> <th id="th2">Adjust</th><th id="th2">View</th></tr> 53 <td>When you get your ticket, click Show Advanced to view and adjust 59 use Kerberos. <br> <a href="HTML/View_Tickets.htm">How to: View Tickets </a></td> 95 <th id="th2">View </th> 97 In the Options tab, the View Options panel checkboxes control what 102 Until checkbox in the View Options panel. To see which of your tickets 105  <a href="HTML/View_Tickets.htm">How to: View Tickets </a> </td> 118 <tr> <th id="th2">Obtain Forwardable Tickets</th><th id="th2"> View</th></tr> 122 <td> In the Options tab, the View Options panel checkboxes control what [all …] 
 | 
| H A D | Options_Tab.htm | 12 view options. The Options tab has two panels. Use the View Options 23 <li><a href="#view-options">View Options </a></li> 28 <li><a href="#using-view-options">Use the View Options Panel</a></li> 35 <h2> <a name="using-view-options">Using the View Options Panel</a></h2> 38 left to find the View Options panel. View Options control which ticket information columns are  dis… 44 <a href="HTML/View_Tickets.htm">How to: View Tickets </a> </p> 46 <h2><a name="#view-options">View Options </a></h2>
  | 
| /freebsd/sys/contrib/xen/hvm/ | 
| H A D | hvm_op.h | 43     uint16_t view;  member 51     uint16_t view;  member 254     uint16_t view;  member 262     /* view */ 263     uint16_t view;  member 275     /* view */ 276     uint16_t view;  member 287     /* view */ 288     uint16_t view;  member 304     /* view */ [all …] 
 | 
| /freebsd/usr.bin/clang/llvm-mca/ | 
| H A D | llvm-mca.1 | 188 Enable the timeline view. 193 Limit the number of iterations to print in the timeline view. By default, the 194 timeline view prints information for up to 10 iterations. 199 Limit the number of cycles in the timeline view, or use 0 for no limit. By 205 Enable the resource pressure view. This is enabled by default. 215 Enable extra dispatch statistics. This view collects and analyzes instruction 216 dispatch events, as well as static/dynamic dispatch stall events. This view 222 Enable extra scheduler statistics. This view collects and analyzes instruction 223 issue events. This view is disabled by default. 228 Enable extra retire control unit statistics. This view is disabled by default. [all …] 
 | 
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ | 
| H A D | DomPrinter.cpp | 14 // There are also passes available to directly call dotty ('-view-dom' or 15 // '-view-postdom'). By appending '-only' like '-dot-dom-only' only the 114 INITIALIZE_PASS(DomViewerWrapperPass, "view-dom", 115                 "View dominance tree of function", false, false) 118 INITIALIZE_PASS(DomOnlyViewerWrapperPass, "view-dom-only", 119                 "View dominance tree of function (with no function bodies)", 123 INITIALIZE_PASS(PostDomViewerWrapperPass, "view-postdom", 124                 "View postdominance tree of function", false, false) 127 INITIALIZE_PASS(PostDomOnlyViewerWrapperPass, "view-postdom-only", 128                 "View postdominance tree of function "
  | 
| /freebsd/contrib/unbound/respip/ | 
| H A D | respip.h | 51  * Forward declaration for the structure that represents a tree of view data. 71 	/** The view for the action, during cache callback that is by 73 	struct view* view;  member 74 	/** If from module query state, the view pointer is NULL, but the 75 	 * name is stored in reference to the view. */ 113  * Apply response-ip config settings to the global (default) view. 123  * @param vs: view structures with processed config data 125  * @param have_view_respip_cfg: set to true if any named view has respip 156  * @param views: views tree to lookup view used. 157  * @param respip_set: the respip set for the global view. [all …] 
 | 
| H A D | respip.c | 26 #include "services/view.h" 416 /** Iterate through raw view data and apply the view-specific respip 419  * an error.  This additional iteration through view configuration data in respip_views_apply_cfg()  429 	struct view* v; in respip_views_apply_cfg()  434 		/** if no respip config for this view then there's in respip_views_apply_cfg()  443 			log_err("view '%s' unexpectedly missing", cv->name); in respip_views_apply_cfg()  459 				"for view '%s'", cv->name); in respip_views_apply_cfg()  887 	struct view* view  in respip_rewrite_reply()  878 struct view* view = NULL; respip_rewrite_reply()  local  [all...] | 
| /freebsd/contrib/llvm-project/llvm/include/llvm/MCA/ | 
| H A D | CustomBehaviour.h | 26 #include "llvm/MCA/View.h" 98   // then each unique_ptr<View> is passed into the PipelinePrinter::addView() 99   // function. This function will then std::move the View into its own vector of 101   // are not relying on the current address or reference of the View 102   // unique_ptrs. If you do need the CB and View to be able to communicate with 103   // each other, consider giving the View a reference or pointer to the CB when 104   // the View is constructed. Then the View can query the CB for information 107   virtual std::vector<std::unique_ptr<View>> 110   virtual std::vector<std::unique_ptr<View>> 114   virtual std::vector<std::unique_ptr<View>>
  | 
| /freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/ | 
| H A D | SummaryView.h | 10 /// This file implements the summary view. 12 /// The goal of the summary view is to give a very quick overview of the 13 /// performance throughput. Below is an example of summary view: 23 /// The summary view collects a few performance numbers. The two main 32 #include "llvm/MCA/View.h" 38 /// A view that collects and prints a few performance numbers. 39 class SummaryView : public View {
  | 
| /freebsd/contrib/llvm-project/llvm/lib/MCA/ | 
| H A D | CustomBehaviour.cpp | 27 std::vector<std::unique_ptr<View>> 30   return std::vector<std::unique_ptr<View>>();  in getStartViews() 33 std::vector<std::unique_ptr<View>> 36   return std::vector<std::unique_ptr<View>>();  in getPostInstrInfoViews() 39 std::vector<std::unique_ptr<View>> 42   return std::vector<std::unique_ptr<View>>();  in getEndViews()
  | 
| /freebsd/crypto/krb5/src/windows/leash/htmlhelp/ | 
| H A D | Index.hhk | 120 			<param name="Name" value="view"> 121 			<param name="Name" value="View Encryption Type"> 162 			<param name="Name" value="view or choose for ticket"> 188 			<param name="Name" value="view tickets flagged as forwardable"> 189 			<param name="Name" value="View Tickets"> 293 			<param name="Name" value="view tickets for"> 294 			<param name="Name" value="View Tickets"> 326 			<param name="Name" value="View Tickets"> 349 			<param name="Name" value="view tickets flagged as renewable"> 350 			<param name="Name" value="View Tickets"> [all …] 
 | 
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ | 
| H A D | ModuleCache.h | 33 ///  - UUID view: 35 ///  - Sysroot view: 38 /// UUID views stores a real module file, whereas Sysroot view holds a symbolic 39 /// link to UUID-view file. 42 /// UUID view   : 45 /// Sysroot view: /tmp/lldb/remote-linux/ubuntu/lib/x86_64-linux-gnu/libc.so.6
  | 
| /freebsd/usr.sbin/bsdconfig/includes/ | 
| H A D | USAGE | 39 	View a list of available includes: 43 	View functions for all available includes (function names are 48 	View functions with less(1) (function names are not highlighted): 52 	View functions with less(1) and color: 56 	View functions from `common.subr':
  |