Searched refs:files (Results 276 - 300 of 557) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/crypto/heimdal/lib/ntlm/
H A DMakefile.in116 $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
118 { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
119 END { for (dir in files) print dir, files[dir] }'
552 while read files; do \
553 echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
554 $(INSTALL_HEADER) $$files "
[all...]
/freebsd-11-stable/crypto/heimdal/lib/sl/
H A DMakefile.in118 $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
120 { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
121 END { for (dir in files) print dir, files[dir] }'
523 $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
525 if ($$2 == $$4) files[d] = files[
[all...]
/freebsd-11-stable/contrib/ntp/scripts/
H A DMakefile.in183 $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
185 { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
186 END { for (dir in files) print dir, files[dir] }'
191 test -z "$$files" \
193 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
194 $(am__cd) "$$dir" && rm -f $$files; }; \
[all...]
/freebsd-11-stable/crypto/heimdal/include/
H A DMakefile.in140 $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
142 { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
143 END { for (dir in files) print dir, files[dir] }'
619 while read files; do \
620 echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
621 $(INSTALL_HEADER) $$files "
[all...]
/freebsd-11-stable/crypto/openssh/
H A Dsshconnect2.c1306 struct idlist agent, files, *preferred; local
1313 TAILQ_INIT(&files); /* keys from the config file */
1330 TAILQ_INSERT_TAIL(&files, id, next);
1358 TAILQ_FOREACH(id, &files, next) {
1364 TAILQ_REMOVE(&files, id, next);
1391 TAILQ_FOREACH_SAFE(id, &files, next, tmp) {
1395 TAILQ_FOREACH(id2, &files, next) {
1400 TAILQ_REMOVE(&files, id, next);
1408 TAILQ_REMOVE(&files, id, next);
1414 for (id = TAILQ_FIRST(&files); i
[all...]
/freebsd-11-stable/contrib/ntp/scripts/lib/
H A DMakefile.in173 $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
175 { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
176 END { for (dir in files) print dir, files[dir] }'
181 test -z "$$files" \
183 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
184 $(am__cd) "$$dir" && rm -f $$files; }; \
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_xar.c207 struct xar_file *files; member in struct:hdlink
211 struct xar_file **files; member in struct:heap_queue
464 xar->file_queue.files = NULL;
631 * Connect hardlinked files.
644 for (f2 = (*hdlink)->files; f2 != NULL;
650 /* Remove resolved files from hdlist_list. */
962 file_free(xar->file_queue.files[i]);
963 free(xar->file_queue.files);
1226 /* Expand our pending files list as necessary. */
1249 memcpy(new_pending_files, heap->files,
[all...]
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A DMakefile.in73 expr.o files.o identifiers.o init.o lex.o line-map.o macro.o \
78 expr.c files.c identifiers.c init.c lex.c line-map.c macro.c \
177 @echo "it deletes files that may require special tools to rebuild."
/freebsd-11-stable/contrib/diff/src/
H A Ddiff.h31 /* No changes: lines common to both files. */
89 /* Nonzero if output cannot be generated for identical files. */
96 /* Consider all files as text files (-a).
141 /* Say only whether files differ, not how (-q). */
191 /* Use heuristics for better speed with large files with a small
213 LINE0 and LINE1 are the first affected lines in the two files (origin 0).
231 /* Structures that describe the input files. */
305 /* Data on two input files being compared. */
313 /* Describe the two files currentl
312 XTERN struct file_data files[2]; variable in typeref:struct:file_data
[all...]
/freebsd-11-stable/crypto/heimdal/lib/kadm5/
H A Dipropd_slave.c503 char **files; local
537 ret = krb5_prepend_config_files_default(config_file, &files);
539 krb5_err(context, 1, ret, "getting configuration files");
541 ret = krb5_set_config_files(context, files);
542 krb5_free_config_files(files);
544 krb5_err(context, 1, ret, "reading configuration files");
/freebsd-11-stable/sys/conf/
H A Dkern.opts.mk60 # and sometimes what is in the opt_*.h files by default.
61 # Kernel config files are unaffected, though some targets can be
H A DmakeLINT.mk3 # The LINT files need to end up in the kernel source directory.
/freebsd-11-stable/lib/libprocstat/
H A Dlibprocstat.c376 if (procstat->files != NULL) {
377 free(procstat->files);
378 procstat->files = NULL;
604 * Process mmapped files if requested.
818 struct kinfo_file *kif, *files; local
834 files = kinfo_getfile(kp->ki_pid, &cnt);
837 files = kinfo_getfile_core(procstat->core, &cnt);
842 if (files == NULL && errno != EPERM) {
846 procstat->files = files;
2228 struct kinfo_file *files; local
[all...]
/freebsd-11-stable/share/mk/
H A Dbsd.progs.mk50 # Record our meta files for the parent to use.
125 # Only handle removing depend files from the main process.
/freebsd-11-stable/contrib/expat/xmlwf/
H A DMakefile.in29 # a copy of this software and associated documentation files (the
420 $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
422 if ($$2 == $$4) files[d] = files[d] " " $$1; \
424 END { for (d in files) print "f", d, files[d] }' | \
425 while read type dir files; do \
427 test -z "$$files" || { \
428 echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
429 $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "
[all...]
/freebsd-11-stable/contrib/subversion/
H A Dget-deps.sh118 $HTTP_FETCH https://sourceforge.net/projects/libpng/files/zlib/$ZLIB_VERSION/$ZLIB.tar.gz
/freebsd-11-stable/contrib/ncurses/misc/
H A Dncurses-config.in7 # copy of this software and associated documentation files (the "Software"), #
181 --includedir echos the directory containing ${THIS} header files
/freebsd-11-stable/contrib/bmake/mk/
H A Dauto.dep.mk26 # and ensure we can simply include all the .d files.
H A Dmeta.stage.mk86 # common logic for staging files
131 # this is simple, a list of the "staged" files depends on this,
323 # this will run install(1) and then followup with .dirdep files.
356 echo "Removing stale staged files..."; \
/freebsd-11-stable/contrib/dialog/package/
H A Ddialog.spec67 %files
/freebsd-11-stable/contrib/gcc/config/ia64/
H A Dcrti.asm27 # As a special exception, if you link this library with files
/freebsd-11-stable/crypto/openssl/util/pl/
H A DVC-32.pl357 my($target,$files,$dep_libs,$libs,$standalone)=@_;
361 $ret.="$target: $files $dep_libs";
367 if ($files =~ /O_FIPSCANISTER/ && !$fipscanisterbuild) {
371 $ret.="$files $libs\n<<\n";
384 $ret.="\t\$(APP_EX_OBJ) $files \$(OBJ_D)${o}fips_premain.obj $libs\n<<\n";
390 $ret.="\t\$(APP_EX_OBJ) $files $libs\n<<\n";
/freebsd-11-stable/crypto/openssl/crypto/ecdh/
H A DMakefile41 files:
42 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
/freebsd-11-stable/crypto/openssl/crypto/objects/
H A DMakefile53 files:
54 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
/freebsd-11-stable/libexec/rbootd/
H A Drmpproto.c72 ** client - list of files available to this host
118 client? client->files:
123 client? client->files: BootFiles))
216 ** filelist - list of files available to the requester.
251 * indicate success or "no more files".
276 ** filelist - list of files available to the requester.
327 * ask for files like "/hp-ux". As a security measure, we do not
328 * allow boot files to lay outside the boot directory (unless they
357 * "too many open files" - RMP_E_BUSY

Completed in 183 milliseconds

<<11121314151617181920>>