Searched refs:file (Results 1 - 25 of 5404) sorted by relevance

1234567891011>>

/macosx-10.10.1/postfix-255/postfix/mantools/
H A Dmandouble3 for file
5 echo ==== $file ====
6 deroff $file | double
H A Dmanspell3 for file
5 echo ==== $file ====
6 deroff $file | spell | fgrep -vf proto/stop
/macosx-10.10.1/zsh-61/zsh/Functions/Example/
H A Dcat3 local file
9 for file
11 if [[ "$file" == - ]] then
14 while read -u0ek 4096; do ; done < "$file"
/macosx-10.10.1/man-16/man/src/
H A Ddifferent.h1 int different_cat_file (const char *file);
2 int different_man_file (const char *file);
/macosx-10.10.1/xnu-2782.1.97/libsa/conf/
H A DMakefile.x86_647 $(foreach file,$(OBJS),$(eval $(file)_CFLAGS_ADD += $(CFLAGS_NOLTO_FLAG)))
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/functions/
H A Drecurse36 local file
46 for file in $2; do
47 if [ -f "$file" ] || [ -d "$file" ]; then
51 for file in .* * ; do
52 if [ "$file" = "." ] || [ "$file" = ".." ] ; then
55 if [ -d "$file" ] && [ ! -L "$file" ]; then
56 recurse "$file" "
[all...]
H A Demptydir15 typeset file dir=${1:-.}
20 for file in $dir/.* $dir/*
22 case ${file#$dir/} in
24 \*) [[ -e $file ]];let $?;return;;
H A Dlowercase11 for file; do
12 [ -f "$file" ] || continue
13 filename=${file##*/}
14 case "$file" in
15 */*) dirname=${file%/*} ;;
21 mv "$file" "$newname"
22 echo "lowercase: $file -> $newname"
24 echo "lowercase: $file not changed."
/macosx-10.10.1/zsh-61/zsh/Functions/Misc/
H A Dcheckmail13 local file message
15 for file in "${@:-${mailpath[@]:-${MAIL:-/var/spool/mail/$LOGNAME}}}"
17 message="${${(M)file%%\?*}#\?}"
18 file="${file%%\?*}"
19 if [[ -d "$file" ]] then
20 file=( "$file"/**/*(.ND) )
21 if (($#file)) then
22 checkmail ${^file}\
[all...]
/macosx-10.10.1/apr-32/apr/apr/file_io/os2/
H A Dbuffer.c2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
20 APR_DECLARE(apr_status_t) apr_file_buffer_set(apr_file_t *file,
26 apr_thread_mutex_lock(file->mutex);
28 if(file->buffered) {
30 rv = apr_file_flush(file);
32 apr_thread_mutex_unlock(file->mutex);
37 file->buffer = buffer;
38 file
[all...]
/macosx-10.10.1/apr-32/apr/apr/file_io/unix/
H A Dbuffer.c2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
21 APR_DECLARE(apr_status_t) apr_file_buffer_set(apr_file_t *file,
27 file_lock(file);
29 if(file->buffered) {
31 rv = apr_file_flush_locked(file);
33 file_unlock(file);
38 file->buffer = buffer;
39 file
[all...]
/macosx-10.10.1/apr-32/apr/apr/file_io/win32/
H A Dbuffer.c2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
20 APR_DECLARE(apr_status_t) apr_file_buffer_set(apr_file_t *file,
26 apr_thread_mutex_lock(file->mutex);
28 if(file->buffered) {
30 rv = apr_file_flush(file);
32 apr_thread_mutex_unlock(file->mutex);
37 file->buffer = buffer;
38 file
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/scripts/
H A Dfixfiles.bash20 # and rename each file to something that is reasonable.
31 # 5. if a file of the new name already exists, then
63 for file in * ; do
65 if [ "$file" != "." ] && [ "$file" != ".." ] ; then
66 if [ -L "$file" ] ; then
67 echo "skipping symlink" $file in `pwd`
68 elif [ -d "$file" ] ; then
69 processdir "$file"
70 elif [ -f "$file" ] ; the
[all...]
H A Dcenter16 for file
21 done < $file
/macosx-10.10.1/bootstrap_cmds-91/migcom.tproj/
H A Dheader.c6 * This file contains Original Code and/or Modifications of Original Code
8 * Version 2.0 (the 'License'). You may not use this file except in
11 * file.
57 WriteIncludes(FILE *file, boolean_t isuser, boolean_t isdef) argument
60 fprintf(file, "#include <mach/port.h>\n");
61 fprintf(file, "#include <mach/machine/kern_return.h>\n");
63 fprintf(file, "#include <mach/mig_errors.h>\n");
66 fprintf(file, "#include <string.h>\n");
67 fprintf(file, "#include <mach/ndr.h>\n");
68 fprintf(file, "#includ
118 WriteETAPDefines(FILE *file) argument
140 WriteProlog(FILE *file, char *protect, boolean_t more, boolean_t isuser) argument
172 WriteEpilog(FILE *file, char *protect, boolean_t isuser) argument
185 WriteUserRoutine(FILE *file, routine_t *rt) argument
225 WriteUserRequestUnion(FILE *file, statement_t *stats) argument
246 WriteUserReplyUnion(FILE *file, statement_t *stats) argument
267 WriteUserHeader(FILE *file, statement_t *stats) argument
328 WriteDefinesRoutine(FILE *file, routine_t *rt) argument
340 WriteServerRoutine(FILE *file, routine_t *rt) argument
380 WriteDispatcher(FILE *file) argument
430 WriteServerHeader(FILE *file, statement_t *stats) argument
473 WriteInternalRedefine(FILE *file, register routine_t *rt) argument
479 WriteInternalHeader(FILE *file, statement_t *stats) argument
503 WriteDefinesHeader(FILE *file, statement_t *stats) argument
[all...]
/macosx-10.10.1/sudo-73/src/zlib/
H A Dgzclose.c8 /* gzclose() is in a separate file so that it is linked in only if it is used.
11 int ZEXPORT gzclose(file)
12 gzFile file;
17 if (file == NULL)
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
23 return gzclose_r(file);
/macosx-10.10.1/zlib-55/zlib/
H A Dgzclose.c8 /* gzclose() is in a separate file so that it is linked in only if it is used.
11 int ZEXPORT gzclose(file)
12 gzFile file;
17 if (file == NULL)
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
23 return gzclose_r(file);
/macosx-10.10.1/WebKit-7600.1.25/mac/Misc/
H A DOldWebAssertions.c29 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion);
30 void WebReportError(const char *file, int line, const char *function, const char *format, ...);
32 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion) argument
36 void WebReportError(const char *file, int line, const char *function, const char *format, ...) argument
/macosx-10.10.1/ruby-106/ruby/
H A Ddmydln.c4 dln_load(const char *file) argument
6 rb_loaderror("this executable file can't load extension libraries");
/macosx-10.10.1/emacs-93/emacs/lib-src/
H A Drcs-checkin3 # This script accepts any number of file arguments and checks them into RCS.
8 # This file is part of GNU Emacs.
21 # along with GNU Emacs; see the file COPYING. If not, write to the
27 # For each file foo, the script looks for Emacs version files related to it.
29 # the file itself becomes the latest revision in the master.
31 # The first line of each file is used as its description text. The file itself
35 # If an argument file is already version-controlled under RCS, any version
48 echo "rcs-checkin: usage: rcs-checkin file ..."
49 echo "rcs-checkin: function: checks file
[all...]
/macosx-10.10.1/bind9-45.101/bind9/contrib/zkt/
H A Dzfparse.h3 ** @(#) zfparse.h -- headerfile for a zone file parser
40 extern int parsezonefile (const char *file, long *pminttl, long *pmaxttl, const char *keydbfile);
41 extern int addkeydb (const char *file, const char *keydbfile);
/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Ddgauth.c36 * To anyone who acknowledges that this file is provided "AS IS"
38 * permission to use, copy, modify, and distribute this file for any
94 #error This file is obsolete
/macosx-10.10.1/cups-408/cups/cgi-bin/
H A Dtestcgi.c11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
31 * Test file upload/multi-part submissions...
43 const cgi_file_t *file; /* Upload file */ local
45 if ((file = cgiGetFile()) != NULL)
48 printf(" tempfile=\"%s\"\n", file->tempfile);
49 printf(" name=\"%s\"\n", file
[all...]
/macosx-10.10.1/ruby-106/ruby/benchmark/
H A Dbm_io_file_create.rb6 file = './tmpfile_of_bm_io_file_create'
9 f = open(file, 'w')
12 File.unlink(file)
H A Drunc.rb10 def runfile file
11 puts file
12 file = File.join(File.dirname($0), 'contrib', file)
15 system("#{$rubybin} #{file}")
18 system("#{$rubybin} -rite -I.. #{file}")
23 ARGV.each{|file|
24 runfile file

Completed in 258 milliseconds

1234567891011>>