HomeSort by relevance Sort by last modified time
    Searched defs:dirbuf (Results 1 - 14 of 14) sorted by null

  /onnv/onnv-gate/usr/src/head/rpcsvc/
dbm.h 57 char dirbuf[DBLKSIZ]; variable
  /onnv/onnv-gate/usr/src/ucbhead/
dbm.h 63 char dirbuf[DBLKSIZ]; variable
  /onnv/onnv-gate/usr/src/cmd/rexd/
under.c 91 char dirbuf[1024]; local
160 strcpy(dirbuf, tmpdir);
161 strcat(dirbuf, "/");
162 strcat(dirbuf, subdir);
163 status = runcmd(dirbuf, argv[2], &argv[2]);
rpc.rexd.c 833 char dirbuf[1024]; local
891 strcpy(dirbuf, fsname);
912 * (dirbuf is modified in place!)
950 strcpy(dirbuf, tmpdir);
953 strcpy(dirbuf, mountedon);
997 strcpy(dirbuf, tmpdir);
1002 * "dirbuf" now contains the local mount point, so just tack on
1005 strcat(dirbuf, subdir);
1230 if (chdir(dirbuf)) {
1231 fprintf(stderr, "rexd: can't chdir to %s\n", dirbuf);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/udfs/fsck/
pass1.c 86 static uint8_t *dirbuf; variable
158 if (dirbuf) {
159 free(dirbuf);
160 dirbuf = NULL;
197 if (dirbuf) {
198 free(dirbuf);
199 dirbuf = NULL;
290 * dir_baseoff - offset at start of dirbuf
295 * dir_fidp - pointer to dirbuf or immediate data in file entry
321 if (dirbuf) {
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/SDBM_File/sdbm/
sdbm.h 31 long dirbno; /* current block in dirbuf */
32 char dirbuf[DBLKSIZ]; /* directory file block buffer */ member in struct:__anon1055
  /onnv/onnv-gate/usr/src/cmd/ypcmd/
makedbm.c 121 char dirbuf[MAXPATHLEN]; local
370 strcpy(dirbuf, outalias);
371 strcat(dirbuf, ".tmp");
372 if ((fdb = dbm_open(dirbuf, O_RDWR | O_CREAT, 0644)) == NULL) {
373 fprintf(stderr, "makedbm: can't open %s\n", dirbuf);
376 strcpy(dirbuf, outalias);
378 strcat(dirbuf, dbm_dir);
461 if (rename(tmpdirbuf, dirbuf) < 0) {
471 * sprintf(buf, "mv %s %s", tmpdirbuf, dirbuf);
  /onnv/onnv-gate/usr/src/uts/common/fs/fd/
fdops.c 111 struct fddirect dirbuf; local
149 dirbuf.d_name[i] = '\0';
152 dirbuf.d_ino = fdtoi(n);
153 numtos((ulong_t)n, dirbuf.d_name);
154 error = uiomove((caddr_t)&dirbuf + modoff,
  /onnv/onnv-gate/usr/src/cmd/du/
du.c 290 char dirbuf[PATH_MAX + 1]; local
437 if (getcwd(dirbuf, PATH_MAX) == NULL) {
507 ret = chdir(dirbuf);
  /onnv/onnv-gate/usr/src/lib/fm/libfmd_log/common/
fmd_log.c 283 char dirbuf[PATH_MAX], path[PATH_MAX], *dirpath; local
289 (void) strlcpy(dirbuf, lp->log_path, sizeof (dirbuf));
290 dirpath = dirname(dirbuf);
  /onnv/onnv-gate/usr/src/cmd/backup/restore/
dirs.c 446 static char dirbuf[DIRBLKSIZ]; variable
462 ((struct direct *)(dirbuf + prev))->d_reclen =
464 (void) fwrite(dirbuf, 1, DIRBLKSIZ, df);
469 bcopy((char *)dp, dirbuf + dirloc, (size_t)dp->d_reclen);
486 ((struct direct *)(dirbuf + prev))->d_reclen = DIRBLKSIZ - prev;
487 (void) fwrite(dirbuf, (size_t)dirloc, 1, df);
  /onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/
fsys_xfs.c 63 #define dirbuf ((char *)FSYS_BUF) macro
303 0, 100, dirbuf);
346 #define h ((xfs_dir2_leaf_hdr_t *)dirbuf)
378 #define dau ((xfs_dir2_data_union_t *)dirbuf)
385 xfs_read (dirbuf, 4);
395 xfs_read ((char *)dirbuf + 4, 5);
400 xfs_read (dirbuf, toread);
401 name = (char *)dirbuf;
423 xfs_read (dirbuf, sizeof(xfs_dir2_data_hdr_t));
424 if (((xfs_dir2_data_hdr_t *)dirbuf)->magic == le32(XFS_DIR2_BLOCK_MAGIC))
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/port/threads/
spawn.c 124 if ((buflen = getdents64(procfd, dp, DIRBUF)) <= 0) {
193 perform_file_actions(file_attr_t *fap, void *dirbuf)
223 if (spawn_closefrom(fap->fa_filedes, dirbuf))
286 void *dirbuf = NULL; local
298 if ((dirbuf = lmalloc(DIRBUF)) == NULL)
306 if (dirbuf)
307 lfree(dirbuf, DIRBUF);
315 if (dirbuf)
380 void *dirbuf = NULL; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cron/
at.c 558 char dirbuf[PATH_MAX + 1]; local
678 dirbuf[0] = NULL;
691 dirbuf);
694 fprintf(xfp, "%s", dirbuf);
701 fscanf(xfp, "%" BUFFMT(PATH_MAX) "s", dirbuf);
702 printf("%s", dirbuf);

Completed in 1320 milliseconds