Searched refs:view (Results 1 - 25 of 35) sorted by relevance

12

/illumos-gate/usr/src/lib/libast/common/cdt/
H A Ddtview.c24 /* Set a view path from dict to view.
50 { for(d = dt; d; d = d->view)
62 for(d = dt; d; d = d->view)
90 { for(d = dt; d; d = d->view)
100 { for(p = dt; ; p = p->view)
109 if(!(d = dt->walk = d->view) ) /* move on to next dictionary */
118 Dt_t* dtview(reg Dt_t* dt, reg Dt_t* view) argument
120 Dt_t* dtview(dt,view)
122 reg Dt_t* view;
[all...]
H A Ddtopen.c56 dt->view = dt->walk = NIL(Dt_t*);
83 dt->view = dt->walk = NIL(Dt_t*);
H A Ddtclose.c47 if(dt->view) /* turn off viewing */
/illumos-gate/usr/src/uts/sun4/sys/
H A Ddvma.h43 uint_t view);
45 uint_t view);
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dattrat.c138 view_to_name(xattr_view_t view) argument
140 if (view >= XATTR_VIEW_LAST || view < 0)
142 return (xattr_view_name[view]);
146 xattr_openat(int basefd, xattr_view_t view, int mode) argument
152 switch (view) {
166 xattrname = view_to_name(view);
236 fgetattr(int basefd, xattr_view_t view, nvlist_t **response) argument
240 if ((xattrfd = xattr_openat(basefd, view, O_XATTR)) < 0)
251 fsetattr(int basefd, xattr_view_t view, nvlist_ argument
265 getattrat(int basefd, xattr_view_t view, const char *name, nvlist_t **response) argument
288 setattrat(int basefd, xattr_view_t view, const char *name, nvlist_t *request) argument
[all...]
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/locality/
H A DLocalityDomain.java43 * Obtain a Locality Group snapshot based on the view
49 * Obtain a Locality Group snapshot based on the view
60 * The view used to create this LocalityDomain.
62 private int view; field in class:LocalityDomain
88 * @param view to use when creating the LocalityDomain.
92 public LocalityDomain(int view) throws Exception argument
94 this.view = view;
95 cookie = jl_init(view);
336 * @param view i
338 jl_init(int view) argument
[all...]
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvacuum.c299 "WHERE sql NOT NULL AND type!='view' "
302 "WHERE sql NOT NULL AND type=='view'",
/illumos-gate/usr/src/lib/libcmdutils/common/
H A Dsysattrs.c40 * attributes in the specified view.
49 sysattr_status(char *file, xattr_view_t view) argument
55 status = getattrat(AT_FDCWD, view, file, &response);
/illumos-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Lgrp/
H A DLgrp.pm169 my ($self, $view);
170 $view = shift;
171 $self->{COOKIE} = ($view ? lgrp_init($view) : lgrp_init()) or
195 sub view subroutine
197 scalar @_ == 1 or _usage("view(class)");
H A DLgrp.xs196 # lgrp_init([view])
197 # Use LGRP_VIEW_OS as the default view.
200 lgrp_init(lgrp_view_t view = LGRP_VIEW_OS)
/illumos-gate/usr/src/ucbcmd/
H A DMakefile104 view \
153 $(ROOTBIN)/view := LINKDEST= ../bin/edit
/illumos-gate/usr/src/uts/sun4u/sys/
H A Diommu.h149 extern void iommu_dvma_unload(ddi_dma_handle_t h, uint_t objindex, uint_t view);
151 extern void iommu_dvma_sync(ddi_dma_handle_t h, uint_t objindex, uint_t view);
/illumos-gate/usr/src/cmd/fs.d/smbclnt/smbutil/
H A DMakefile35 OBJS= smbutil.o login.o lookup.o print.o status.o view.o
/illumos-gate/usr/src/lib/liblgrp/common/
H A Dlgrp.c60 * Get generation ID of lgroup hierarchy given view
62 * change for caller's view)
65 lgrp_generation(lgrp_view_t view) argument
67 return (_lgrpsys(LGRP_SYS_GENERATION, view, NULL));
308 * Prune lgroup hierarchy for caller's view
393 lgrp_init(lgrp_view_t view) argument
401 * Check for legal view
403 if (view != LGRP_VIEW_OS && view != LGRP_VIEW_CALLER) {
416 gen = lgrp_generation(view);
[all...]
/illumos-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Lgrp/t/
H A DLgrp.t92 my $view = lgrp_view($c);
94 ok($view, LGRP_VIEW_CALLER, 'View is LGRP_VIEW_CALLER');
107 $view = lgrp_view($c);
109 ok($view, LGRP_VIEW_OS, 'View is LGRP_VIEW_OS');
237 ok($c->view, LGRP_VIEW_OS);
/illumos-gate/usr/src/cmd/vi/port/
H A DMakefile93 $(ROOTHASBIN)/vedit $(ROOTHASBIN)/vi $(ROOTHASBIN)/view \
95 ROOTXPG4LINKS= $(ROOTXPG4BIN)/vi $(ROOTXPG4BIN)/view $(ROOTXPG4BIN)/edit \
97 ROOTXPG6LINKS= $(ROOTXPG6BIN)/vi $(ROOTXPG6BIN)/view $(ROOTXPG6BIN)/edit \
/illumos-gate/usr/src/lib/libast/common/misc/
H A Dmime.c597 * return expanded command/path/value for <view,name,type,opts>
602 mimeview(Mime_t* mp, const char* view, const char* name, const char* type, const char* opts) argument
613 if (!view || strcasecmp(view, "test"))
694 if (view && *view && !streq(view, "-"))
695 while (strcasecmp(view, att->name))
/illumos-gate/usr/src/cmd/pools/poold/libjlgrp/
H A Djlgrp.c74 jobject obj, jint view)
78 if ((cookie = lgrp_init(view)) == LGRP_COOKIE_NONE) {
73 Java_com_sun_solaris_service_locality_LocalityDomain_jl_1init(JNIEnv *env, jobject obj, jint view) argument
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/server/
H A DDoPrinterDelete.java89 DoPrinterView.view(curr, ns);
H A DDoPrinterView.java49 view(p, ns);
67 public static void view( method in class:DoPrinterView
/illumos-gate/usr/src/uts/common/sys/
H A Dlgrp_user.h181 int ss_nlgrps_os; /* number of lgroups (OS view) */
185 lgrp_view_t ss_view; /* view of lgroup hierarchy */
224 int ss_nlgrps_os; /* number of lgroups (OS view) */
228 int ss_view; /* view of lgroup hierarchy */
269 lgrp_cookie_t lgrp_init(lgrp_view_t view);
/illumos-gate/usr/src/lib/libast/amd64/include/ast/
H A Dcdt.h122 int nview; /* number of parent view dictionaries */
123 Dt_t* view; /* next on viewpath */ member in struct:_dt_s
285 #define dtvnext(d) (_DT(d)->view)
/illumos-gate/usr/src/lib/libast/common/include/
H A Dcdt.h122 int nview; /* number of parent view dictionaries */
123 Dt_t* view; /* next on viewpath */ member in struct:_dt_s
285 #define dtvnext(d) (_DT(d)->view)
/illumos-gate/usr/src/lib/libast/i386/include/ast/
H A Dcdt.h122 int nview; /* number of parent view dictionaries */
123 Dt_t* view; /* next on viewpath */ member in struct:_dt_s
285 #define dtvnext(d) (_DT(d)->view)
/illumos-gate/usr/src/lib/libast/sparc/include/ast/
H A Dcdt.h122 int nview; /* number of parent view dictionaries */
123 Dt_t* view; /* next on viewpath */ member in struct:_dt_s
285 #define dtvnext(d) (_DT(d)->view)

Completed in 82 milliseconds

12