Home
last modified time | relevance | path

Searched refs:direct (Results 1 – 25 of 142) sorted by relevance

123456

/titanic_52/usr/src/cmd/install.d/
H A Dinstall.sh92 direct=$2
110 direct=$2
231 if test -f $direct/$FILE -o -f $direct/$FILE/$FILE
234 -c) echo "install: $FILE already exists in $direct"
236 -f) GRP=`ls -l $direct/$FILE | awk '{print $4}'`
237 OWN=`ls -l $direct/$FILE | awk '{print $3}'`
240 mv -f $direct/$FILE $direct/OLD$FILE
241 cp $direct/OL
[all...]
/titanic_52/usr/src/ucbhead/sys/
H A Ddir.h49 * This header file provides BSD compatibility for DIR and direct structures.
53 * The BSD direct structure is similar (not identical) to the dirent
54 * structure. All fields of the direct structure can be obtained using
57 * is not. The BSD version of this routine returns a direct structure.
72 struct direct { struct
79 struct direct { argument
104 ((sizeof (struct direct) - sizeof ((dp)->d_name) + \
141 #define direct64 direct
154 #define direct direct64 macro
160 extern struct direct *readdi
[all...]
/titanic_52/usr/src/lib/libbc/libc/gen/common/
H A Dscandir.c30 * struct direct (through namelist). Returns -1 if there were any errors.
38 scandir(char *dirname, struct direct *(*namelist[]), in scandir()
41 struct direct *d, *p, **names; in scandir()
58 names = (struct direct **)malloc(arraysz * sizeof(struct direct *)); in scandir()
69 p = (struct direct *)malloc(DIRSIZ(d)); in scandir()
84 names = (struct direct **)realloc((char *)names, in scandir()
85 arraysz * sizeof(struct direct *)); in scandir()
93 qsort(names, nitems, sizeof(struct direct *), dcomp); in scandir()
102 alphasort(struct direct **d
[all...]
/titanic_52/usr/src/ucblib/libucb/port/gen/
H A Dscandir.c48 * struct direct (through namelist). Returns -1 if there were any errors.
67 ((sizeof (struct direct) - sizeof ((dp)->d_name) + \
139 scandir(char *dirname, struct direct *(*namelist[]), in scandir()
140 int (*select)(struct direct *), in scandir() argument
141 int (*dcomp)(struct direct **, struct direct **)) in scandir() argument
143 struct direct *d, *p, **names; in scandir()
164 names = (struct direct **)malloc(arraysz * sizeof (struct direct *)); in scandir()
175 p = (struct direct *)mallo in scandir()
[all...]
H A Dreaddir.c56 static struct direct dc;
83 /* Copy dirent into direct */ in internal_readdir()
96 struct direct *
108 /* Copy dirent into direct */ in readdir()
/titanic_52/usr/src/cmd/backup/restore/
H A Ddirs.c84 static void putent(struct direct *);
87 static void dcvt(struct odirect *, struct direct *);
122 struct direct nulldir; in extractdirs()
229 struct direct *dp; in treescan()
307 struct direct *dp; in attrscan()
386 struct direct *dp; in search()
409 struct direct cvtbuf; in putdir()
412 struct direct *dp; in putdir()
428 dp = (struct direct *)(buf + loc); in putdir()
454 putent(struct direct *d
[all...]
/titanic_52/usr/src/lib/libbc/inc/include/sys/
H A Ddir.h27 * Each directory entry is a struct direct containing its file number, the
44 struct direct { struct
60 (((sizeof (struct direct) - (MAXNAMLEN+1) + ((dp)->d_namlen+1)) + 3) & ~3) argument
83 extern struct direct *readdir();
45 d_offdirect global() argument
/titanic_52/usr/src/grub/grub-0.97/stage2/
H A Ddir.h56 * a struct direct at the front of it, containing its inode number,
77 struct direct struct
87 * the directory entry. This requires the amount of space in struct direct argument
93 ((sizeof (struct direct) - (MAXNAMLEN+1)) + (((dp)->d_namlen+1 + 3) &~ 3))
98 * Should use struct direct's, but the name field
141 extern struct direct *readdir ();
H A Dfsys_ffs.c187 struct direct *dp; in ffs_dir()
266 dp = (struct direct *) (FSYS_BUF + off); in ffs_dir()
/titanic_52/usr/src/contrib/ast/src/lib/libast/sfio/
H A Dsfmove.c46 reg int direct; local
115 direct = 0;
133 /* direct transfer to a seekable write stream */
136 direct = SF_WRITE;
148 direct = SF_STRING;
153 if(!direct)
187 if(!direct)
200 { if(direct == SF_WRITE)
/titanic_52/usr/src/boot/include/ufs/ufs/
H A Ddir.h55 * a struct direct at the front of it, containing its inode number,
76 struct direct { struct
105 * the directory entry. This requires the amount of space in struct direct
112 ((__offsetof(struct direct, d_name) + \
113 ((namlen)+1)*sizeof(((struct direct *)0)->d_name[0]) + 3) & ~3)
125 * Template for manipulating directories. Should use struct direct's,
98 d_namedirect global() argument
/titanic_52/usr/src/contrib/ast/src/lib/libast/dir/
H A Dgetdents.c122 register struct direct* sp; /* system */
131 * we assume sizeof(struct dirent) > sizeof(struct direct)
135 n = (siz / MAXREC) * sizeof(struct direct);
140 sp = (struct direct*)((char*)buf + siz - m);
141 while (sp < (struct direct*)((char*)buf + siz - m + n))
/titanic_52/usr/src/uts/common/sys/fs/
H A Dufs_fsdir.h56 * a struct direct at the front of it, containing its inode number,
77 struct direct { struct
86 * the directory entry. This requires the amount of space in struct direct argument
92 ((sizeof (struct direct) - (MAXNAMLEN+1)) + (((dp)->d_namlen+1+3) &~ 3))
97 * Should use struct direct's, but the name field
/titanic_52/usr/src/cmd/fs.d/ufs/ncheck/
H A Dncheck.c126 int dotname(struct direct *dp);
135 struct direct *dreaddir();
413 struct direct *dp; in pass2()
454 struct direct *dp; in pass3()
492 struct direct *
495 struct direct *dp; in dreaddir()
514 dp = (struct direct *) in dreaddir()
525 dotname(struct direct *dp) in dotname()
/titanic_52/usr/src/cmd/fs.d/ufs/fsck/
H A Ddir.c62 static int dircheck(struct inodesc *, struct direct *);
65 static struct direct *fsck_readdir(struct inodesc *);
104 struct direct *dp; in dirscan()
110 struct direct dir; in dirscan()
159 static struct direct *
162 struct direct *dp, *ndp = 0; in fsck_readdir()
175 * a struct direct containing four-byte integers. It's in fsck_readdir()
201 dp = (struct direct *)(bp->b_un.b_buf + idesc->id_loc); in fsck_readdir()
242 dp = (struct direct *)(bp->b_un.b_buf + origloc); in fsck_readdir()
312 ndp = (struct direct *)(b in fsck_readdir()
[all...]
/titanic_52/usr/src/cmd/svc/startd/
H A Dwait.c78 * cleanup operations along the way. If the direct flag is false (meaning
89 wait_remove(wait_info_t *wi, int direct) in wait_remove() argument
125 if (!direct && !wi->wi_ignore) { in wait_remove()
184 * behaviour on removal; similarly, the direct flag is passed through to a
192 wait_register(pid_t pid, const char *inst_fmri, int am_parent, int direct) in wait_register() argument
222 wait_remove(wi, direct); in wait_register()
/titanic_52/usr/src/cmd/vi/port/
H A Dex_data.c46 unsigned char direct[ONMSZ] = variable
93 (unsigned char *)"directory", (unsigned char *)"dir", STRING, 0, 0, direct,
/titanic_52/usr/src/cmd/fs.d/autofs/
H A Dmount.c124 process_opts(options, &fni.direct); in main()
136 if (fni.direct) in main()
147 fni.direct ? MNTTAB_OPTS ",direct" : MNTTAB_OPTS ",indirect"); in main()
172 * Remove pseudo-options "direct", "indirect", "nest", and "ignore" from
173 * option list. Set *directp to 1 if "direct" is found, and 0 otherwise
174 * (mounts are indirect by default). If both "direct" and "indirect" are
196 if (strcmp(opt, "direct") == 0) { in process_opts()
/titanic_52/usr/src/cmd/bnu/
H A DDevices52 # ---A direct line so 'cu -lcua/b' will work
53 # Direct cua/b - 9600 direct
63 # ---Access a direct connection to a system
64 # systemx term/00 - Any direct
91 # with a direct connection to login service (i.e., without
133 Direct cua/b - Any direct
/titanic_52/usr/src/cmd/fs.d/ufs/ff/
H A Dff.c137 struct direct *dreaddir(struct dirstuff *dirp);
138 int dotname(struct direct *dp);
456 struct direct *dp; in pass2()
494 struct direct *dp; in pass3()
558 struct direct *
561 struct direct *dp; in dreaddir()
575 dp = (struct direct *) in dreaddir()
585 dotname(struct direct *dp) in dotname()
/titanic_52/usr/src/uts/common/fs/ufs/
H A Dufs_dir.c93 ((sizeof (struct direct) - (MAXNAMLEN + 1)) + ((len + 1 + 3) &~ 3))
95 (((len) - (sizeof (struct direct) - (MAXNAMLEN + 1))) - 1)
186 struct direct *ep; /* the current directory entry */ in ufs_dirlook()
205 ushort_t ep_reclen; /* direct local d_reclen */ in ufs_dirlook()
414 ep = (struct direct *)(fbp->fb_addr + entryoffsetinblock); in ufs_dirlook()
1018 struct direct *ep; /* directory entry */ in ufs_dircheckforname()
1019 struct direct *nep; /* next directory entry */ in ufs_dircheckforname()
1108 nep = (struct direct *)((char *)ep + ep->d_reclen); in ufs_dircheckforname()
1285 ep = (struct direct *)(fbp->fb_addr + entryoffsetinblk); in ufs_dircheckforname()
1774 struct direct *e in ufs_diraddentry()
[all...]
/titanic_52/usr/src/uts/common/rpcsvc/
H A Dautofs_prot.x88 bool_t isdirect; /* direct mountpoint? */
115 string key<AUTOFS_MAXCOMPONENTLEN>; /* used in direct mounts only */
119 int direct; /* 1 = direct mount */ member
137 % caddr32_t key; /* used in direct mounts */
141 % int32_t direct; /* 1 = direct mount */
209 bool_t isdirect; /* direct mount? */
/titanic_52/usr/src/uts/common/io/softmac/
H A Dsoftmac_fp.c230 dld_capab_direct_t *direct = data; in softmac_capab_direct() local
242 sup->su_direct_rxinfo.slr_rx = (softmac_rx_t)direct->di_rx_cf; in softmac_capab_direct()
243 sup->su_direct_rxinfo.slr_arg = direct->di_rx_ch; in softmac_capab_direct()
245 direct->di_tx_df = (uintptr_t)softmac_fastpath_wput_data; in softmac_capab_direct()
246 direct->di_tx_dh = sup; in softmac_capab_direct()
247 direct->di_tx_fctl_df = (uintptr_t)softmac_tx_is_flow_blocked; in softmac_capab_direct()
248 direct->di_tx_fctl_dh = sup; in softmac_capab_direct()
249 direct->di_tx_cb_df = (uintptr_t)softmac_client_tx_notify; in softmac_capab_direct()
250 direct->di_tx_cb_dh = sup; in softmac_capab_direct()
271 * Don't enable direct callbac in softmac_dld_capab()
[all...]
/titanic_52/usr/src/boot/lib/libstand/
H A Dufs.c447 struct direct *dp;
448 struct direct *edp;
462 dp = (struct direct *)buf;
463 edp = (struct direct *)(buf + buf_size);
475 dp = (struct direct *)((char *)dp + dp->d_reclen);
834 struct direct *dp; in ufs_readdir()
848 dp = (struct direct *)buf; in ufs_readdir()
853 d->d_type = 0; /* illumos ufs does not have type in direct */ in ufs_readdir()
/titanic_52/usr/src/stand/lib/fs/ufs/
H A Dufsops.c92 static struct direct *readdir(struct dirinfo *dstuff);
261 * blocks 0..NDADDR are direct blocks in sbmap()
323 struct direct *dp; in dlook()
403 struct direct *
406 struct direct *dp; in readdir()
436 dp = (struct direct *)(filep->fi_memp + off); in readdir()
907 struct direct *dp; in boot_ufs_getdents()

123456