HomeSort by: relevance | last modified time | path
    Searched defs:files (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/sys/arch/x68k/stand/xxboot/
conf.c 32 struct open_file files[SOPEN_MAX]; variable in typeref:struct:open_file[]
  /src/sys/lib/libsa/
files.c 1 /* $NetBSD: files.c,v 1.2 2022/04/24 06:52:59 mlelstv Exp $ */
4 * files.c:
12 struct open_file files[SOPEN_MAX]; variable in typeref:struct:open_file[]
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_debugfs.h 9 * copy of this software and associated documentation files (the "Software"),
32 const struct drm_info_list *files; member in struct:amdgpu_debugfs
41 const struct drm_info_list *files,
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
debugfs_engines.c 36 static const struct debugfs_gt_file files[] = { local in function:debugfs_engines_register
40 debugfs_gt_register_files(gt, root, files, ARRAY_SIZE(files));
debugfs_gt_pm.c 597 static const struct debugfs_gt_file files[] = { local in function:debugfs_gt_pm_register
605 debugfs_gt_register_files(gt, root, files, ARRAY_SIZE(files));
  /src/share/man/man0/
Makefile 11 FILES= makewhatis.sed
19 # Takes out some fluff from the PostScript files created by
29 MAN0SRCS+= all.files
30 MAN0SRCS+= ${SECTIONS:@S@man${S}pages.files@}
41 all.files:
59 man${_S}pages.files: all.files
70 man${_S}pages.ps: man${_S}pages.files
108 .include <bsd.files.mk>
  /src/games/phantasia/
setup.c 4 * setup.c - set up all files for Phantasia
39 / FUNCTION: setup files for Phantasia 3.3.2
60 / Create all necessary files. Note that nothing needs to be
61 / put in these files.
66 static const char *const files[] = { /* all files to create */
85 FILE *fp; /* for opening files */
86 struct stat fbuf; /* for getting files statistics */
104 umask(0117); /* only owner can read/write created files */
106 /* try to create data files */
65 static const char *const files[] = { \/* all files to create *\/ variable in typeref:typename:const char * const[]
    [all...]
Makefile 21 FILES=gold lastdead mess monsters void motd
25 FILES+=${file}
29 CLEANFILES+=map mkdata setup.lo host_phantglobs.lo ${ALLFILES} files.stamp
31 realall: ${FILES}
33 ${FILES}: files.stamp
34 files.stamp: mkdata monsters.asc
35 ${_MKMSG_CREATE} ${FILES}
  /src/sys/compat/common/
compat_50_quota.c 74 struct quotaval blocks, files; local in function:compat_50_sys_quotactl
119 error = vfs_quotactl_get(mp, &key, &files);
124 quotavals_to_dqblk(&blocks, &files, &dqblk);
133 dqblk_to_quotavals(&dqblk, &blocks, &files);
145 error = vfs_quotactl_put(mp, &key, &files);
  /src/tests/kernel/
t_fcntl.c 52 } files[] = { variable in typeref:typename:const struct __anon13e2839a0108[]
66 for (size_t i = 0; i < __arraycount(files); i++) {
67 fd = open(files[i].name, O_RDONLY|O_NOFOLLOW);
68 ATF_REQUIRE_MSG(fd != -1, "Cannot open `%s'", files[i].name);
70 if (files[i].rv) {
71 ATF_REQUIRE_MSG(errno == files[i].rv,
73 files[i].rv, files[i].name);
76 "Can't get path for `%s' (%s)", files[i].name,
78 ATF_REQUIRE_MSG(strcmp(files[i].name, path) == 0
    [all...]
  /src/sbin/mount_portal/
activate.c 114 int *files; local in function:send_reply
136 cmsgsize = CMSG_LEN(sizeof(*files));
150 files = (int *)CMSG_DATA(cmsg);
151 files[0] = fd;
  /src/lib/librefuse/refuse/
legacy.h 54 long files; member in struct:fuse_statfs
  /src/libexec/rpc.rquotad/
rquotad.c 188 const struct quotaval *files,
203 rq->rq_fhardlimit = limit_to_rquota(files->qv_hardlimit);
204 rq->rq_fsoftlimit = limit_to_rquota(files->qv_softlimit);
205 rq->rq_curfiles = files->qv_usage;
206 rq->rq_ftimeleft = time_to_rquota(files->qv_expiretime, now.tv_sec);
218 struct quotaval blocks, files; local in function:sendquota
289 if (quota_get(qh, &qk, &files) < 0) {
298 quotavals_to_rquota(&blocks, &files,
  /src/usr.sbin/rbootd/
defs.h 49 ** Common #define's and external variables. All other files should
79 #define C_MAXFILE 16 /* max number of boot-able files */
109 char *files[C_MAXFILE]; /* boot-able files */ member in struct:client_s
135 extern const char *BootDir; /* directory w/boot files */
142 extern char *BootFiles[]; /* list of boot files */
  /src/sys/ufs/lfs/
ulfs_quota1.c 479 struct quotaval blocks, files; local in function:lfsquota1_handle_cmd_get
497 lfs_dqblk_to_quotavals(&dq->dq_un.dq1_dqb, &blocks, &files);
504 if (files.qv_expiretime > 0)
505 files.qv_grace = files.qv_expiretime;
507 files.qv_grace = MAX_DQ_TIME;
515 *qv = files;
735 * Q_SYNC - sync quota files to disk.
  /src/usr.bin/rdist/
main.c 69 int iamremote; /* act as remote server for transferring files */
249 * rcp like interface for distributing files.
256 struct namelist *files, *hosts; local in function:docmdargs
265 files = NULL;
270 files = prev = nl;
295 prnames(files);
299 insert(NULL, files, hosts, cmds);
301 freenl(files);
docmd.c 52 FILE *lfp; /* log file for recording files updated */
123 * Process commands for sending files to other machines.
135 struct namelist * volatile files = xfiles; local in function:doarrow
141 (long)files, rhost, (long)cmds);
143 if (files == NULL) {
144 error("no files to be updated\n");
149 ddir = files->n_next != NULL; /* destination is a directory */
163 for (f = files; f != NULL; f = f->n_next) {
372 * Process commands for comparing files to time stamp files
    [all...]
  /src/usr.sbin/lpr/common_source/
rmjob.c 69 static int all = 0; /* eliminate all files (root only) */
83 struct dirent **files; local in function:rmjob
93 all = 1; /* all files in local queue */
109 if ((nitems = scandir(".", &files, iscf, NULL)) < 0)
127 * process the files
130 process(files[i]->d_name);
197 case 'U': /* unlink associated files */
277 * files sent from the remote machine to be removed.
294 * Check to see if we are sending files to a remote machine. If we are,
295 * then try removing files on the remote machine
    [all...]
  /src/sys/ufs/ufs/
ufs_quota1.c 489 struct quotaval blocks, files; local in function:quota1_handle_cmd_get
507 dqblk_to_quotavals(&dq->dq_un.dq1_dqb, &blocks, &files);
514 if (files.qv_expiretime > 0)
515 files.qv_grace = files.qv_expiretime;
517 files.qv_grace = MAX_DQ_TIME;
525 *qv = files;
745 * Q_SYNC - sync quota files to disk.
  /src/usr.bin/cvslatest/
cvslatest.c 45 * Entries files
210 static const char *files[] = { local in function:checkDir
215 for (i = 0; i < __arraycount(files); i++) {
216 snprintf(path, pathlen, "%s/%s", name, files[i]);
  /src/usr.bin/error/
main.c 67 Eptr **files; /* array of pointers into errors*/ variable in typeref:typename:Eptr **
68 bool *touchedfiles; /* which files we touched */
74 bool query = false; /* query the operator if touch files */
78 static bool notouch = false; /* don't touch ANY files */
168 findfiles(nerrors, errors, &nfiles, &files);
181 "sacrosinct files.\n", ndiscard);
193 "into the files.\n", ntrue);
195 filenames(nfiles, files);
197 if (touchfiles(nfiles, files, &ed_argc, &ed_argv) && edit_files)
208 : "Do you still want to edit the files you touched? "))
    [all...]
  /src/regress/sys/kern/unfdpass/
unfdpass.c 94 int *files = NULL; local in function:main
146 * Create the test files.
259 files = (int *)CMSG_DATA(cmp);
277 * Read the files and print their contents.
279 if (files == NULL)
285 fstat(files[i], &st);
290 sock = files[i];
293 c = read (files[i], buf, sizeof(buf));
352 int i, fd, sock, nfd, *files; local in function:child
362 files = (int *)CMSG_DATA(fdcm)
    [all...]
  /src/usr.bin/sed/
main.c 79 * Linked list of units (strings and files) to be compiled
94 * Linked list of files to be processed
102 * Linked list pointer to files and pointer to current
105 static struct s_flist *files, **fl_nextp = &files; variable in typeref:struct:s_flist *
114 static int ispan; /* Whether inplace editing spans across files */
118 * units, but span across input files. The latter is optional if editing
155 ispan = 1; /* span across input files */
176 ispan = 0; /* don't span across input files */
240 * together. Empty strings and files are ignored
    [all...]
  /src/usr.sbin/syslogd/
sign.h 155 struct filed_queue_head files; member in struct:signature_group_t
  /src/etc/
Makefile 16 # KERNCONFDIR is where the configuration files for kernels are found;
28 # snapshot: calls distribution, above, and then tars up the files
87 # MD Makefile.inc files can add to this.
159 ${MAKEDIRTARGET} . install-etc-files
268 # install-etc-files --
269 # Install etc (config) files; not performed by "make build"
271 install-etc-files: .PHONY .MAKE check_DESTDIR MAKEDEV
367 OBSOLETE.files= base comp etc games gpufw man misc rescue text
369 OBSOLETE.files+= debug
372 OBSOLETE.files+= dt
    [all...]

Completed in 27 milliseconds

1 2