Home
last modified time | relevance | path

Searched refs:view (Results 1 – 25 of 192) sorted by relevance

12345678

/freebsd-13.1/tools/lua/
H A Dtemplate.lua163 if byte(view, 1) == SOL then path = sub(view, 2) end
171 return function(view) return func(view, false) end
175 return function(view) return func(view, true) end
258 context.view = template.process(view, context)
260 layout.view = context.view or EMPTY
266 context.view = template.process(view, context)
268 layout.view = context.view
275 context.view = template.process(view, context)
281 context.view = template.process(view, context)
369 view = template.load(view, plain)
[all …]
/freebsd-13.1/contrib/wpa/src/utils/
H A Dbrowser.c22 WebKitWebView *view; member
188 title = webkit_web_view_get_title(ctx->view); in view_cb_notify_title()
295 WebKitWebView *view; in hs20_web_browser() local
327 view = WEBKIT_WEB_VIEW(webkit_web_view_new()); in hs20_web_browser()
328 ctx.view = view; in hs20_web_browser()
335 g_signal_connect(G_OBJECT(view), "decide-policy", in hs20_web_browser()
339 g_signal_connect(G_OBJECT(view), "notify::title", in hs20_web_browser()
354 g_signal_connect(G_OBJECT(view), "title-changed", in hs20_web_browser()
361 gtk_widget_grab_focus(GTK_WIDGET(view)); in hs20_web_browser()
364 settings = webkit_web_view_get_settings(view); in hs20_web_browser()
[all …]
/freebsd-13.1/contrib/bsnmp/snmp_vacm/
H A Dvacm_snmp.c482 if (view != NULL) { in op_vacm_view()
500 memset(view->mask, 0, sizeof(view->mask)); in op_vacm_view()
592 return (string_get(val, view->mask, sizeof(view->mask))); in op_vacm_view()
594 if (view->exclude) in op_vacm_view()
827 for (view = vacm_first_view(); view != NULL; view = vacm_next_view(view)) in vacm_get_view()
830 return (view); in vacm_get_view()
848 for (view = vacm_first_view(); view != NULL; view = vacm_next_view(view)) in vacm_get_next_view()
861 for (view = vacm_first_view(); view != NULL; view = vacm_next_view(view)) in vacm_get_view_by_name()
864 return (view); in vacm_get_view_by_name()
1010 for (view = vacm_first_view(); view != NULL; view = vacm_next_view(view)) in vacm_dump()
[all …]
/freebsd-13.1/contrib/unbound/services/
H A Dview.c50 struct view* a = (struct view*)v1; in view_cmp()
51 struct view* b = (struct view*)v2; in view_cmp()
74 view_delete(struct view* v) in view_delete()
88 struct view* v = (struct view*)n; in delviewnode()
103 static struct view*
106 struct view* v = (struct view*)calloc(1, sizeof(*v)); in view_create()
120 static struct view*
147 struct view* v; in views_apply_cfg()
223 struct view*
226 struct view* v; in views_find_view()
[all …]
H A Dview.h66 struct view { struct
120 void view_delete(struct view* v);
135 struct view* views_find_view(struct views* vs, const char* name, int write);
/freebsd-13.1/sys/xen/interface/hvm/
H A Dhvm_op.h43 uint16_t view; member
51 uint16_t view; member
254 uint16_t view; member
263 uint16_t view; member
276 uint16_t view; member
288 uint16_t view; member
305 uint16_t view; member
367 struct xen_hvm_altp2m_view view; member
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dranges60 // [range.view], views
67 concept view = ...;
94 // [view.interface], class template view_interface
118 // [range.empty], empty view
123 // [range.all], all view
138 // [range.drop], drop view
139 template<view V>
145 // [range.transform], transform view
147 requires view<V> && is_object_v<F> &&
152 // [range.common], common view
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DStringExtractorGDBRemote.cpp619 llvm::StringRef view = llvm::StringRef(m_packet).substr(m_index); in GetPidTid() local
620 size_t initial_length = view.size(); in GetPidTid()
624 if (view.consume_front("p")) { in GetPidTid()
626 if (view.consume_front("-1")) { in GetPidTid()
629 } else if (view.consumeInteger(16, pid) || pid == 0) { in GetPidTid()
636 if (!view.consume_front(".")) { in GetPidTid()
638 m_index += initial_length - view.size(); in GetPidTid()
645 if (view.consume_front("-1")) { in GetPidTid()
648 } else if (view.consumeInteger(16, tid) || tid == 0 || pid == AllProcesses) { in GetPidTid()
655 m_index += initial_length - view.size(); in GetPidTid()
H A DStringExtractor.cpp343 llvm::StringRef view(m_packet); in GetNameColonValue() local
344 if (view.empty()) in GetNameColonValue()
348 view = view.substr(m_index); in GetNameColonValue()
349 std::tie(a, b) = view.split(':'); in GetNameColonValue()
361 size_t bytes_consumed = d.data() - view.data(); in GetNameColonValue()
/freebsd-13.1/contrib/apr/
H A DCHANGES54 *) http://svn.apache.org/viewvc/apr/apr/branches/1.6.x/CHANGES?view=markup
58 *) http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/CHANGES?view=markup
62 *) http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/CHANGES?view=markup
66 *) http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/CHANGES?view=markup
70 *) http://svn.apache.org/viewvc/apr/apr/branches/1.2.x/CHANGES?view=markup
74 *) http://svn.apache.org/viewvc/apr/apr/branches/1.1.x/CHANGES?view=markup
78 *) http://svn.apache.org/viewvc/apr/apr/branches/1.0.x/CHANGES?view=markup
82 *) http://svn.apache.org/viewvc/apr/apr/branches/0.9.x/CHANGES?view=markup
/freebsd-13.1/contrib/apr-util/
H A DCHANGES59 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.5.x/CHANGES?view=markup
63 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.4.x/CHANGES?view=markup
67 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.3.x/CHANGES?view=markup
71 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.2.x/CHANGES?view=markup
75 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.1.x/CHANGES?view=markup
79 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.0.x/CHANGES?view=markup
83 *) http://svn.apache.org/viewvc/apr/apr-util/branches/0.9.x/CHANGES?view=markup
/freebsd-13.1/contrib/llvm-project/libcxx/include/__ranges/
H A Dconcepts.h83 concept view = variable
90 view<_Range> && range<const _Range> &&
125 (view<remove_cvref_t<_Tp>> && constructible_from<remove_cvref_t<_Tp>, _Tp>) ||
126 (!view<remove_cvref_t<_Tp>> && borrowed_range<_Tp>)
H A Dall.h40 requires ranges::view<decay_t<_Tp>>
49 requires (!ranges::view<decay_t<_Tp>>) &&
59 requires (!ranges::view<decay_t<_Tp>> &&
/freebsd-13.1/contrib/bsnmp/snmpd/
H A Dmain.c380 struct vacm_view *view; in snmp_pdu_auth_access() local
470 if ((!suboid && !view->exclude) || (suboid && view->exclude)) { in snmp_pdu_auth_access()
2992 if (view == NULL) in vacm_next_view()
2995 return (SLIST_NEXT(view, vvl)); in vacm_next_view()
3028 if ((view = (struct vacm_view *)malloc(sizeof(*view))) == NULL) in vacm_new_view()
3031 memset(view, 0, sizeof(*view)); in vacm_new_view()
3032 strlcpy(view->viewname, vname, sizeof(view->viewname)); in vacm_new_view()
3038 return (view); in vacm_new_view()
3053 free(view); in vacm_new_view()
3057 return (view); in vacm_new_view()
[all …]
/freebsd-13.1/contrib/unbound/daemon/
H A Dacl_list.h107 struct view* view; member
/freebsd-13.1/contrib/unbound/respip/
H A Drespip.c422 struct view* v; in respip_views_apply_cfg()
872 struct view* view = NULL; in respip_rewrite_reply() local
896 view = cinfo->view; in respip_rewrite_reply()
911 if(view) { in respip_rewrite_reply()
912 lock_rw_rdlock(&view->lock); in respip_rewrite_reply()
913 if(view->respip_set) { in respip_rewrite_reply()
921 if(!raddr && !view->isfirst) in respip_rewrite_reply()
923 if(!raddr && view->isfirst) { in respip_rewrite_reply()
925 view = NULL; in respip_rewrite_reply()
1009 if(view) { in respip_rewrite_reply()
[all …]
H A Drespip.h71 struct view* view; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DMBFIWrapper.cpp56 void MBFIWrapper::view(const Twine &Name, bool isSimple) { in view() function in MBFIWrapper
57 MBFI.view(Name, isSimple); in view()
H A DEdgeBundles.cpp54 view(); in runOnMachineFunction()
99 void EdgeBundles::view() const { in view() function in EdgeBundles
/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-typemaps.swig493 %typemap(in) (TYPEMAP, SIZE) (Py_buffer_RAII view) {
495 res = PyObject_GetBuffer($input, &view.buffer, PyBUF_WRITABLE);
500 size = view.buffer.len;
501 buf = view.buffer.buf;
508 %typemap(in) (TYPEMAP, SIZE) (Py_buffer_RAII view) {
510 res = PyObject_GetBuffer($input, &view.buffer, PyBUF_CONTIG_RO);
515 size = view.buffer.len;
516 buf = view.buffer.buf;
/freebsd-13.1/sys/contrib/device-tree/src/arm/
H A Dam335x-osd335x-common.dtsi26 * Therefore, from a DEVICE_ID revision point of view, the silicon looks
27 * like it is Revision 2.1. However, from an EFUSE_SMA point of view for
/freebsd-13.1/contrib/smbfs/smbutil/
H A DMakefile4 SRCS= smbutil.c dumptree.c login.c lookup.c view.c print.c
/freebsd-13.1/usr.bin/smbutil/
H A DMakefile4 SRCS= smbutil.c dumptree.c login.c lookup.c view.c print.c
/freebsd-13.1/sys/contrib/zstd/programs/
H A Dzstdless.1.md1 zstdless(1) -- view zstandard-compressed files
/freebsd-13.1/usr.bin/vi/
H A DMakefile23 LINKS+= ${BINDIR}/${VI} ${BINDIR}/view
26 MLINKS+=vi.1 ex.1 vi.1 view.1

12345678