Searched refs:st (Results 426 - 450 of 722) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/lib/libsldap/common/
H A Dns_internal.h206 void __s_api_debug_pause(int priority, int st, const char *mesg);
216 #define MKERROR(priority, err, st, mesg, retErr) \
220 (err)->status = (st); \
221 __s_api_debug_pause(priority, st, (err)->message);
230 #define MKERROR_PWD_MGMT(err, st, mesg, pwd_status, sec_until_exp, retErr) \
234 (err)->status = (st); \
/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vcosf.S159 st %i1,[%fp+xsave] ! save arguments
160 st %i3,[%fp+ysave]
162 st %i0,[%fp+nsave]
163 st %i2,[%fp+sxsave]
164 st %i4,[%fp+sysave]
202 st %f10,[%o0]
213 st %f12,[%o1]
224 st %f14,[%o2]
235 st %f16,[%o3]
378 st
[all...]
H A D__vsinf.S159 st %i1,[%fp+xsave] ! save arguments
160 st %i3,[%fp+ysave]
162 st %i0,[%fp+nsave]
163 st %i2,[%fp+sxsave]
164 st %i4,[%fp+sysave]
202 st %f10,[%o0]
213 st %f12,[%o1]
224 st %f14,[%o2]
235 st %f16,[%o3]
374 st
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_mip.c206 const char *st; local
235 st = get_desc(adv_desc, ext_type, ADV_TBL_LEN);
237 st = get_desc(reg_desc, ext_type, REG_TBL_LEN);
241 "Extension header type = %d %s", ext_type, st); local
244 st = get_desc(genauth_desc, gen_exthdr->subtype,
247 "Subtype = %d %s", gen_exthdr->subtype, st); local
/illumos-gate/usr/src/cmd/fs.d/ufs/fssnap/
H A Dfssnap.c393 struct stat st; local
410 if (stat(*path, &st) < 0) {
420 } else if (S_ISDIR(st.st_mode)) {
444 } else if (S_ISREG(st.st_mode)) {
622 struct stat st; local
639 if (stat(wpath, &st) == 0)
/illumos-gate/usr/src/uts/common/io/cxgbe/common/
H A Dcommon.h410 void t4_tp_get_err_stats(struct adapter *adap, struct tp_err_stats *st);
411 void t4_tp_get_proxy_stats(struct adapter *adap, struct tp_proxy_stats *st);
412 void t4_tp_get_cpl_stats(struct adapter *adap, struct tp_cpl_stats *st);
413 void t4_tp_get_rdma_stats(struct adapter *adap, struct tp_rdma_stats *st);
414 void t4_get_usm_stats(struct adapter *adap, struct tp_usm_stats *st);
418 struct tp_fcoe_stats *st);
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dsyslog.c209 struct stat st;
211 if ((ul = strlen(buf)) < sizeof(ua.sun_path) && !stat(buf, &st) && S_ISSOCK(st.st_mode))
/illumos-gate/usr/src/lib/libast/common/misc/
H A Dglob.c124 struct stat st; local
126 if ((flags & GLOB_STARSTAR) ? (*gp->gl_lstat)(path, &st) : (*gp->gl_stat)(path, &st))
128 else if (S_ISDIR(st.st_mode))
130 else if (!S_ISREG(st.st_mode))
132 else if (st.st_mode & (S_IXUSR|S_IXGRP|S_IXOTH))
/illumos-gate/usr/src/cmd/lp/filter/postscript/postreverse/
H A Dpostreverse.c576 struct stat st; local
578 if (stat(name, &st) < 0) {
582 if (st.st_size == 0) {
593 if ((document->start = mmap((void *)0, (size_t)st.st_size, PROT_READ,
597 st.st_size, fd, strerror(errno));
604 document->start + st.st_size);
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSrvLocHeader.java552 StringTokenizer st = new StringTokenizer(s, ",()", true);
558 while (st.hasMoreElements()) {
559 String tok = st.nextToken();
/illumos-gate/usr/src/lib/libproc/sparc/
H A DPisadep.c140 struct stat64 st; local
149 if (stat64(path, &st) == -1 || st.st_size == 0)
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DpmAuthOptions.java322 StringTokenizer st = new StringTokenizer(msg, "\n", false);
324 while (st.hasMoreTokens())
325 v.addElement(st.nextToken());
H A DpmHelpSearchPanel.java339 StringTokenizer st = null;
343 st = new StringTokenizer(s);
344 while (st.hasMoreTokens())
345 v.addElement(st.nextToken());
H A DpmTop.java1137 StringTokenizer st = new StringTokenizer(
1139 while (st.hasMoreTokens()) {
1140 addToCommandLog("% " + st.nextToken());
1145 st = new StringTokenizer(errorLog, "\n\r", false);
1146 while (st.hasMoreTokens()) {
1147 addToCommandLog(st.nextToken());
1153 st = new StringTokenizer(warningLog, "\n\r", false);
1154 while (st.hasMoreTokens()) {
1155 addToCommandLog(st.nextToken());
/illumos-gate/usr/src/cmd/sendmail/src/
H A Drecipient.c1445 struct stat st; local
1655 rval = safefile(fname, uid, gid, user, sfflags, S_IREAD, &st);
1670 else if (filechanged(fname, sm_io_getinfo(fp,SM_IO_WHAT_FD, NULL), &st))
1717 if (fstat(sm_io_getinfo(fp, SM_IO_WHAT_FD, NULL), &st) < 0)
1737 ctladdr->q_uid = st.st_uid;
1738 ctladdr->q_gid = st.st_gid;
1741 if (ca != NULL && ca->q_uid == st.st_uid)
1751 pw = sm_getpwuid(st.st_uid);
1754 ctladdr->q_uid = st.st_uid;
1808 if (bitset(mode, st
[all...]
/illumos-gate/usr/src/cmd/fs.d/nfs/lockd/
H A Dlockd.c470 struct stat st; local
472 if (stat(ncdev, &st) < 0)
474 return (st.st_rdev);
/illumos-gate/usr/src/cmd/fstyp/
H A Dfstyp.c417 struct stat st; local
459 if ((stat(path, &st) < 0) ||
460 ((st.st_mode & S_IXUSR) == 0)) {
/illumos-gate/usr/src/cmd/fuser/
H A Dfuser.c110 struct stat st; local
124 if ((stat(specname, &st) == 0) && S_ISBLK(st.st_mode))
/illumos-gate/usr/src/cmd/svc/startd/
H A Dutmpx.c69 while (st->st_initial && !utmpx_truncated)
382 tstamp = st->st_start_time.tv_sec;
398 if (!st->st_initial || utmpx_truncated)
/illumos-gate/usr/src/uts/common/io/chxge/com/
H A Dch_mac.c318 struct mac_statistics st; local
319 u32 *p = (u32 *) & st, i;
323 for (i = 0; i < sizeof (st) / sizeof (u32); i++)
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfrd.c138 sfstat_t st; local
154 { if((r = sysfstatf(f->file,&st)) < 0)
156 if((r = (f->extent = st.st_size) - f->here) <= 0 )
/illumos-gate/usr/src/lib/libctf/common/
H A Dctf_lib.c198 struct stat64 st; local
212 if (fstat64(fd, &st) == -1)
227 ctfsect.cts_data = mmap64(NULL, st.st_size, PROT_READ,
236 ctfsect.cts_size = (size_t)st.st_size;
/illumos-gate/usr/src/lib/libpp/common/
H A Dppop.c344 struct stat st; local
388 if (!*p || stat((pathcanon(p, 0), p), &st))
394 if (!pp.c && (dp->c || dp->name && SAMEID(&dp->id, &st)))
401 SAVEID(&pp.cdir.id, &st);
555 if (!*p || stat((pathcanon(p, 0), p), &st))
561 if (!pp.hosted && ((dp->type & TYPE_HOSTED) || dp->name && SAMEID(&dp->id, &st)))
571 SAVEID(&pp.hostdir.id, &st);
599 if (stat(p, &st))
602 if (dp->name && SAMEID(&dp->id, &st))
604 if (pp.cdir.path && SAMEID(&pp.cdir.id, &st))
[all...]
/illumos-gate/usr/src/lib/libc/sparcv9/gen/
H A Dmemset.s124 st %o1, [%o5] ! 4-byte writing loop
/illumos-gate/usr/src/cmd/ndmpd/tlm/
H A Dtlm_traverse.c203 fs_getstat(char *path, fs_fhandle_t *fh, struct stat64 *st) argument
205 if (lstat64(path, st) == -1)
208 fh->fh_fid = st->st_ino;
210 if (!S_ISDIR(st->st_mode))
229 struct stat64 st; local
257 if (lstat64(file_path, &st) != 0) {
262 fh.fh_fid = st.st_ino;
264 if (S_ISDIR(st.st_mode))
268 (char *)ptr->d_name, n_entries, &st, &fh) != 0)

Completed in 116 milliseconds

<<11121314151617181920>>