Home
last modified time | relevance | path

Searched full:view (Results 1 – 25 of 788) sorted by relevance

12345678910>>...32

/freebsd/tools/lua/
H A Dtemplate.lua124 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 Dbrowser.c22 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 DSourceCoverageView.h1 //===- 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 …]
H A DCodeCoverage.cpp97 /// Create source views for the expansions of the view.
98 void attachExpansionSubViews(SourceCoverageView &View,
102 /// Create source views for the branches of the view.
103 void attachBranchSubViews(SourceCoverageView &View,
107 void attachMCDCSubViews(SourceCoverageView &View,
110 /// Create the source view of a particular function.
115 /// Create the main source view of a particular source file.
132 /// Write out a source file view to the filesystem.
306 SourceCoverageView &View, ArrayRef<ExpansionRecord> Expansions, in attachExpansionSubViews() argument
325 View.addExpansion(Expansion.Region, std::move(SubView)); in attachExpansionSubViews()
[all …]
/freebsd/contrib/unbound/services/
H A Dview.h2 * services/view.h - named views containing local zones authority service.
57 /** lock on the view tree */
59 /** rbtree of struct view */
64 * View. Named structure holding local authority zones.
66 struct view { struct
69 /** view name. argument
73 /** view specific local authority zones */ argument
75 /** response-ip configuration data for this view */ argument
77 /** Fallback to global local_zones when there is no match in the view argument
102 * @param v: view is set up. argument
[all …]
H A Dview.c2 * services/view.c - named views containing local zones authority service.
43 #include "services/view.h"
50 struct view* a = (struct view*)v1; in view_cmp()
51 struct view* b = (struct view*)v2; in view_cmp()
75 view_delete(struct view* v) in view_delete()
89 struct view* v = (struct view*)n; in delviewnode()
103 /** create a new view */
104 static struct view*
107 struct view* v = (struct view*)calloc(1, sizeof(*v)); in view_create()
120 /** enter a new view returns with WRlock */
[all …]
/freebsd/contrib/bsnmp/snmp_vacm/
H A Dvacm_snmp.c462 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 Dsnmp_vacm.335 .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 Dranges.cppm
H A Dranges.inc53 // [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 Dstring_view.cppm
/freebsd/contrib/llvm-project/libcxx/include/
H A Dranges62 // [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/sys/contrib/xen/hvm/
H A Dhvm_op.h43 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 Dllvm-mca.1188 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 DDomPrinter.cpp14 // 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/llvm-project/llvm/include/llvm/MCA/
H A DCustomBehaviour.h26 #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 DSummaryView.h10 /// 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 DCustomBehaviour.cpp27 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()
H A DView.cpp1 //===----------------------- View.cpp ---------------------------*- C++ -*-===//
10 /// This file defines the virtual anchor method in View.h to pin the vtable.
14 #include "llvm/MCA/View.h"
21 void View::anchor() {} in anchor()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DModuleCache.h33 /// - 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 DUSAGE39 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':
/freebsd/contrib/unbound/respip/
H A Drespip.c26 #include "services/view.h"
409 /** Iterate through raw view data and apply the view-specific respip
412 * an error. This additional iteration through view configuration data
422 struct view* v; in respip_views_apply_cfg()
427 /** if no respip config for this view then there's in respip_views_apply_cfg()
436 log_err("view '%s' unexpectedly missing", cv->name); in respip_views_apply_cfg()
452 "for view '%s'", cv->name); in respip_views_apply_cfg()
878 struct view* view = NULL; in respip_rewrite_reply() local
902 view = cinfo->view; in respip_rewrite_reply()
907 /** Try to use response-ip config from the view first; use in respip_rewrite_reply()
[all …]
/freebsd/usr.sbin/bsdconfig/
H A Dbsdconfig.8125 Shortcut to the Edit/View Groups menu under groupmgmt.
127 Utilities to Add/Change/View/Delete Group Accounts.
164 Shortcut to the Add New menu under the View/Edit Startup Configuration menu
167 Shortcut to the View/Edit Startup Configuration menu under startup.
169 Shortcut to the Delete menu under the View/Edit Startup Configuration menu
207 Shortcut to the Edit/View Users menu under usermgmt.
209 Utilities to Add/Edit/View/Delete User Accounts.
/freebsd/usr.sbin/bsdconfig/startup/include/
H A Dmessages.subr44 msg_choose_view_details="Choose View Details"
91 msg_reset_desc="Reset to default view settings"
104 msg_view_details="View Details"
105 msg_view_details_desc="Choose view details"
106 msg_view_details_help="Choose which details are shown in the current view"
107 msg_view_edit_startup_configuration="View/Edit Startup Configuration"
/freebsd/contrib/unbound/doc/
H A Dunbound-control.8313 .B view_list_local_zones \fIview\fR
314 \fIlist_local_zones\fR for given view.
316 .B view_local_zone \fIview\fR \fIname\fR \fItype
317 \fIlocal_zone\fR for given view.
319 .B view_local_zone_remove \fIview\fR \fIname
320 \fIlocal_zone_remove\fR for given view.
322 .B view_list_local_data \fIview\fR
323 \fIlist_local_data\fR for given view.
325 .B view_local_data \fIview\fR \fIRR data...
326 \fIlocal_data\fR for given view.
[all …]

12345678910>>...32